コード例 #1
0
ファイル: menuimpl.py プロジェクト: Tidosho/zoundryraven
 def __init__(self, callback, visible, enabled, bold):
     self.callback = callback
     self.visible = visible
     self.enabled = enabled
     self.bold = bold
     
     ZMenuAction.__init__(self)
コード例 #2
0
ファイル: menuimpl.py プロジェクト: mpm2050/Raven
        def __init__(self, callback, visible, enabled, bold):
            self.callback = callback
            self.visible = visible
            self.enabled = enabled
            self.bold = bold

            ZMenuAction.__init__(self)
コード例 #3
0
 def setParameters(self, izParameters):
     ZMenuAction.setParameters(self, izParameters)
コード例 #4
0
 def getParameters(self):
     # used by menu item
     return ZMenuAction.getParameters(self)
コード例 #5
0
 def isChecked(self, context):
     # used by menu item
     return ZMenuAction.isChecked(self, context)
コード例 #6
0
 def isBold(self, context):
     # used by menu item
     return ZMenuAction.isBold(self, context)
コード例 #7
0
ファイル: textbox.py プロジェクト: mpm2050/Raven
 def __init__(self, choiceId):
     self.choiceId = choiceId
     ZMenuAction.__init__(self)
コード例 #8
0
ファイル: trayactions.py プロジェクト: Tidosho/zoundryraven
 def __init__(self):
     ZMenuAction.__init__(self)
     
     self.delegateAction = getApplicationModel().getActionRegistry().findAction(IZBlogAppActionIDs.EXIT_ACTION)
コード例 #9
0
    def __init__(self):
        ZMenuAction.__init__(self)

        self.delegateAction = getApplicationModel().getActionRegistry(
        ).findAction(IZBlogAppActionIDs.EXIT_ACTION)
コード例 #10
0
 def setParameters(self, izParameters):
     ZMenuAction.setParameters(self, izParameters)
コード例 #11
0
 def getParameters(self):
     # used by menu item
     return ZMenuAction.getParameters(self)
コード例 #12
0
 def isChecked(self, context):
     # used by menu item
     return ZMenuAction.isChecked(self, context)
コード例 #13
0
 def isBold(self, context):
     # used by menu item
     return ZMenuAction.isBold(self, context)
コード例 #14
0
 def isVisible(self, context):
     # used by menu item
     return ZMenuAction.isVisible(self, context)
コード例 #15
0
ファイル: textbox.py プロジェクト: Tidosho/zoundryraven
 def __init__(self, choiceId):
     self.choiceId = choiceId
     ZMenuAction.__init__(self)
コード例 #16
0
 def isVisible(self, context):
     # used by menu item
     return ZMenuAction.isVisible(self, context)
コード例 #17
0
 def __init__(self):
     ZMenuAction.__init__(self)
コード例 #18
0
ファイル: blogactions.py プロジェクト: Tidosho/zoundryraven
 def __init__(self):
     ZMenuAction.__init__(self)
コード例 #19
0
ファイル: bgtaskmenus.py プロジェクト: Tidosho/zoundryraven
 def __init__(self, task):
     self.task = task
     ZMenuAction.__init__(self)
コード例 #20
0
 def __init__(self, task):
     self.task = task
     ZMenuAction.__init__(self)