我正在尝试为我的 Qt 应用程序中的 QTextBrowser 添加一个自定义 contextMenu,但它似乎不起作用。
我正在使用为 Element QLineEdit 定义的以下链接中解释的步骤,但是它不起作用。
编辑:
我在 MainWindow 的构造函数中编写了以下代码:
QDockWidget *dock = new QDockWidget(tr("Text View"), this);
txtBrwsr = new QTextBrowser(this);
dock->setWidget(txtBrwsr);
txtBrwsr->setContextMenuPolicy(Qt::CustomContextMenu);
connect(txtBrwsr,SIGNAL(customContextMenuRequested(const QPoint&)), this,SLOT(showContextMenu(const QPoint&)));
setCentralWidget(txtBrwsr);
下面是showContextMenu函数的实现:
void AMTMainWindow::showContextMenu(const QPoint &pt) {
QMenu * menu = txtBrwsr->createStandardContextMenu();
QMenu * tags;
tags = menu->addMenu(tr("&Tag"));
for(int i=0; i<_atagger->tagTypeVector->count(); i++) {
QAction * taginstance;
char * tagValue = (_atagger->tagTypeVector->at(i)).tag.toLocal8Bit().data();
taginstance = new QAction(tr(tagValue), this);
connect(taginstance, SIGNAL(triggered()), this, SLOT(tag(tagValue)));
tags->addAction(taginstance);
}
menu->addAction(untagAct);
menu->addAction(addtagAct);
menu->exec(txtBrwsr->mapToGlobal(pt));
delete menu;
}
经过一些调试,我发现当我按下右键应该打开上下文菜单时,甚至没有触发 showContextMenu 函数。所以我认为主要问题在于连接功能。
任何帮助表示赞赏。