本文整理汇总了Python中FxStudio.getAppIconPath方法的典型用法代码示例。如果您正苦于以下问题:Python FxStudio.getAppIconPath方法的具体用法?Python FxStudio.getAppIconPath怎么用?Python FxStudio.getAppIconPath使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类FxStudio
的用法示例。
在下文中一共展示了FxStudio.getAppIconPath方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: __init__
# 需要导入模块: import FxStudio [as 别名]
# 或者: from FxStudio import getAppIconPath [as 别名]
def __init__(self, parent):
from PluginManager import PLUGIN_MANAGER
self.plugin_manager = PLUGIN_MANAGER
wx.Dialog.__init__(self, parent, wx.ID_ANY, _WINDOW_TITLE,
size=(300, 600))
self.colors = FxStudio.getColorPalette()
self.SetBackgroundColour(self.colors['UIFaceColour'])
self.SetForegroundColour(self.colors['BaseColour8'])
ib = wx.IconBundle()
ib.AddIconFromFile(FxStudio.getAppIconPath(), wx.BITMAP_TYPE_ANY)
self.SetIcons(ib)
self.create_controls()
示例2: createOutputWindow
# 需要导入模块: import FxStudio [as 别名]
# 或者: from FxStudio import getAppIconPath [as 别名]
def createOutputWindow(self, st):
if FxStudio.getConsoleVariableAsSwitch('py_enableoutputwindow') == True:
self.frame = wx.Frame(FxStudio.getMainWindow(), -1, self.title, self.pos, self.size,
style=wx.DEFAULT_FRAME_STYLE)
self.text = wx.TextCtrl(self.frame, -1, "", style=wx.TE_MULTILINE | wx.TE_READONLY)
self.text.SetFont(wx.Font(8, wx.FONTFAMILY_DEFAULT, wx.FONTSTYLE_NORMAL, wx.FONTWEIGHT_NORMAL, False, FxStudio.getUnicodeFontName(), wx.FONTENCODING_SYSTEM))
self.text.SetBackgroundColour(self.color_palette['BaseColour1'])
self.text.SetForegroundColour(self.color_palette['BaseColour8'])
ib = wx.IconBundle()
ib.AddIconFromFile(FxStudio.getAppIconPath(), wx.BITMAP_TYPE_ANY)
self.frame.SetIcons(ib)
self.text.AppendText(st)
self.log_to_file(st)
self.frame.Show(True)
self.frame.Bind(wx.EVT_CLOSE, self.onCloseWindow)
else:
self.log_to_file(st)