Python wx.MODERN Examples
The following are 8
code examples of wx.MODERN().
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example.
You may also want to check out all available functions/classes of the module
wx
, or try the search function
.
Example #1
Source File: wm_legend.py From wafer_map with GNU General Public License v3.0 | 6 votes |
def __init__(self, String, xy, Size=24, Color="Black", BackgroundColor=None, Family=wx.MODERN, Style=wx.NORMAL, Weight=wx.NORMAL, Underlined=False, Font=None): FloatCanvas.Text.__init__(self, String, xy, Size=Size, Color=Color, BackgroundColor=BackgroundColor, Family=Family, Style=Style, Weight=Weight, Underlined=Underlined, Font=Font)
Example #2
Source File: base_window.py From me-ica with GNU Lesser General Public License v2.1 | 5 votes |
def set_display_font_style(self, style): # TODO: make this not stupid # TODO: _actual_ font support self.runtime_display.set_font_style( wx.MODERN if style == 'monospace' else wx.DEFAULT)
Example #3
Source File: console.py From Gooey with MIT License | 5 votes |
def getFontStyle(self): """ Force wx.Modern style to support legacy monospace_display param when present """ return (wx.MODERN if self.buildSpec['monospace_display'] else wx.DEFAULT)
Example #4
Source File: globals.py From admin4 with Apache License 2.0 | 5 votes |
def _makeFonts(self): self._sysFont = wx.SystemSettings.GetFont(wx.SYS_SYSTEM_FONT) self._labelFont = wx.Font(self._sysFont.GetPointSize(), wx.DEFAULT, wx.NORMAL, wx.BOLD) self._modernFont = wx.Font(self._sysFont.GetPointSize(), wx.MODERN, wx.NORMAL, wx.NORMAL) self._smallerFont = wx.Font(self._sysFont.GetPointSize()-2, wx.DEFAULT, wx.NORMAL, wx.NORMAL)
Example #5
Source File: bugdialog_ui.py From wxGlade with MIT License | 5 votes |
def __set_properties(self): # begin wxGlade: UIBugDialog.__set_properties self.SetTitle(_("Error Dialog")) self.SetSize((600, 400)) self.SetFocus() self.tc_details.SetFont(wx.Font(10, wx.MODERN, wx.NORMAL, wx.NORMAL, 0, "")) self.tc_howto_report.SetFont(wx.Font(10, wx.MODERN, wx.NORMAL, wx.NORMAL, 0, "")) compat.SetToolTip( self.btn_copy, _("Copy error details to clipboard") ) self.btn_ok.SetDefault() # end wxGlade
Example #6
Source File: local_display.py From Pigrow with GNU General Public License v3.0 | 5 votes |
def __init__(self): #This is a temporary fudge soon to be cleaned and used more widely # ## paths # # gui system paths shared_data.cwd = os.getcwd() shared_data.ui_img_path = os.path.join(shared_data.cwd, "ui_images") shared_data.graph_modules_path = os.path.join(shared_data.cwd, "graph_modules") sys.path.append(shared_data.graph_modules_path) shared_data.graph_presets_path = os.path.join(shared_data.cwd, "graph_presets") localpath = str(os.getcwd()).split("/scripts")[0] print (localpath) shared_data.local_logs_path = os.path.join(localpath, "logs") local_graphs_path = os.path.join(localpath, "graphs") shared_data.local_graph_path = os.path.join(local_graphs_path, "live_rolling.png") #shared_data.local_graph_path = "/home/pragmo/frompigrow/carputer/graphs/live_rolling.png" # ## Fonts # shared_data.title_font = wx.Font(28, wx.DECORATIVE, wx.ITALIC, wx.NORMAL) shared_data.sub_title_font = wx.Font(15, wx.DECORATIVE, wx.ITALIC, wx.NORMAL) shared_data.item_title_font = wx.Font(16, wx.DECORATIVE, wx.ITALIC, wx.NORMAL) shared_data.info_font = wx.Font(14, wx.MODERN, wx.ITALIC, wx.NORMAL) shared_data.large_info_font = wx.Font(16, wx.MODERN, wx.ITALIC, wx.NORMAL) # ## Options # graph_data_option = "DHT22_Temp.txt" shared_data.graph_data_preset_choice = os.path.join(shared_data.graph_presets_path, graph_data_option) show_duration = 2 #hours # ## Data # shared_data.list_of_datasets = []
Example #7
Source File: FontTest28.py From wxGlade with MIT License | 4 votes |
def __init__(self, *args, **kwds): # begin wxGlade: MyFrame.__init__ kwds["style"] = kwds.get("style", 0) | wx.DEFAULT_FRAME_STYLE wx.Frame.__init__(self, *args, **kwds) self.SetSize((400, 300)) self.SetTitle("frame") sizer_1 = wx.BoxSizer(wx.VERTICAL) self.text_ctrl_1 = wx.TextCtrl(self, wx.ID_ANY, "Some Input", style=wx.TE_READONLY) self.text_ctrl_1.SetBackgroundColour(wx.Colour(0, 255, 127)) self.text_ctrl_1.SetForegroundColour(wx.Colour(255, 0, 0)) self.text_ctrl_1.SetFont(wx.Font(16, wx.DEFAULT, wx.NORMAL, wx.BOLD, 0, "")) self.text_ctrl_1.SetFocus() sizer_1.Add(self.text_ctrl_1, 1, wx.ALL | wx.EXPAND, 5) label_1 = wx.StaticText(self, wx.ID_ANY, "label_1") sizer_1.Add(label_1, 0, 0, 0) label_2 = wx.StaticText(self, wx.ID_ANY, "label_2") label_2.SetFont(wx.Font(8, wx.DECORATIVE, wx.SLANT, wx.LIGHT, 0, "")) sizer_1.Add(label_2, 0, 0, 0) label_3 = wx.StaticText(self, wx.ID_ANY, "label_3") label_3.SetFont(wx.Font(8, wx.ROMAN, wx.ITALIC, wx.BOLD, 0, "")) sizer_1.Add(label_3, 0, 0, 0) label_4 = wx.StaticText(self, wx.ID_ANY, "label_4") label_4.SetFont(wx.Font(8, wx.SCRIPT, wx.NORMAL, wx.NORMAL, 0, "")) sizer_1.Add(label_4, 0, 0, 0) label_5 = wx.StaticText(self, wx.ID_ANY, "label_5") label_5.SetFont(wx.Font(10, wx.SWISS, wx.NORMAL, wx.NORMAL, 0, "")) sizer_1.Add(label_5, 0, 0, 0) label_6 = wx.StaticText(self, wx.ID_ANY, "label_6") label_6.SetFont(wx.Font(12, wx.MODERN, wx.NORMAL, wx.NORMAL, 1, "")) sizer_1.Add(label_6, 0, 0, 0) self.SetSizer(sizer_1) self.Layout() # end wxGlade # end of class MyFrame
Example #8
Source File: Viewer.py From OpenPLC_Editor with GNU General Public License v3.0 | 4 votes |
def DoDrawing(self, dc, printing=False): if printing: if getattr(dc, "printing", False): font = wx.Font(self.GetFont().GetPointSize(), wx.MODERN, wx.NORMAL, wx.NORMAL) dc.SetFont(font) else: dc.SetFont(self.GetFont()) else: dc.SetBackground(wx.Brush(self.Editor.GetBackgroundColour())) dc.Clear() dc.BeginDrawing() if self.Scaling is not None and self.DrawGrid and not printing: dc.SetPen(wx.TRANSPARENT_PEN) dc.SetBrush(self.GridBrush) xstart, ystart = self.GetViewStart() window_size = self.Editor.GetClientSize() width, height = self.Editor.GetVirtualSize() width = int(max(width, xstart * SCROLLBAR_UNIT + window_size[0]) / self.ViewScale[0]) height = int(max(height, ystart * SCROLLBAR_UNIT + window_size[1]) / self.ViewScale[1]) dc.DrawRectangle(1, 1, width, height) if self.PageSize is not None and not printing: dc.SetPen(self.PagePen) xstart, ystart = self.GetViewStart() window_size = self.Editor.GetClientSize() if self.PageSize[0] != 0: for x in xrange(self.PageSize[0] - (xstart * SCROLLBAR_UNIT) % self.PageSize[0], int(window_size[0] / self.ViewScale[0]), self.PageSize[0]): dc.DrawLine(xstart * SCROLLBAR_UNIT + x + 1, int(ystart * SCROLLBAR_UNIT / self.ViewScale[0]), xstart * SCROLLBAR_UNIT + x + 1, int((ystart * SCROLLBAR_UNIT + window_size[1]) / self.ViewScale[0])) if self.PageSize[1] != 0: for y in xrange(self.PageSize[1] - (ystart * SCROLLBAR_UNIT) % self.PageSize[1], int(window_size[1] / self.ViewScale[1]), self.PageSize[1]): dc.DrawLine(int(xstart * SCROLLBAR_UNIT / self.ViewScale[0]), ystart * SCROLLBAR_UNIT + y + 1, int((xstart * SCROLLBAR_UNIT + window_size[0]) / self.ViewScale[1]), ystart * SCROLLBAR_UNIT + y + 1) # Draw all elements for comment in self.Comments.itervalues(): if comment != self.SelectedElement and (comment.IsVisible() or printing): comment.Draw(dc) for wire in self.Wires.iterkeys(): if wire != self.SelectedElement and (wire.IsVisible() or printing): if not self.Debug or not wire.GetValue(): wire.Draw(dc) if self.Debug: for wire in self.Wires.iterkeys(): if wire != self.SelectedElement and (wire.IsVisible() or printing) and wire.GetValue(): wire.Draw(dc) for block in self.Blocks.itervalues(): if block != self.SelectedElement and (block.IsVisible() or printing): block.Draw(dc) if self.SelectedElement is not None and (self.SelectedElement.IsVisible() or printing): self.SelectedElement.Draw(dc) if not printing: if self.Debug: self.InstanceName.Draw(dc) if self.rubberBand.IsShown(): self.rubberBand.Draw(dc) dc.EndDrawing()