本文整理汇总了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()
示例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)
示例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))
示例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
示例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
示例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
示例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)
示例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_())
示例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")