使用QMenu并传递参数

时间:2013-02-05 13:18:41

标签: c++ qt qmenu qt-signals

我有一个QMenu,它有几个动态构建的菜单项。

为此,我迭代了一系列菜单项,包含名称和Action(如果菜单项被命中则需要采取),并继续将它们添加到上下文菜单中。所有菜单项都需要连接到公共插槽

但不知何故,触发动作不会发生。即到达连接语句,但控件未传递到指定的SLOT,不执行任何操作。

for (int i=0; i<Action_List.size();i++)
{
    tempAct1 = Action_List.at(i); //Action List has the list of Actions
    Context_Menu->addAction(tempAct1);
}
if (Context_Menu!=NULL) {
    Context_Menu->exec(QCursor::pos());
    int r = connect(Context_Menu, SIGNAL(triggered(QAction *)), 
                    this, SLOT(SPlusCommand(QAction *)));
}

int P14MainWindow::SPlusCommand ( QAction* Action)
{
    QVariant tempstr = Action->data();
    QString Qs = tempstr.toString();
    return QPwLocalClient::ExecuteCommand(Qs);
}

有人可以告诉我,我出错了吗?

2 个答案:

答案 0 :(得分:4)

您似乎应该在 connect之前移动exec()

connect(Context_Menu, SIGNAL(triggered(QAction *)), 
        this, SLOT(SPlusCommand(QAction *)));
Context_Menu->exec(QCursor::pos());

因为exec同步执行菜单 ,这意味着只有当您与菜单的所有交互完成后才会从此方法返回 - 在连接之后连接的时间太晚了。

答案 1 :(得分:-2)

您必须将各个操作与插槽连接起来。

connect(action, SIGNAL(triggered()), this, SLOT(yourSlot())