我正在创建一个文本编辑器,我想将QComboBox
放在QMenu
中。我没有在QMenu
内找到处理这种事情的任何方法。最接近的是QMenu::addAction()
。我想知道绕过这个障碍。
谢谢!
答案 0 :(得分:17)
您必须继承QWidgetAction
,然后只需将addAction
调到您的菜单。
带有标签
的Spin Box Action的示例代码class SpinBoxAction : public QWidgetAction {
public:
SpinBoxAction (const QString& title) :
QWidgetAction (NULL) {
QWidget* pWidget = new QWidget (NULL);
QHBoxLayout* pLayout = new QHBoxLayout();
QLabel* pLabel = new QLabel (title); //bug fixed here, pointer was missing
pLayout->addWidget (pLabel);
pSpinBox = new QSpinBox(NULL);
pLayout->addWidget (pSpinBox);
pWidget->setLayout (pLayout);
setDefaultWidget(pWidget);
}
QSpinBox * spinBox () {
return pSpinBox;
}
private:
QSpinBox * pSpinBox;
};
现在只需创建它并将其添加到菜单
即可SpinBoxAction * spinBoxAction = new SpinBoxAction(tr("Action Title"));
// make a connection
connect(spinBoxAction ->spinBox(), SIGNAL(valueChanged(int)),
this, SLOT(spinboxValueChanged(int)));
// add it to your menu
menu->addAction(spinBoxAction);
答案 1 :(得分:2)
QWidgetAction
是QAction
,其中包含QWidget
。您可以使用它来封装QComboBox
并通过QMenu::addAction
将其添加到菜单中。
答案 2 :(得分:1)
您始终可以使用QWidget
或QFrame
作为菜单小工具,然后在其上放置QHBoxLayout
,并将QWidgets
插入其中。