Qt QCheckBox
QCheckBox* indexCheckBox = new QCheckBox(); connect(indexCheckbox,SIGNAL(stateChanged(int)),this,SLOT(slotStateChangedAction(int)));
void slotStateChangedAction(int indexState) { if(indexState==Qt::Checked) { }else{ } }
########################
QQ 3087438119