Attachment 'custommenu_actions.py'

Download

   1 #!/usr/bin/env python
   2 
   3 import sys
   4 from PyQt4.QtCore import Qt
   5 from PyQt4.QtGui import *
   6 
   7 class TableWidget(QTableWidget):
   8 
   9     def __init__(self, parent = None):
  10     
  11         QTableWidget.__init__(self, parent)
  12         self.setContextMenuPolicy(Qt.ActionsContextMenu)
  13         
  14         quitAction = QAction("Quit", self)
  15         quitAction.triggered.connect(qApp.quit)
  16         self.addAction(quitAction)
  17 
  18 
  19 app = QApplication([])
  20 tableWidget = TableWidget()
  21 tableWidget.show()
  22 sys.exit(app.exec_())

Attached Files

To refer to attachments on a page, use attachment:filename, as shown below in the list of files. Do NOT use the URL of the [get] link, since this is subject to change and can break easily.
  • [get | view] (2014-06-07 00:03:50, 0.5 KB) [[attachment:custommenu_actions.py]]
  • [get | view] (2014-06-07 00:05:49, 0.3 KB) [[attachment:custommenu_actions_standard.py]]
  • [get | view] (2014-06-07 00:06:34, 0.5 KB) [[attachment:custommenu_signal.py]]
  • [get | view] (2014-06-07 00:03:23, 0.5 KB) [[attachment:custommenu_subclass.py]]
 All files | Selected Files: delete move to page copy to page

You are not allowed to attach a file to this page.

Unable to edit the page? See the FrontPage for instructions.