たくさんのQActionsとQMenusでmouseReleaseEventをオーバーライドしたい...
connect(action1, SIGNAL(triggered()), this, SLOT(onStepIncreased()));
connect(action5, SIGNAL(triggered()), this, SLOT(onStepIncreased()));
connect(action10, SIGNAL(triggered()), this, SLOT(onStepIncreased()));
connect(action25, SIGNAL(triggered()), this, SLOT(onStepIncreased()));
connect(action50, SIGNAL(triggered()), this, SLOT(onStepIncreased()));
だから私はスロットに引数を渡したいと思いonStepIncreased
ます(あなたが想像できるように、それらは1,5,10,25,50です)。私がどうやってそれをすることができるか知っていますか?