Qt添加右键菜单

在*.h添加头文件

#include <QContextMenuEvent>

定义私有函数

void contextMenuEvent(QContextMenuEvent *e);

定义Action

	QAction *showpoint;
	QAction *showline;
	QAction *showtriangle;


定义槽函数

	void DrawPoint();
	void DrawLine();
        void DrawTriangle();

在*.cpp文件中创建Action

	showpoint = new QAction(codec->toUnicode("点"), this);
	showpoint->setIcon(QIcon(":/GLWIDGET/Resources/point.png"));
	showpoint->setStatusTip(codec->toUnicode("以点显示"));
	connect(showpoint, SIGNAL(triggered()), this, SLOT(DrawPoint()));

	showline = new QAction(codec->toUnicode("线"), this);
	showline->setIcon(QIcon(":/GLWIDGET/Resources/line.png"));
	showline->setStatusTip(codec->toUnicode("以线显示"));
	connect(showline, SIGNAL(triggered()), this, SLOT(DrawLine()));

	showtriangle = new QAction(codec->toUnicode("面"), this);
	showtriangle->setIcon(QIcon(":/GLWIDGET/Resources/triangle.png"));
	showtriangle->setStatusTip(codec->toUnicode("以面显示"));
	connect(showtriangle, SIGNAL(triggered()), this, SLOT(DrawTriangle()));


创建右键菜单响应函数

void GLWIDGET::contextMenuEvent(QContextMenuEvent *e)
{
	QMenu *menu = new QMenu();

	menu->setFixedWidth(100);

	menu->addAction(showpoint);
	menu->addAction(showline);
	menu->addAction(showtriangle);
        menu->exec(e->globalPos());
	delete menu;
}




评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值