本文整理汇总了Python中wx.FONTFAMILY_DEFAULT属性的典型用法代码示例。如果您正苦于以下问题:Python wx.FONTFAMILY_DEFAULT属性的具体用法?Python wx.FONTFAMILY_DEFAULT怎么用?Python wx.FONTFAMILY_DEFAULT使用的例子?那么恭喜您, 这里精选的属性代码示例或许可以为您提供帮助。您也可以进一步了解该属性所在类wx
的用法示例。
在下文中一共展示了wx.FONTFAMILY_DEFAULT属性的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: __init__
# 需要导入模块: import wx [as 别名]
# 或者: from wx import FONTFAMILY_DEFAULT [as 别名]
def __init__(self, parent, id, getCfgGui):
wx.Window.__init__(self, parent, id, size = (MyStatus.WIDTH, TAB_BAR_HEIGHT),
style = wx.FULL_REPAINT_ON_RESIZE)
self.getCfgGui = getCfgGui
self.page = 0
self.pageCnt = 0
self.elemType = ""
self.tabNext = ""
self.enterNext = ""
self.elementFont = util.createPixelFont(
TAB_BAR_HEIGHT // 2 + 6, wx.FONTFAMILY_DEFAULT, wx.NORMAL, wx.NORMAL)
self.font = util.createPixelFont(
TAB_BAR_HEIGHT // 2 + 2, wx.FONTFAMILY_DEFAULT, wx.NORMAL, wx.NORMAL)
wx.EVT_PAINT(self, self.OnPaint)
示例2: __init__
# 需要导入模块: import wx [as 别名]
# 或者: from wx import FONTFAMILY_DEFAULT [as 别名]
def __init__(self, *args, **kwds):
# begin wxGlade: DebugPanel.__init__
kwds["style"] = kwds.get("style", 0) | wx.TAB_TRAVERSAL
wx.Panel.__init__(self, *args, **kwds)
self.SetFont(wx.Font(12, wx.FONTFAMILY_DEFAULT, wx.FONTSTYLE_NORMAL, wx.FONTWEIGHT_BOLD, 0, ""))
sizer_2 = wx.StaticBoxSizer(wx.StaticBox(self, wx.ID_ANY, "sizer_2"), wx.VERTICAL)
sizer_2.Add((0, 0), 0, 0, 0)
self.SetSizer(sizer_2)
self.Layout()
# end wxGlade
# end of class DebugPanel
示例3: __init__
# 需要导入模块: import wx [as 别名]
# 或者: from wx import FONTFAMILY_DEFAULT [as 别名]
def __init__(self, parent):
wx.PyWindow.__init__(self, parent)
self.font = wx.Font(
40, wx.FONTFAMILY_DEFAULT, wx.FONTSTYLE_ITALIC, wx.FONTWEIGHT_BOLD
)
self.SetBackgroundColour((255, 255, 255))
self.logo1 = GetInternalBitmap("opensource-55x48")
self.logo2 = GetInternalBitmap("python-powered")
self.logo3 = GetInternalBitmap("logo2")
self.image = GetInternalImage("logo")
self.bmpWidth = self.image.GetWidth()
self.bmpHeight = self.image.GetHeight()
self.time = clock()
self.count = 0
self.Bind(wx.EVT_SIZE, self.OnSize)
self.Bind(wx.EVT_TIMER, self.UpdateDrawing)
self.OnSize(None)
self.timer = wx.Timer(self)
self.timer.Start(10)
示例4: __do_layout
# 需要导入模块: import wx [as 别名]
# 或者: from wx import FONTFAMILY_DEFAULT [as 别名]
def __do_layout(self):
# begin wxGlade: About.__do_layout
sizer_1 = wx.BoxSizer(wx.VERTICAL)
sizer_2 = wx.BoxSizer(wx.HORIZONTAL)
sizer_3 = wx.BoxSizer(wx.VERTICAL)
sizer_3.Add(self.bitmap_button_1, 1, 0, 0)
self.meerk40t_about_version_text.SetFont(wx.Font(10, wx.FONTFAMILY_DEFAULT, wx.FONTSTYLE_NORMAL, wx.FONTWEIGHT_NORMAL, 0, "Segoe UI"))
sizer_3.Add(self.meerk40t_about_version_text, 0, 0, 0)
sizer_2.Add(sizer_3, 1, wx.EXPAND, 0)
meerk40t_about_text_header = wx.StaticText(self, wx.ID_ANY, "MeerK40t is a free MIT Licensed open source project for lasering on K40 Devices.\n\nParticipation in the project is highly encouraged. Past participation, and continuing participation is graciously thanked. This program is mostly the brainchild of Tatarize, who sincerely hopes his contributions will be but the barest trickle that becomes a raging river.")
meerk40t_about_text_header.SetFont(wx.Font(12, wx.FONTFAMILY_DEFAULT, wx.FONTSTYLE_NORMAL, wx.FONTWEIGHT_NORMAL, 0, "Segoe UI"))
sizer_2.Add(meerk40t_about_text_header, 2, wx.EXPAND, 0)
sizer_1.Add(sizer_2, 1, wx.EXPAND, 0)
meerk40t_about_text = wx.StaticText(self, wx.ID_ANY, "Thanks.\nLi Huiyu for their controller. \nScorch for lighting our path.\nAlois Zingl for his wonderful Bresenham plotting algorithms.\n@joerlane and all the MeerKittens, past and present, great and small.\n\nIcon8 for their great icons ( https://icons8.com/ ) used throughout the project.\nThe works of countless developers who made everything possible.\nRegebro for his svg.path module.\nThe SVG Working Group.\nHackers (in the general sense).")
meerk40t_about_text.SetFont(wx.Font(12, wx.FONTFAMILY_DEFAULT, wx.FONTSTYLE_NORMAL, wx.FONTWEIGHT_NORMAL, 0, "Segoe UI"))
sizer_1.Add(meerk40t_about_text, 2, wx.EXPAND, 0)
self.SetSizer(sizer_1)
self.Layout()
self.Centre()
# end wxGlade
示例5: __set_properties
# 需要导入模块: import wx [as 别名]
# 或者: from wx import FONTFAMILY_DEFAULT [as 别名]
def __set_properties(self):
# begin wxGlade: DeviceManager.__set_properties
self.SetTitle("Device Manager")
self.devices_list.SetFont(wx.Font(13, wx.FONTFAMILY_DEFAULT, wx.FONTSTYLE_NORMAL, wx.FONTWEIGHT_NORMAL, 0, "Segoe UI"))
self.devices_list.AppendColumn(_("Id"), format=wx.LIST_FORMAT_LEFT, width=72)
self.devices_list.AppendColumn(_("Driver"), format=wx.LIST_FORMAT_LEFT, width=119)
self.devices_list.AppendColumn(_("State"), format=wx.LIST_FORMAT_LEFT, width=127)
self.devices_list.AppendColumn(_("Location"), format=wx.LIST_FORMAT_LEFT, width=258)
self.devices_list.AppendColumn(_("Boot"), format=wx.LIST_FORMAT_LEFT, width=51)
self.new_device_button.SetToolTip(_("Add a new device"))
self.new_device_button.SetSize(self.new_device_button.GetBestSize())
self.remove_device_button.SetToolTip(_("Remove selected device"))
self.remove_device_button.SetSize(self.remove_device_button.GetBestSize())
self.device_properties_button.SetToolTip(_("View Device Properties"))
self.device_properties_button.SetSize(self.device_properties_button.GetBestSize())
self.move_item_up_button.SetToolTip(_("Move device up"))
self.move_item_up_button.SetSize(self.move_item_up_button.GetBestSize())
self.move_item_down_button.SetToolTip(_("Move device down"))
self.move_item_down_button.SetSize(self.move_item_down_button.GetBestSize())
# end wxGlade
示例6: make_bold
# 需要导入模块: import wx [as 别名]
# 或者: from wx import FONTFAMILY_DEFAULT [as 别名]
def make_bold(statictext):
pointsize = statictext.GetFont().GetPointSize()
font = wx.Font(pointsize, wx.FONTFAMILY_DEFAULT,
wx.FONTWEIGHT_NORMAL, wx.FONTWEIGHT_BOLD, False)
statictext.SetFont(font)
示例7: h0
# 需要导入模块: import wx [as 别名]
# 或者: from wx import FONTFAMILY_DEFAULT [as 别名]
def h0(parent, label):
text = wx.StaticText(parent, label=label)
font_size = text.GetFont().GetPointSize()
font = wx.Font(font_size * 1.4, *(wx.FONTFAMILY_DEFAULT, wx.FONTWEIGHT_NORMAL, wx.FONTWEIGHT_BOLD, False))
text.SetFont(font)
return text
示例8: h1
# 需要导入模块: import wx [as 别名]
# 或者: from wx import FONTFAMILY_DEFAULT [as 别名]
def h1(parent, label):
return _header(parent, label, (wx.FONTFAMILY_DEFAULT, wx.FONTWEIGHT_NORMAL, wx.FONTWEIGHT_BOLD, False))
示例9: h2
# 需要导入模块: import wx [as 别名]
# 或者: from wx import FONTFAMILY_DEFAULT [as 别名]
def h2(parent, label):
return _header(parent, label, (wx.FONTFAMILY_DEFAULT, wx.FONTWEIGHT_NORMAL, wx.FONTWEIGHT_NORMAL, False))
示例10: __init__
# 需要导入模块: import wx [as 别名]
# 或者: from wx import FONTFAMILY_DEFAULT [as 别名]
def __init__(self):
wx.Dialog.__init__(self, None, title=_('Standalone tool'), size=(130,230))
self.SetFont(wx.Font(10, wx.FONTFAMILY_DEFAULT, wx.FONTSTYLE_NORMAL, wx.FONTWEIGHT_NORMAL))
panel = wx.Panel(self)
self.settings_b = wx.Button(panel,label=_('settings') , pos=(20, 20))
self.start_b = wx.Button(panel, label=_('start'), pos=(20, 60))
self.stop_b = wx.Button(panel, label=_('stop'), pos=(20, 100))
self.cancel_b = wx.Button(panel, label=_('cancel'), pos=(20, 140))
self.Bind(wx.EVT_BUTTON, self.on_Button)
示例11: __init__
# 需要导入模块: import wx [as 别名]
# 或者: from wx import FONTFAMILY_DEFAULT [as 别名]
def __init__(self):
self.ButtonNr = 1
wx.Dialog.__init__(self, None, title=_('Add individual name to serial port'), size=(130, 230))
self.SetFont(wx.Font(10, wx.FONTFAMILY_DEFAULT, wx.FONTSTYLE_NORMAL, wx.FONTWEIGHT_NORMAL))
panel = wx.Panel(self)
self.settings_b = wx.Button(panel, label=_('settings'), pos=(20, 20))
self.start_b = wx.Button(panel, label=_('start'), pos=(20, 60))
self.stop_b = wx.Button(panel, label=_('stop'), pos=(20, 100))
self.cancel_b = wx.Button(panel, label=_('cancel'), pos=(20, 140))
self.Bind(wx.EVT_BUTTON, self.on_Button)
示例12: __init__
# 需要导入模块: import wx [as 别名]
# 或者: from wx import FONTFAMILY_DEFAULT [as 别名]
def __init__(self):
self.option=sys.argv[1]
self.text_sms=sys.argv[2]
self.text_sms=unicode(self.text_sms,'utf-8')
self.phone=sys.argv[3]
self.conf = Conf()
self.home = self.conf.home
self.currentpath = self.home+self.conf.get('GENERAL', 'op_folder')+'/openplotter'
Language(self.conf)
wx.Frame.__init__(self, None, title=_('Test SMS'), size=(500,260))
self.SetFont(wx.Font(10, wx.FONTFAMILY_DEFAULT, wx.FONTSTYLE_NORMAL, wx.FONTWEIGHT_NORMAL))
self.icon = wx.Icon(self.currentpath+'/openplotter.ico', wx.BITMAP_TYPE_ICO)
self.SetIcon(self.icon)
self.CreateStatusBar()
self.text=wx.StaticText(self, label=_('Error'), pos=(10, 10))
self.output = wx.TextCtrl(self, style=wx.TE_MULTILINE|wx.TE_READONLY|wx.TE_DONTWRAP, size=(480,110), pos=(10,50))
self.button_close =wx.Button(self, label=_('Close'), pos=(300, 170))
self.Bind(wx.EVT_BUTTON, self.close, self.button_close)
self.button_calculate =wx.Button(self, label=_('Start'), pos=(400, 170))
self.Bind(wx.EVT_BUTTON, self.calculate, self.button_calculate)
if self.option=='i':
self.text.SetLabel(_('Press start to check the settings and connect to the GSM device'))
if self.option=='t':
self.text.SetLabel(_('Press start to send the text "').decode('utf8')+self.text_sms+_('"\nto the number "').decode('utf8')+self.phone+'"')
self.Centre()
示例13: _bold_static_text
# 需要导入模块: import wx [as 别名]
# 或者: from wx import FONTFAMILY_DEFAULT [as 别名]
def _bold_static_text(self, text_label):
text = wx.StaticText(self, label=text_label)
font_size = text.GetFont().GetPointSize()
bold = wx.Font(font_size, wx.FONTFAMILY_DEFAULT, wx.FONTSTYLE_NORMAL, wx.FONTWEIGHT_BOLD)
text.SetFont(bold)
return text
示例14: MakeBold
# 需要导入模块: import wx [as 别名]
# 或者: from wx import FONTFAMILY_DEFAULT [as 别名]
def MakeBold(statictext):
pointsize = statictext.GetFont().GetPointSize()
font = wx.Font(pointsize, wx.FONTFAMILY_DEFAULT,
wx.FONTWEIGHT_NORMAL, wx.FONTWEIGHT_BOLD, False)
statictext.SetFont(font)
示例15: _bold_static_text
# 需要导入模块: import wx [as 别名]
# 或者: from wx import FONTFAMILY_DEFAULT [as 别名]
def _bold_static_text(parent, text_label):
text = wx.StaticText(parent, label=text_label)
font_size = text.GetFont().GetPointSize()
bold = wx.Font(font_size, wx.FONTFAMILY_DEFAULT, wx.FONTSTYLE_NORMAL, wx.FONTWEIGHT_BOLD)
text.SetFont(bold)
return text