当前位置: 首页>>代码示例>>Python>>正文


Python QMenu.__init__方法代码示例

本文整理汇总了Python中PySide.QtGui.QMenu.__init__方法的典型用法代码示例。如果您正苦于以下问题:Python QMenu.__init__方法的具体用法?Python QMenu.__init__怎么用?Python QMenu.__init__使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在PySide.QtGui.QMenu的用法示例。


在下文中一共展示了QMenu.__init__方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: __init__

# 需要导入模块: from PySide.QtGui import QMenu [as 别名]
# 或者: from PySide.QtGui.QMenu import __init__ [as 别名]
 def __init__(self, parent=None):
     QMenu.__init__(self, "&Signals")
     self.parent = parent
     
     self.addSignalAction = self.addAction(self.trUtf8("&Add Signal"))
     
     self.addSignalAction.triggered.connect(self.addSignal)
     self.addSignalAction.setEnabled(False)
     
     self.applyOperationAction = self.addAction(self.trUtf8("&Apply Operation"))
     self.applyOperationAction.triggered.connect(self.applyOperation)    
     self.applyOperationAction.setEnabled(False)
开发者ID:hectorpinheiro,项目名称:DSP-Tool,代码行数:14,代码来源:MainWindow.py

示例2: __init__

# 需要导入模块: from PySide.QtGui import QMenu [as 别名]
# 或者: from PySide.QtGui.QMenu import __init__ [as 别名]
  def __init__(self):
      QMenu.__init__(self, "Set Status", None)

      global gStatusTags
      # ant: Could use hiero.core.defaultFrameRates() here but messes up with string matching because we seem to mix decimal points
      self.statuses = gStatusTags
      self._statusActions = self.createStatusMenuActions()      

      # Add the Actions to the Menu.
      for act in self.menuActions:
        self.addAction(act)
      
      hiero.core.events.registerInterest("kShowContextMenu/kTimeline", self.eventHandler)
      hiero.core.events.registerInterest("kShowContextMenu/kSpreadsheet", self.eventHandler)      
开发者ID:antiero,项目名称:dotHiero,代码行数:16,代码来源:FnShotStatusUI.py

示例3: __init__

# 需要导入模块: from PySide.QtGui import QMenu [as 别名]
# 或者: from PySide.QtGui.QMenu import __init__ [as 别名]
 def __init__( self, parent ):
     QMenu.__init__( self, parent )
     
     # add actions and a separator
     hello = self.addAction("Print 'Hello!'")
     self.addSeparator()	
     world = self.addAction("Print 'World!'")
     
     # connect to the individual action's signal
     hello.triggered.connect( self.hello )
     world.triggered.connect( self.world )
     
     # connect to the menu level signal
     self.triggered.connect( self.menuTrigger )
开发者ID:tonybarbieri,项目名称:PyQtForSoftimage,代码行数:16,代码来源:pyqt_example.py

示例4: __init__

# 需要导入模块: from PySide.QtGui import QMenu [as 别名]
# 或者: from PySide.QtGui.QMenu import __init__ [as 别名]
    def __init__ ( self, manager, parent, controller ):
        """ Creates a new tree.
        """
        # Base class constructor:
        QMenu.__init__( self, parent )

        # The parent of the menu:
        self._parent = parent

        # The manager that the menu is a view of:
        self._manager = manager

        # The controller:
        self._controller = controller

        # Create the menu structure:
        self.refresh()

        # Listen to the manager being updated:
        self._manager.on_facet_set( self.refresh, 'changed' )
        self._manager.on_facet_set( self._on_enabled_modified, 'enabled' )
开发者ID:davidmorrill,项目名称:facets,代码行数:23,代码来源:menu_manager.py


注:本文中的PySide.QtGui.QMenu.__init__方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。