本文整理汇总了Python中glue.app.qt.preferences.PreferencesDialog.theme方法的典型用法代码示例。如果您正苦于以下问题:Python PreferencesDialog.theme方法的具体用法?Python PreferencesDialog.theme怎么用?Python PreferencesDialog.theme使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类glue.app.qt.preferences.PreferencesDialog
的用法示例。
在下文中一共展示了PreferencesDialog.theme方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_themes
# 需要导入模块: from glue.app.qt.preferences import PreferencesDialog [as 别名]
# 或者: from glue.app.qt.preferences.PreferencesDialog import theme [as 别名]
def test_themes(self):
# Check that themes work
with patch('glue.config.settings') as settings:
settings.FOREGROUND_COLOR = 'red'
settings.BACKGROUND_COLOR = (0, 0.5, 1)
settings.DATA_COLOR = (1, 0.5, 0.25)
settings.DATA_ALPHA = 0.3
dialog = PreferencesDialog(self.app)
dialog.show()
dialog.theme = 'White on Black'
dialog.accept()
assert rgb(settings.FOREGROUND_COLOR) == (1, 1, 1)
assert rgb(settings.BACKGROUND_COLOR) == (0, 0, 0)
assert rgb(settings.DATA_COLOR) == (0.75, 0.75, 0.75)
assert settings.DATA_ALPHA == 0.8
dialog = PreferencesDialog(self.app)
dialog.show()
dialog.theme = 'Black on White'
dialog.accept()
assert rgb(settings.FOREGROUND_COLOR) == (0, 0, 0)
assert rgb(settings.BACKGROUND_COLOR) == (1, 1, 1)
assert rgb(settings.DATA_COLOR) == (0.35, 0.35, 0.35)
assert settings.DATA_ALPHA == 0.8