VS2010+QT5编程之为QTableView添加右键菜单

原文地址::https://blog.csdn.net/godmaycry/article/details/46415581

相关文章

1、QT 鼠标右键菜单----https://blog.csdn.net/TJU355/article/details/7652327

QTableView是一个比较实用的类,下面教给大家如何在QTableView中添加右键菜单。

[cpp]  view plain  copy
  1. #include <QMenu>  
  2. #include <QAction>  
  3.   
  4. QTableView *tableview;  
  5. QMenu *rightMenu;  //右键菜单  
  6. QAction *cutAction;  //剪切  
  7. QAction *copyAction;  //复制  
  8. QAction *pasteAction;  //粘贴  
  9. QAction *deleteAction;  //删除  
  10.   
  11. private slots:  
  12. void clicked_rightMenu(const QPoint &pos);  //右键信号槽函数  

[cpp]  view plain  copy
  1. tableview->setContextMenuPolicy(Qt::CustomContextMenu);  //少这句,右键没有任何反应的。  
  2. createRightMenu();  //创建一个右键菜单  
  3. connect(tableview,SIGNAL(customContextMenuRequested(QPoint)),this,SLOT(clicked_rightMenu(QPoint)));  

其中createRightMenu函数:

[cpp]  view plain  copy
  1. rightMenu = new QMenu;  
  2. cutAction = new QAction("剪切",this);  
  3. copyAction = new QAction("复制",this);  
  4. pasteAction = new QAction("粘贴",this);  
  5. deleteAction = new QAction("删除",this);  
  6.   
  7. rightMenu->addAction(cutAction);  
  8. rightMenu->addAction(copyAction);  
  9. rightMenu->addAction(pasteAction);  
  10. rightMenu->addAction(deleteAction);  

clicked_rightMenu槽函数:

[cpp]  view plain  copy
  1. rightMenu->exec(QCursor::pos());  

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值