博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
QListWidget中右键单击Item出现菜单
阅读量:6411 次
发布时间:2019-06-23

本文共 1208 字,大约阅读时间需要 4 分钟。

  hot3.png

我的这个类名是AddressbookWidget继承自QWidget

重写void QWidget::contextMenuEvent ( QContextMenuEvent * event )   [virtual protected]

void AddressbookWidget::contextMenuEvent(QContextMenuEvent *){    QMenu *popMenu = new QMenu(personInfo_List);                 //菜单添加在personInfo_List这个对象里面    QAction *towhite = new QAction(tr("到白名单") , personInfo_List);						//右键显示的菜单    QAction *toblack = new QAction(tr("到黑名单") , personInfo_List);    connect(towhite , SIGNAL(triggered(bool)) , this , SLOT(menu_white()));    //右键菜单事件    connect(toblack , SIGNAL(triggered(bool)) , this , SLOT(menu_black()));    //右键菜单事件    if(personInfo_List->itemAt(mapFromGlobal(QCursor::pos())) != NULL)       //mapFromGlobal全局位置的映射    {        popMenu->addAction(towhite);																				 //将菜单标签加载上去显示        popMenu->addAction(toblack);    }    popMenu->exec(QCursor::pos()); //菜单出现的位置为当前鼠标的位置    delete popMenu;    delete towhite;    delete toblack;}

信号和槽的连接

connect(towhite , SIGNAL(triggered(bool)) , this , SLOT(menu_white()));    connect(toblack , SIGNAL(triggered(bool)) , this , SLOT(menu_black()));

menu_white()和menu_black()是AddressbookWidget中的成员函数,这里面实现了右键单击菜单后点击菜单所要实现的功能(what to do....)。

转载于:https://my.oschina.net/mjRao/blog/65027

你可能感兴趣的文章
基础数据类型之字典
查看>>
第七次作业
查看>>
Oracle中NVARCHAR2与VARCHAR2的区别
查看>>
php debug
查看>>
Ubuntu构建LVS+Keepalived高可用负载均衡集群【生产环境部署】
查看>>
lvm实现快速备份文件及数据库,lvm快照原理
查看>>
设计模式之Factory Method(工厂方法)
查看>>
10K入职linux运维岗位小伙伴感谢信及面试经历分享
查看>>
zookeeper入门之Curator的使用之几种监听器的使用
查看>>
[转]Reporting Service部署之访问权限
查看>>
innerxml and outerxml
查看>>
validform校验框架不显示错误提示
查看>>
flink 获取上传的Jar源码
查看>>
Spring Data JPA Batch Insertion
查看>>
UEditor自动调节宽度
查看>>
JAVA做验证码图片(转自CSDN)
查看>>
Delphi TServerSocket,TClientSocket实现传送文件代码
查看>>
JS无聊之作
查看>>
Mac上搭建ELK
查看>>
443 Chapter7.Planning for High Availability in the Enterprise
查看>>