我在Qt中连接上下文菜单操作时遇到问题。我知道周围有很多类似的问题,但我还是找不到解决方案。
我有一系列使用QCustomplot构建的图。
我想要做的是在右键单击每个绘图的背景时创建一个上下文菜单,列出图表中的所有信号。通过单击此菜单的条目,相应的信号应隐藏(如果当前可见)或可见(如果隐藏)。
现在,我已经定义了一个名为PlotHandler的类,我将其粘贴到下面的相关部分:
plotHandler.cpp
#include "plothandler.h"
PlotHandler::PlotHandler(QStringList groupNames, int startIdx, QWidget *parent) :
QWidget(parent), scrolling(false), refreshing(true)
{
pPlot = new QCustomPlot(this);
pPlot->setContextMenuPolicy(Qt::CustomContextMenu);
connect(pPlot, SIGNAL(customContextMenuRequested(QPoint)), this, SLOT(contextMenuRequest(QPoint)));
}
void PlotHandler::contextMenuRequest(QPoint pos)
{
int i;
QMenu *menu = new QMenu(this);
for(i=0; i<pGroup->getDataLength(); i++)
{
QAction *menuEntry;
menuEntry = new QAction(pPlot->graph(i)->name(), this);
menuEntry->setProperty("graphIdx", i);
menu->addAction(menuEntry);
connect(menuEntry, SIGNAL(triggered()), this, SLOT(addRemoveGraph()));
}
menu->popup(pPlot->mapToGlobal(pos));
}
void PlotHandler::addRemoveGraph()
{
QAction *selectedSignal = qobject_cast<QAction *>(sender());
int tmp = selectedSignal->property("graphIdx").toInt();
if (pPlot->graph(tmp)->visible())
{
pPlot->graph(tmp)->setVisible(false);
}
else
{
pPlot->graph(tmp)->setVisible(true);
}
}
plotHandler.h
class PlotHandler : public QWidget
{
Q_OBJECT
public:
explicit PlotHandler(QStringList groupNames, int startIdx, QWidget *parent = 0);
QString groupRequested();
private:
QCustomPlot *pPlot;
public slots:
void contextMenuRequest(QPoint pos);
void addRemoveGraph();
}
使用正确的条目正确显示菜单,当我点击操作addRemoveGraph
时,会调用该菜单。在调试中,它会返回以下消息:
下级因为引发了异常而停止了。停了下来 线程0 by:异常在0x5d6c2f9a,代码:0xc0000005:读访问 违规:0x0,标志= 0x0。
尝试执行
int tmp = selectedSignal->property("graphIdx").toInt();
有人能指出我正确的方向吗?
提前致谢
答案 0 :(得分:2)
您使用QObject::setProperty
但QAction
没有名为“graphIdx”的属性。当您尝试从QAction
读取“graphIdx”属性时,您将始终收到无效QVariant
。
int tmp = selectedSignal->property("graphIdx").toInt();
// tmp always is 0;
如果您只需要存储一个属性,则可以使用QAction::setData
。否则,请使用QObject::setProperty
在任何QObject
上设置自定义属性。 QAction
是QObject
。
答案 1 :(得分:0)
下面是解决问题的解决方案。
<强> plotHandler.cpp 强>
#include "plothandler.h"
PlotHandler::PlotHandler(QStringList groupNames, int startIdx, QWidget *parent) :
QWidget(parent), scrolling(false), refreshing(true)
{
pPlot = new QCustomPlot(this);
pPlot->setContextMenuPolicy(Qt::CustomContextMenu);
connect(pPlot, SIGNAL(customContextMenuRequested(QPoint)), this, SLOT(contextMenuRequest(QPoint)));
}
void PlotHandler::contextMenuRequest(QPoint pos)
{
int i;
QMenu *menu = new QMenu(this);
for(i=0; i<pGroup->getDataLength(); i++)
{
QAction *menuEntry;
menuEntry = new QAction(pPlot->graph(i)->name(), this);
menuEntry->setData(i);
menu->addAction(menuEntry);
}
connect(menu, SIGNAL(triggered(QAction*)), this, SLOT(addRemoveGraph(QAction*)));
menu->popup(pPlot->mapToGlobal(pos));
}
void PlotHandler::addRemoveGraph(QAction *selectedSignal)
{
int tmp = selectedSignal->property("graphIdx").toInt();
if (pPlot->graph(tmp)->visible())
{
pPlot->graph(tmp)->setVisible(false);
}
else
{
pPlot->graph(tmp)->setVisible(true);
}
pPlot->replot();
}
<强> plotHandler.h 强>
class PlotHandler : public QWidget
{
Q_OBJECT
public:
explicit PlotHandler(QStringList groupNames, int startIdx, QWidget *parent = 0);
QString groupRequested();
private:
QCustomPlot *pPlot;
public slots:
void contextMenuRequest(QPoint pos);
void addRemoveGraph();
}
感谢大家的帮助。