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


Python MenuManager.instance方法代码示例

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


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

示例1: toggleFullscreen

# 需要导入模块: from menumanager import MenuManager [as 别名]
# 或者: from menumanager.MenuManager import instance [as 别名]
 def toggleFullscreen(self):
     if self.isFullScreen():
         self.enableMask(True)
         self.showNormal()
         if MenuManager.instance().ticker:
             MenuManager.instance().ticker.pause(False)
     else:
         self.enableMask(False)
         self.showFullScreen()
开发者ID:AmerGit,项目名称:Examples,代码行数:11,代码来源:mainwindow.py

示例2: focusOutEvent

# 需要导入模块: from menumanager import MenuManager [as 别名]
# 或者: from menumanager.MenuManager import instance [as 别名]
    def focusOutEvent(self, event):
        if not Colors.pause:
            return

        if MenuManager.instance().ticker:
            MenuManager.instance().ticker.pause(True)

        code = MenuManager.instance().currentMenuCode
        if code in (MenuManager.ROOT, MenuManager.MENU1):
            self.switchTimerOnOff(False)

        self.pausedLabel.setRecursiveVisible(True)
开发者ID:AmerGit,项目名称:Examples,代码行数:14,代码来源:mainwindow.py

示例3: tick

# 需要导入模块: from menumanager import MenuManager [as 别名]
# 或者: from menumanager.MenuManager import instance [as 别名]
    def tick(self):
        medianChanged = self.measureFps()
        self.checkAdapt()

        if medianChanged and self.fpsLabel and Colors.showFps:
            self.fpsLabel.setText("FPS: %d" % int(self.currentFps))

        if MenuManager.instance().ticker:
            MenuManager.instance().ticker.tick()

        self.viewport().update()

        if self.useTimer:
            self.updateTimer.start(int(1000 / Colors.fps))
开发者ID:CarlosAndres12,项目名称:pyqt5,代码行数:16,代码来源:mainwindow.py

示例4: checkAdapt

# 需要导入模块: from menumanager import MenuManager [as 别名]
# 或者: from menumanager.MenuManager import instance [as 别名]
    def checkAdapt(self):
        if self.doneAdapt or Colors.noTimerUpdate or self.demoStartTime.elapsed() < 2000:
            return

        self.doneAdapt = True
        self.forceFpsMedianCalculation()
        Colors.benchmarkFps = self.fpsMedian
        Colors.debug("- benchmark: %d FPS" % int(Colors.benchmarkFps))

        if Colors.noAdapt:
            return

        if self.fpsMedian < 30:
            ticker = MenuManager.instance().ticker
            if ticker and ticker.scene():
                self.scene.removeItem(ticker)
                Colors.noTimerUpdate = True
                self.switchTimerOnOff(False)

                if self.fpsLabel:
                    self.fpsLabel.setText("FPS: (%d)" % int(self.fpsMedian))

                Colors.debug("- benchmark adaption: removed ticker (fps < 30)")

            if self.fpsMedian < 20:
                Colors.noAnimations = True
                Colors.debug("- benchmark adaption: animations switched off (fps < 20)")

            Colors.adapted = True
开发者ID:AmerGit,项目名称:Examples,代码行数:31,代码来源:mainwindow.py

示例5: __init__

# 需要导入模块: from menumanager import MenuManager [as 别名]
# 或者: from menumanager.MenuManager import instance [as 别名]
    def __init__(self, text, align=LEFT, userCode=0, parent=None, type=SIDEBAR):
        super(TextButton, self).__init__(parent)

        # Prevent a circular import.
        from menumanager import MenuManager
        self._menu_manager = MenuManager.instance()

        self.menuString = text
        self.buttonLabel = text
        self.alignment = align
        self.buttonType = type
        self.userCode = userCode
        self.scanAnim = None
        self.bgOn = None
        self.bgOff = None
        self.bgHighlight = None
        self.bgDisabled = None
        self.state = TextButton.OFF

        self.setAcceptHoverEvents(True)
        self.setCursor(Qt.PointingHandCursor)

        # Calculate the button size.
        if type in (TextButton.SIDEBAR, TextButton.PANEL):
            self.logicalSize = QSize(TextButton.BUTTON_WIDTH, TextButton.BUTTON_HEIGHT)
        else:
            self.logicalSize = QSize(int((TextButton.BUTTON_WIDTH / 2.0) - 5), int(TextButton.BUTTON_HEIGHT * 1.5))

        self._prepared = False
开发者ID:death-finger,项目名称:Scripts,代码行数:31,代码来源:textbutton.py

示例6: __init__

# 需要导入模块: from menumanager import MenuManager [as 别名]
# 或者: from menumanager.MenuManager import instance [as 别名]
    def __init__(self, name, scene=None, parent=None):
        super(ExampleContent, self).__init__(scene, parent)

        # Prevent a circular import.
        from menumanager import MenuManager
        self._menu_manager = MenuManager.instance()

        self.name = name
        self.heading = None
        self.description = None
        self.screenshot = None
开发者ID:felipebetancur,项目名称:pyside2-examples,代码行数:13,代码来源:examplecontent.py

示例7: switchTimerOnOff

# 需要导入模块: from menumanager import MenuManager [as 别名]
# 或者: from menumanager.MenuManager import instance [as 别名]
    def switchTimerOnOff(self, on):
        ticker = MenuManager.instance().ticker
        if ticker and ticker.scene():
            ticker.tickOnPaint = not on or Colors.noTimerUpdate

        if on and not Colors.noTimerUpdate:
            self.useTimer = True
            self.fpsTime = QTime.currentTime()
            self.updateTimer.start(int(1000 / Colors.fps))
            update_mode = QGraphicsView.NoViewportUpdate
        else:
            self.useTimer = False
            self.updateTimer.stop()

            if Colors.noTicker:
                update_mode = QGraphicsView.MinimalViewportUpdate
            else:
                update_mode = QGraphicsView.SmartViewportUpdate

        self.setViewportUpdateMode(update_mode)
开发者ID:CarlosAndres12,项目名称:pyqt5,代码行数:22,代码来源:mainwindow.py

示例8: QApplication

# 需要导入模块: from menumanager import MenuManager [as 别名]
# 或者: from menumanager.MenuManager import instance [as 别名]
if __name__ == '__main__':

    import sys

    app = QApplication(sys.argv)
    Colors.parseArgs(sys.argv)

    if sys.platform == 'win32':
        QMessageBox.information(None, "Documentation Warning",
                "If you are using the GPL version of PyQt from the binary "
                "installer then you will probably see warning messages about "
                "missing documentation.  This is because the installer does "
                "not include a copy of the Qt documentation as it is so "
                "large.")

    mainWindow = MainWindow()
    MenuManager.instance().init(mainWindow)
    mainWindow.setFocus()

    if Colors.fullscreen:
        mainWindow.showFullScreen()
    else:
        mainWindow.enableMask(True)
        mainWindow.show()

    artisticSleep(500)
    mainWindow.start()

    sys.exit(app.exec_())
开发者ID:Axel-Erfurt,项目名称:pyqt5,代码行数:31,代码来源:qtdemo.py

示例9: start

# 需要导入模块: from menumanager import MenuManager [as 别名]
# 或者: from menumanager.MenuManager import instance [as 别名]
 def start(self):
     self.switchTimerOnOff(True)
     self.demoStartTime.restart()
     MenuManager.instance().itemSelected(MenuManager.ROOT,
             Colors.rootMenuName)
     Colors.debug("- starting demo")
开发者ID:AmerGit,项目名称:Examples,代码行数:8,代码来源:mainwindow.py


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