I would like to connect QToolButtons
in the QButtonGroup
with QRadioButtons
so that they perform same operations.
Here is the code:
QToolButton *A=new QToolButton();
A->setCheckable(true);
QButtonGroup *group = new QButtonGroup();
group->addButton(A);
group->addButton(B);
CLASSB *classB=new CLASSB();
connect(A, SIGNAL(clicked(bool)),classB->radioA , SLOT(toggle()));
connect(B, SIGNAL(clicked(bool)), classB->radioB, SLOT(toggle()));
A <->A1 // clicking on tool button should automatically enable radiobutton and should perform the action in radio button
B<->B1
I tried connect(A,SIGNAL(clicked(bool)),A1,SLOT(setChecked(bool)));
but it didn't work.
If your QToolButton is not checkable it will only pass
false
as signal argument.From QAbstractButton documentation:
Solution connect to toggle slot: