如何在qt中添加条目工具栏上下文菜单?

时间:2016-06-26 06:48:16

标签: c++ qt contextmenu toolbar

默认情况下,工具栏的上下文菜单中填充了工具栏的名称。我想通过一个额外的条目来扩展这个上下文菜单。

我找到了一个扩展QTextEdit元素的上下文菜单的例子。

http://www.qtcentre.org/threads/35166-extend-the-standard-context-menu-of-qtextedit

但是,它使用QTextEdit类的createStandardContextMenu。但是QToolBar似乎没有那个属性:

http://doc.qt.io/qt-4.8/qtoolbar.html

修改

显然,默认的上下文菜单是来自QMainWindow的菜单。

http://doc.qt.io/qt-4.8/qmainwindow.html#createPopupMenu

不幸的是,我还不知道如何添加条目。

修改

我正在使用此来源:

http://doc.qt.io/qt-5/qtwidgets-mainwindows-application-example.html

2 个答案:

答案 0 :(得分:5)

如果您想为主窗口中的所有QToolBar提供相同的上下文菜单,则无需派生QToolBar,您只需在主窗口中覆盖createPopupMenu()即可将自定义操作添加到返回的菜单中,如下所示:

QMenu* MainWindow::createPopupMenu(){
    //call the overridden method to get the default menu  containing checkable entries
    //for the toolbars and dock widgets present in the main window
    QMenu* menu= QMainWindow::createPopupMenu();
    //you can add whatever you want to the menu before returning it
    menu->addSeparator();
    menu->addAction(tr("Custom Action"), this, SLOT(CustomActionSlot()));
    return menu;
}

答案 1 :(得分:3)

您需要从QToolBar派生自己的类并覆盖其虚函数contextMenuEvent

<强> qmytoolbar.h

#ifndef QMYTOOLBAR_H
#define QMYTOOLBAR_H

#include <QToolBar>

class QMyToolBar : public QToolBar
{
    Q_OBJECT
public:
    explicit QMyToolBar(QWidget *parent = 0)
        : QToolBar(parent){}

protected:
    void contextMenuEvent(QContextMenuEvent *event);
};

#endif // QMYTOOLBAR_H

<强> qmytoolbar.cpp

#include "qmytoolbar.h"

#include <QMenu>
#include <QContextMenuEvent>

void QMyToolBar::contextMenuEvent(QContextMenuEvent *event)
{
    // QToolBar::contextMenuEvent(event);

    QMenu *menu = new QMenu(this);
    menu->addAction(tr("My Menu Item"));
    menu->exec(event->globalPos());
    delete menu;
}

如果您想保留标准菜单,请创建我的主窗口并添加您的项目,并保留指向QMainWindow' in your QMyToolBar and modify 'QMyToolBar::contextMenuEvent的指针:

void QMyToolBar::contextMenuEvent(QContextMenuEvent *event)
{
    // QToolBar::contextMenuEvent(event);

    QMenu *menu =
            //new QMenu(this);
            m_pMainWindow->createPopupMenu();


    menu->addAction(tr("My Menu Item"));
    menu->exec(event->globalPos());
    delete menu;
}