有没有办法将QWidget添加到QtCreator中的QMenu

时间:2011-12-02 15:55:05

标签: c++ qt qwidget qmenu

我正在创建一个文本编辑器,我想将QComboBox放在QMenu中。我没有在QMenu内找到处理这种事情的任何方法。最接近的是QMenu::addAction()。我想知道绕过这个障碍。

谢谢!

3 个答案:

答案 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)

QWidgetActionQAction,其中包含QWidget。您可以使用它来封装QComboBox并通过QMenu::addAction将其添加到菜单中。

答案 2 :(得分:1)

您始终可以使用QWidgetQFrame作为菜单小工具,然后在其上放置QHBoxLayout,并将QWidgets插入其中。