Python wx.CB_READONLY Examples
The following are 24
code examples of wx.CB_READONLY().
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: misc.py From trelby with GNU General Public License v2.0 | 6 votes |
def addCombo(self, name, descr, parent, sizer, items, sel): al = wx.ALIGN_CENTER_VERTICAL | wx.RIGHT if sel == 1: al |= wx.ALIGN_RIGHT sizer.Add(wx.StaticText(parent, -1, descr), 0, al, 10) combo = wx.ComboBox(parent, -1, style = wx.CB_READONLY) util.setWH(combo, w = 200) for s in items: combo.Append(s) combo.SetSelection(sel) sizer.Add(combo) setattr(self, name + "Combo", combo)
Example #2
Source File: optionsframe.py From youtube-dl-gui with The Unlicense | 6 votes |
def crt_bitmap_combobox(self, choices, size=(-1, -1), event_handler=None): combobox = wx.combo.BitmapComboBox(self, size=size, style=wx.CB_READONLY) for item in choices: lang_code, lang_name = item _, country = lang_code.split('_') if country in flagart.catalog: flag_bmp = flagart.catalog[country].getBitmap() else: flag_bmp = flagart.catalog["BLANK"].getBitmap() combobox.Append(lang_name, flag_bmp) if event_handler is not None: combobox.Bind(wx.EVT_COMBOBOX, event_handler) return combobox
Example #3
Source File: guiminer.py From poclbm with GNU General Public License v3.0 | 6 votes |
def __init__(self, parent, title, current_language): style = wx.DEFAULT_DIALOG_STYLE vbox = wx.BoxSizer(wx.VERTICAL) wx.Dialog.__init__(self, parent, -1, title, style=style) self.lbl = wx.StaticText(self, -1, _("Choose language (requires restart to take full effect)")) vbox.Add(self.lbl, 0, wx.ALL, 10) self.language_choices = wx.ComboBox(self, -1, choices=sorted(LANGUAGES.keys()), style=wx.CB_READONLY) self.language_choices.SetStringSelection(LANGUAGES_REVERSE[current_language]) vbox.Add(self.language_choices, 0, wx.ALL, 10) buttons = self.CreateButtonSizer(wx.OK | wx.CANCEL) vbox.Add(buttons, 0, wx.ALL | wx.ALIGN_CENTER_HORIZONTAL, 10) self.SetSizerAndFit(vbox)
Example #4
Source File: dfgui.py From PandasDataFrameGUI with MIT License | 6 votes |
def __init__(self, parent, columns, df_list_ctrl): wx.Panel.__init__(self, parent) columns_with_neutral_selection = [''] + list(columns) self.columns = columns self.df_list_ctrl = df_list_ctrl self.figure = Figure(facecolor="white", figsize=(1, 1)) self.axes = self.figure.add_subplot(111) self.canvas = FigureCanvas(self, -1, self.figure) chart_toolbar = NavigationToolbar2Wx(self.canvas) self.combo_box1 = wx.ComboBox(self, choices=columns_with_neutral_selection, style=wx.CB_READONLY) self.Bind(wx.EVT_COMBOBOX, self.on_combo_box_select) row_sizer = wx.BoxSizer(wx.HORIZONTAL) row_sizer.Add(self.combo_box1, 0, wx.ALL | wx.ALIGN_CENTER, 5) row_sizer.Add(chart_toolbar, 0, wx.ALL, 5) sizer = wx.BoxSizer(wx.VERTICAL) sizer.Add(self.canvas, 1, flag=wx.EXPAND, border=5) sizer.Add(row_sizer) self.SetSizer(sizer)
Example #5
Source File: optionsframe.py From youtube-dl-gui with The Unlicense | 5 votes |
def crt_combobox(self, choices, size=(-1, -1), event_handler=None): combobox = wx.ComboBox(self, choices=choices, size=size, style=wx.CB_READONLY) if event_handler is not None: combobox.Bind(wx.EVT_COMBOBOX, event_handler) return combobox
Example #6
Source File: PouTransitionDialog.py From OpenPLC_Editor with GNU General Public License v3.0 | 5 votes |
def __init__(self, parent): wx.Dialog.__init__(self, parent, title=_('Create a new transition')) self.TRANSITION_LANGUAGES_DICT = dict([(_(language), language) for language in GetTransitionLanguages()]) main_sizer = wx.FlexGridSizer(cols=1, hgap=0, rows=2, vgap=10) main_sizer.AddGrowableCol(0) main_sizer.AddGrowableRow(0) infos_sizer = wx.FlexGridSizer(cols=2, hgap=5, rows=3, vgap=10) infos_sizer.AddGrowableCol(1) main_sizer.AddSizer(infos_sizer, border=20, flag=wx.GROW | wx.TOP | wx.LEFT | wx.RIGHT) transitionname_label = wx.StaticText(self, label=_('Transition Name:')) infos_sizer.AddWindow(transitionname_label, border=4, flag=wx.ALIGN_CENTER_VERTICAL | wx.TOP) self.TransitionName = wx.TextCtrl(self, size=wx.Size(180, -1)) infos_sizer.AddWindow(self.TransitionName, flag=wx.GROW) language_label = wx.StaticText(self, label=_('Language:')) infos_sizer.AddWindow(language_label, border=4, flag=wx.ALIGN_CENTER_VERTICAL | wx.TOP) self.Language = wx.ComboBox(self, style=wx.CB_READONLY) infos_sizer.AddWindow(self.Language, flag=wx.GROW) button_sizer = self.CreateButtonSizer(wx.OK | wx.CANCEL | wx.CENTRE) self.Bind(wx.EVT_BUTTON, self.OnOK, button_sizer.GetAffirmativeButton()) main_sizer.AddSizer(button_sizer, border=20, flag=wx.ALIGN_RIGHT | wx.BOTTOM) self.SetSizer(main_sizer) for language in GetTransitionLanguages(): self.Language.Append(_(language)) self.Fit() self.PouNames = [] self.PouElementNames = []
Example #7
Source File: __init__.py From EventGhost with GNU General Public License v2.0 | 5 votes |
def Configure(self, h = 0, v = 0): panel = eg.ConfigPanel() vCtrl = panel.ComboBox(self.vChoices[v], self.vChoices, style = wx.CB_READONLY) hCtrl = panel.ComboBox(self.hChoices[h], self.hChoices, style = wx.CB_READONLY) panel.AddLine("Vertical Position:", vCtrl) panel.AddLine("Horizontal Position:", hCtrl) while panel.Affirmed(): panel.SetResult( self.hChoices.index(hCtrl.GetValue()), self.vChoices.index(vCtrl.GetValue()) )
Example #8
Source File: color_dialog.py From wxGlade with MIT License | 5 votes |
def __init__(self, colors_dict, parent=None): wx.Dialog.__init__(self, parent, -1, "") self.colors_dict = colors_dict choices = list( self.colors_dict.keys() ) choices.sort() self.panel_1 = wx.Panel(self, -1) self.use_null_color = wx.RadioButton( self.panel_1, -1, "wxNullColour", style=wx.RB_GROUP ) self.use_sys_color = wx.RadioButton( self.panel_1, -1, _("System Color") ) self.sys_color = wx.ComboBox( self.panel_1, -1, choices=choices, style=wx.CB_DROPDOWN | wx.CB_READONLY) self.sys_color_panel = wx.Panel(self.panel_1, -1, size=(250, 20)) self.sys_color_panel.SetBackgroundColour(wx.RED) self.use_chooser = wx.RadioButton(self.panel_1, -1, _("Custom Color")) self.color_chooser = PyColourChooser(self, -1) self.ok = wx.Button(self, wx.ID_OK, _("OK")) self.cancel = wx.Button(self, wx.ID_CANCEL, _("Cancel")) self.__set_properties() self.__do_layout() self.use_null_color.Bind(wx.EVT_RADIOBUTTON, self.on_use_null_color) self.use_sys_color.Bind(wx.EVT_RADIOBUTTON, self.on_use_sys_color) self.use_chooser.Bind(wx.EVT_RADIOBUTTON, self.on_use_chooser) self.sys_color.Bind(wx.EVT_COMBOBOX, self.display_sys_color) self.display_sys_color() for ctrl in (self.use_null_color, self.use_sys_color, self.use_chooser): ctrl.Bind(wx.EVT_LEFT_DCLICK, lambda evt: self.EndModal(wx.ID_OK) )
Example #9
Source File: commondialogs.py From CANFestivino with GNU Lesser General Public License v2.1 | 5 votes |
def _init_ctrls(self, prnt): wx.Dialog.__init__(self, id=ID_ADDSLAVEDIALOG, name='AddSlaveDialog', parent=prnt, pos=wx.Point(376, 223), size=wx.Size(300, 250), style=wx.DEFAULT_DIALOG_STYLE|wx.RESIZE_BORDER, title=_('Add a slave to nodelist')) self.SetClientSize(wx.Size(300, 250)) self.staticText1 = wx.StaticText(id=ID_ADDSLAVEDIALOGSTATICTEXT1, label=_('Slave Name:'), name='staticText1', parent=self, pos=wx.Point(0, 0), size=wx.Size(0, 17), style=0) self.SlaveName = wx.TextCtrl(id=ID_ADDSLAVEDIALOGSLAVENAME, name='SlaveName', parent=self, pos=wx.Point(0, 0), size=wx.Size(0, 24), style=0) self.staticText2 = wx.StaticText(id=ID_ADDSLAVEDIALOGSTATICTEXT2, label=_('Slave Node ID:'), name='staticText2', parent=self, pos=wx.Point(0, 0), size=wx.Size(0, 17), style=0) self.SlaveNodeID = wx.TextCtrl(id=ID_ADDSLAVEDIALOGSLAVENODEID, name='SlaveName', parent=self, pos=wx.Point(0, 0), size=wx.Size(0, 24), style=wx.ALIGN_RIGHT) self.staticText3 = wx.StaticText(id=ID_ADDSLAVEDIALOGSTATICTEXT3, label=_('EDS File:'), name='staticText3', parent=self, pos=wx.Point(0, 0), size=wx.Size(0, 17), style=0) self.EDSFile = wx.ComboBox(id=ID_ADDSLAVEDIALOGEDSFILE, name='EDSFile', parent=self, pos=wx.Point(0, 0), size=wx.Size(0, 28), style=wx.CB_READONLY) self.ImportEDS = wx.Button(id=ID_ADDSLAVEDIALOGIMPORTEDS, label=_('Import EDS'), name='ImportEDS', parent=self, pos=wx.Point(0, 0), size=wx.Size(100, 32), style=0) self.ImportEDS.Bind(wx.EVT_BUTTON, self.OnImportEDSButton, id=ID_ADDSLAVEDIALOGIMPORTEDS) self.ButtonSizer = self.CreateButtonSizer(wx.OK|wx.CANCEL|wx.CENTRE) self.Bind(wx.EVT_BUTTON, self.OnOK, id=self.ButtonSizer.GetAffirmativeButton().GetId()) self._init_sizers()
Example #10
Source File: dfgui.py From PandasDataFrameGUI with MIT License | 5 votes |
def __init__(self, parent, columns, df_list_ctrl): wx.Panel.__init__(self, parent) columns_with_neutral_selection = [''] + list(columns) self.columns = columns self.df_list_ctrl = df_list_ctrl self.figure = Figure(facecolor="white", figsize=(1, 1)) self.axes = self.figure.add_subplot(111) self.canvas = FigureCanvas(self, -1, self.figure) chart_toolbar = NavigationToolbar2Wx(self.canvas) self.combo_box1 = wx.ComboBox(self, choices=columns_with_neutral_selection, style=wx.CB_READONLY) self.combo_box2 = wx.ComboBox(self, choices=columns_with_neutral_selection, style=wx.CB_READONLY) self.Bind(wx.EVT_COMBOBOX, self.on_combo_box_select) row_sizer = wx.BoxSizer(wx.HORIZONTAL) row_sizer.Add(self.combo_box1, 0, wx.ALL | wx.ALIGN_CENTER, 5) row_sizer.Add(self.combo_box2, 0, wx.ALL | wx.ALIGN_CENTER, 5) row_sizer.Add(chart_toolbar, 0, wx.ALL, 5) sizer = wx.BoxSizer(wx.VERTICAL) sizer.Add(self.canvas, 1, flag=wx.EXPAND, border=5) sizer.Add(row_sizer) self.SetSizer(sizer)
Example #11
Source File: dfgui.py From PandasDataFrameGUI with MIT License | 5 votes |
def __init__(self, parent, columns, df_list_ctrl, change_callback): wx.Panel.__init__(self, parent) columns_with_neutral_selection = [''] + list(columns) self.columns = columns self.df_list_ctrl = df_list_ctrl self.change_callback = change_callback self.num_filters = 10 self.main_sizer = wx.BoxSizer(wx.VERTICAL) self.combo_boxes = [] self.text_controls = [] for i in range(self.num_filters): combo_box = wx.ComboBox(self, choices=columns_with_neutral_selection, style=wx.CB_READONLY) text_ctrl = wx.TextCtrl(self, wx.ID_ANY, '') self.Bind(wx.EVT_COMBOBOX, self.on_combo_box_select) self.Bind(wx.EVT_TEXT, self.on_text_change) row_sizer = wx.BoxSizer(wx.HORIZONTAL) row_sizer.Add(combo_box, 0, wx.ALL, 5) row_sizer.Add(text_ctrl, 1, wx.ALL | wx.EXPAND | wx.ALIGN_RIGHT, 5) self.combo_boxes.append(combo_box) self.text_controls.append(text_ctrl) self.main_sizer.Add(row_sizer, 0, wx.EXPAND) self.SetSizer(self.main_sizer)
Example #12
Source File: add_gpio.py From openplotter with GNU General Public License v2.0 | 5 votes |
def __init__(self, avalaible_gpio, edit): wx.Dialog.__init__(self, None, title=_('Add GPIO sensor'), size=(330, 265)) panel = wx.Panel(self) wx.StaticText(panel, label=_('Name'), pos=(10, 10)) self.name = wx.TextCtrl(panel, size=(310, 30), pos=(10, 35)) wx.StaticText(panel, label=_('allowed characters: 0-9, a-z, A-Z'), pos=(10, 70)) list_io = [_('input'), _('output')] wx.StaticText(panel, label=_('I/O'), pos=(10, 100)) self.io_select = wx.ComboBox(panel, choices=list_io, style=wx.CB_READONLY, size=(100, 32), pos=(10, 125)) self.io_select.Bind(wx.EVT_COMBOBOX, self.onSelectIO) wx.StaticText(panel, label=_('GPIO'), pos=(115, 100)) self.gpio_select = wx.ComboBox(panel, choices=avalaible_gpio, style=wx.CB_READONLY, size=(100, 32), pos=(115, 125)) list_pull = ['down', 'up'] wx.StaticText(panel, label=_('Pull'), pos=(220, 100)) self.pull_select = wx.ComboBox(panel, choices=list_pull, style=wx.CB_READONLY, size=(100, 32), pos=(220, 125)) if edit != 0: self.name.SetValue(edit[1]) if edit[2] == 'out': io = _('output') self.pull_select.Disable() else: io = _('input') self.pull_select.Enable() self.io_select.SetValue(io) self.gpio_select.SetValue(str(edit[3])) self.pull_select.SetValue(edit[4]) cancelBtn = wx.Button(panel, wx.ID_CANCEL, pos=(70, 180)) okBtn = wx.Button(panel, wx.ID_OK, pos=(180, 180))
Example #13
Source File: add_DS18B20.py From openplotter with GNU General Public License v2.0 | 5 votes |
def __init__(self, edit): if edit == 0: title = _('Add 1W temperature sensor') else: title = _('Edit 1W temperature sensor') wx.Dialog.__init__(self, None, title = title, size=(430, 250)) panel = wx.Panel(self) wx.StaticText(panel, label=_('Signal K key'), pos=(10, 10)) self.SKkey = wx.TextCtrl(panel, style=wx.CB_READONLY, size=(300, 30), pos=(10, 35)) self.edit_skkey = wx.Button(panel, label=_('Edit'), pos=(320, 32)) self.edit_skkey.Bind(wx.EVT_BUTTON, self.onEditSkkey) wx.StaticText(panel, label=_('Name'), pos=(10, 75)) self.name = wx.TextCtrl(panel, size=(150, 30), pos=(10, 100)) wx.StaticText(panel, label=_('allowed characters: 0-9, a-z, A-Z'), pos=(10, 135)) list_id = [] for sensor in W1ThermSensor.get_available_sensors(): list_id.append(sensor.id) wx.StaticText(panel, label=_('Sensor ID'), pos=(190, 75)) self.id_select = wx.ComboBox(panel, choices=list_id, style=wx.CB_READONLY, size=(150, 32), pos=(190, 100)) wx.StaticText(panel, label=_('Offset'), pos=(370, 75)) self.offset = wx.TextCtrl(panel, size=(50, 30), pos=(370, 100)) if edit != 0: self.name.SetValue(edit[1]) self.SKkey.SetValue(edit[2]) self.id_select.SetValue(edit[3]) self.offset.SetValue(edit[4]) cancelBtn = wx.Button(panel, wx.ID_CANCEL, pos=(115, 175)) okBtn = wx.Button(panel, wx.ID_OK, pos=(235, 175))
Example #14
Source File: cfgdlg.py From trelby with GNU General Public License v2.0 | 5 votes |
def addTypeCombo(self, name, descr, parent, sizer): sizer.Add(wx.StaticText(parent, -1, descr + ":"), 0, wx.ALIGN_CENTER_VERTICAL | wx.RIGHT, 10) combo = wx.ComboBox(parent, -1, style = wx.CB_READONLY) for t in config.getTIs(): combo.Append(t.name, t.lt) sizer.Add(combo) wx.EVT_COMBOBOX(self, combo.GetId(), self.OnMisc) setattr(self, name + "Combo", combo)
Example #15
Source File: cfgdlg.py From trelby with GNU General Public License v2.0 | 5 votes |
def __init__(self, parent, id, cfg): wx.Panel.__init__(self, parent, id) self.cfg = cfg vsizer = wx.BoxSizer(wx.VERTICAL) hsizer = wx.BoxSizer(wx.HORIZONTAL) hsizer.Add(wx.StaticText(self, -1, "Element:"), 0, wx.ALIGN_CENTER_VERTICAL | wx.RIGHT, 10) self.elementsCombo = wx.ComboBox(self, -1, style = wx.CB_READONLY) for t in config.getTIs(): self.elementsCombo.Append(t.name, t.lt) hsizer.Add(self.elementsCombo, 0) vsizer.Add(hsizer, 0, wx.EXPAND) vsizer.Add(wx.StaticLine(self, -1), 0, wx.EXPAND | wx.TOP | wx.BOTTOM, 10) gsizer = wx.FlexGridSizer(0, 2, 5, 0) self.addTypeCombo("newEnter", "Enter creates", self, gsizer) self.addTypeCombo("newTab", "Tab creates", self, gsizer) self.addTypeCombo("nextTab", "Tab switches to", self, gsizer) self.addTypeCombo("prevTab", "Shift+Tab switches to", self, gsizer) vsizer.Add(gsizer) util.finishWindow(self, vsizer, center = False) wx.EVT_COMBOBOX(self, self.elementsCombo.GetId(), self.OnElementCombo) self.elementsCombo.SetSelection(0) self.OnElementCombo()
Example #16
Source File: systray.py From p2ptv-pi with MIT License | 4 votes |
def __init__(self, bgapp, icons): self.bgapp = bgapp self.user_profile = self.bgapp.user_profile wx.Dialog.__init__(self, None, -1, self.bgapp.appname + ' ' + self.bgapp.utility.lang.get('user_profile'), size=(400, 200), style=wx.DEFAULT_DIALOG_STYLE | wx.RESIZE_BORDER) self.SetIcons(icons) grid = wx.GridBagSizer(hgap=5, vgap=8) grid.AddGrowableCol(1, 1) row = -1 row += 1 label = wx.StaticText(self, wx.ID_ANY, self.bgapp.utility.lang.get('gender')) self.ctrl_gender = wx.ComboBox(self, wx.ID_ANY, choices=[], style=wx.CB_DROPDOWN | wx.CB_READONLY) for id, name in self.user_profile.get_genders().iteritems(): name = self.bgapp.utility.lang.get(name) idx = self.ctrl_gender.Append(name, id) if id == self.user_profile.get_gender_id(): self.ctrl_gender.Select(idx) grid.Add(label, pos=(row, 0)) grid.Add(self.ctrl_gender, pos=(row, 1)) row += 1 label = wx.StaticText(self, wx.ID_ANY, self.bgapp.utility.lang.get('age')) self.ctrl_age = wx.ComboBox(self, wx.ID_ANY, choices=[], style=wx.CB_DROPDOWN | wx.CB_READONLY) ages = [] for id, name in self.user_profile.get_ages().iteritems(): if name.startswith('age_less'): priority = '' elif name.startswith('age_more'): priority = 'z' else: priority = name ages.append((priority, {'id': id, 'name': name})) for priority, age in sorted(ages): id = age['id'] name = age['name'] name = self.bgapp.utility.lang.get(name) idx = self.ctrl_age.Append(name, id) if id == self.user_profile.get_age_id(): self.ctrl_age.Select(idx) grid.Add(label, pos=(row, 0)) grid.Add(self.ctrl_age, pos=(row, 1)) btn_ok = wx.Button(self, wx.ID_OK, self.bgapp.utility.lang.get('ok')) btn_cancel = wx.Button(self, wx.ID_CANCEL, self.bgapp.utility.lang.get('cancel')) buttonbox = wx.BoxSizer(wx.HORIZONTAL) buttonbox.Add(btn_ok, 0, wx.ALL, 5) buttonbox.Add(btn_cancel, 0, wx.ALL, 5) mainbox = wx.BoxSizer(wx.VERTICAL) mainbox.Add(grid, 1, wx.EXPAND | wx.ALL, border=5) mainbox.Add(buttonbox, 0) self.SetSizerAndFit(mainbox) self.Show() self.Bind(wx.EVT_BUTTON, self.OnOK, btn_ok)
Example #17
Source File: autocompletiondlg.py From trelby with GNU General Public License v2.0 | 4 votes |
def __init__(self, parent, autoCompletion): wx.Dialog.__init__(self, parent, -1, "Auto-completion", style = wx.DEFAULT_DIALOG_STYLE | wx.RESIZE_BORDER) self.autoCompletion = autoCompletion vsizer = wx.BoxSizer(wx.VERTICAL) hsizer = wx.BoxSizer(wx.HORIZONTAL) hsizer.Add(wx.StaticText(self, -1, "Element:"), 0, wx.ALIGN_CENTER_VERTICAL | wx.RIGHT, 10) self.elementsCombo = wx.ComboBox(self, -1, style = wx.CB_READONLY) for t in autoCompletion.types.itervalues(): self.elementsCombo.Append(t.ti.name, t.ti.lt) wx.EVT_COMBOBOX(self, self.elementsCombo.GetId(), self.OnElementCombo) hsizer.Add(self.elementsCombo, 0) vsizer.Add(hsizer, 0, wx.EXPAND) vsizer.Add(wx.StaticLine(self, -1), 0, wx.EXPAND | wx.TOP | wx.BOTTOM, 10) self.enabledCb = wx.CheckBox(self, -1, "Auto-completion enabled") wx.EVT_CHECKBOX(self, self.enabledCb.GetId(), self.OnMisc) vsizer.Add(self.enabledCb, 0, wx.BOTTOM, 10) vsizer.Add(wx.StaticText(self, -1, "Default items:")) self.itemsEntry = wx.TextCtrl(self, -1, style = wx.TE_MULTILINE | wx.TE_DONTWRAP, size = (400, 200)) wx.EVT_TEXT(self, self.itemsEntry.GetId(), self.OnMisc) vsizer.Add(self.itemsEntry, 1, wx.EXPAND) hsizer = wx.BoxSizer(wx.HORIZONTAL) hsizer.Add((1, 1), 1) cancelBtn = gutil.createStockButton(self, "Cancel") hsizer.Add(cancelBtn, 0, wx.LEFT, 10) okBtn = gutil.createStockButton(self, "OK") hsizer.Add(okBtn, 0, wx.LEFT, 10) vsizer.Add(hsizer, 0, wx.EXPAND | wx.TOP, 10) util.finishWindow(self, vsizer) self.elementsCombo.SetSelection(0) self.OnElementCombo() wx.EVT_BUTTON(self, cancelBtn.GetId(), self.OnCancel) wx.EVT_BUTTON(self, okBtn.GetId(), self.OnOK)
Example #18
Source File: commondialogs.py From CANFestivino with GNU Lesser General Public License v2.1 | 4 votes |
def _init_ctrls(self, prnt): wx.Dialog.__init__(self, id=ID_USERTYPEDIALOG, name='UserTypeDialog', parent=prnt, pos=wx.Point(376, 223), size=wx.Size(444, 210), style=wx.DEFAULT_DIALOG_STYLE, title=_('Add User Type')) self.SetClientSize(wx.Size(444, 210)) self.staticText1 = wx.StaticText(id=ID_USERTYPEDIALOGSTATICTEXT1, label=_('Type:'), name='staticText1', parent=self, pos=wx.Point(0, 0), size=wx.Size(0, 17), style=0) self.Type = wx.ComboBox(choices=[], id=ID_USERTYPEDIALOGTYPE, name='Type', parent=self, pos=wx.Point(0, 0), size=wx.Size(0, 28), style=wx.CB_READONLY) self.Type.Bind(wx.wx.EVT_COMBOBOX, self.OnTypeChoice, id=ID_USERTYPEDIALOGTYPE) self.Spacer = wx.Panel(id=ID_MAPVARIABLEDIALOGSPACER, name='Spacer', parent=self, pos=wx.Point(0, 0), size=wx.Size(0, 0), style=wx.TAB_TRAVERSAL) self.staticBox1 = wx.StaticBox(id=ID_USERTYPEDIALOGSTATICBOX1, label=_('Values'), name='staticBox1', parent=self, pos=wx.Point(0, 0), size=wx.Size(0, 0), style=0) self.staticText2 = wx.StaticText(id=ID_USERTYPEDIALOGSTATICTEXT2, label=_('Minimum:'), name='staticText2', parent=self, pos=wx.Point(0, 0), size=wx.Size(80, 17), style=0) self.Min = wx.TextCtrl(id=ID_USERTYPEDIALOGMIN, name='Min', parent=self, pos=wx.Point(0, 0), size=wx.Size(0, 24), style=wx.TE_RIGHT, value='0') self.staticText3 = wx.StaticText(id=ID_USERTYPEDIALOGSTATICTEXT3, label=_('Maximum:'), name='staticText3', parent=self, pos=wx.Point(0, 0), size=wx.Size(80, 17), style=0) self.Max = wx.TextCtrl(id=ID_USERTYPEDIALOGMAX, name='Max', parent=self, pos=wx.Point(0, 0), size=wx.Size(0, 24), style=wx.TE_RIGHT, value='0') self.staticText4 = wx.StaticText(id=ID_USERTYPEDIALOGSTATICTEXT4, label=_('Length:'), name='staticText4', parent=self, pos=wx.Point(0, 0), size=wx.Size(80, 17), style=0) self.Length = wx.TextCtrl(id=ID_USERTYPEDIALOGLENGTH, name='Length', parent=self, pos=wx.Point(0, 0), size=wx.Size(0, 24), style=wx.TE_RIGHT, value='0') self.ButtonSizer = self.CreateButtonSizer(wx.OK|wx.CANCEL) self.Bind(wx.EVT_BUTTON, self.OnOK, id=self.ButtonSizer.GetAffirmativeButton().GetId()) self._init_sizers()
Example #19
Source File: commondialogs.py From CANFestivino with GNU Lesser General Public License v2.1 | 4 votes |
def _init_ctrls(self, prnt): wx.Dialog.__init__(self, id=ID_NODEINFOSDIALOG, name='NodeInfosDialog', parent=prnt, pos=wx.Point(376, 223), size=wx.Size(300, 380), style=wx.DEFAULT_DIALOG_STYLE, title=_('Node infos')) self.SetClientSize(wx.Size(300, 380)) self.staticText1 = wx.StaticText(id=ID_NODEINFOSDIALOGSTATICTEXT1, label=_('Name:'), name='staticText1', parent=self, pos=wx.Point(0, 0), size=wx.Size(0, 17), style=0) self.NodeName = wx.TextCtrl(id=ID_NODEINFOSDIALOGNAME, name='NodeName', parent=self, pos=wx.Point(0, 0), size=wx.Size(0, 24), style=0, value='') self.staticText2 = wx.StaticText(id=ID_NODEINFOSDIALOGSTATICTEXT2, label=_('Node ID:'), name='staticText2', parent=self, pos=wx.Point(0, 0), size=wx.Size(0, 17), style=0) self.NodeID = wx.TextCtrl(id=ID_NODEINFOSDIALOGNODEID, name='NodeID', parent=self, pos=wx.Point(0, 0), size=wx.Size(0, 25), style=wx.TE_RIGHT, value='') self.staticText3 = wx.StaticText(id=ID_NODEINFOSDIALOGSTATICTEXT3, label=_('Type:'), name='staticText3', parent=self, pos=wx.Point(0, 0), size=wx.Size(0, 17), style=0) self.Type = wx.ComboBox(choices=[], id=ID_NODEINFOSDIALOGTYPE, name='Type', parent=self, pos=wx.Point(0, 0), size=wx.Size(0, 28), style=wx.CB_READONLY) self.staticText4 = wx.StaticText(id=ID_NODEINFOSDIALOGSTATICTEXT4, label=_('Default String Size:'), name='staticText4', parent=self, pos=wx.Point(0, 0), size=wx.Size(0, 17), style=0) self.DefaultStringSize = wx.SpinCtrl(id=ID_NODEINFOSDIALOGDEFAULTSTRINGSIZE, name='DefaultStringSize', parent=self, pos=wx.Point(0, 0), size=wx.Size(0, 25), style=wx.TE_RIGHT) self.staticText5 = wx.StaticText(id=ID_NODEINFOSDIALOGSTATICTEXT5, label=_('Description:'), name='staticText5', parent=self, pos=wx.Point(0, 0), size=wx.Size(0, 17), style=0) self.Description = wx.TextCtrl(id=ID_NODEINFOSDIALOGDESCRIPTION, name='Description', parent=self, pos=wx.Point(0, 0), size=wx.Size(0, 24), style=0, value='') self.ButtonSizer = self.CreateButtonSizer(wx.OK|wx.CANCEL) self.Bind(wx.EVT_BUTTON, self.OnOK, id=self.ButtonSizer.GetAffirmativeButton().GetId()) self._init_sizers()
Example #20
Source File: add_topic.py From openplotter with GNU General Public License v2.0 | 4 votes |
def __init__(self, edit): if edit == 0: title = _('Add MQTT topic') else: title = _('Edit MQTT topic') wx.Dialog.__init__(self, None, title = title, size=(430, 280)) self.SetFont(wx.Font(10, wx.FONTFAMILY_DEFAULT, wx.FONTSTYLE_NORMAL, wx.FONTWEIGHT_NORMAL)) panel = wx.Panel(self) self.topiclabel = wx.StaticText(panel, label=_('Topic'), pos=(10, 10)) wx.StaticText(panel, label=_('allowed characters: 0-9, a-z, A-Z'), pos=(150, 10)) self.topic = wx.TextCtrl(panel, size=(410, 30), pos=(10, 30)) list_type = [_('General'), _('Signal K key input'), _('Signal K delta input')] wx.StaticText(panel, label=_('Type'), pos=(10, 70)) self.type = wx.ComboBox(panel, choices=list_type, style=wx.CB_READONLY, size=(200, 32), pos=(10, 90)) self.type.Bind(wx.EVT_COMBOBOX, self.onSelect_type) self.skkeylabel = wx.StaticText(panel, label=_('Signal K key'), pos=(10, 130)) self.skkey = wx.TextCtrl(panel, style=wx.CB_READONLY, size=(300, 30), pos=(10, 150)) self.edit_skkey = wx.Button(panel, label=_('Edit'), pos=(320, 147)) self.edit_skkey.Bind(wx.EVT_BUTTON, self.onEditSkkey) self.skkeylabel.Disable() self.skkey.Disable() self.edit_skkey.Disable() if edit != 0: self.topic.SetValue(edit[1][0]) if edit[1][1] == 0: self.type.SetValue(_('General')) elif edit[1][1] == 1: self.type.SetValue(_('Signal K key input')) self.skkey.SetValue(edit[1][2]) self.skkeylabel.Enable() self.skkey.Enable() self.edit_skkey.Enable() elif edit[1][1] == 2: self.type.SetValue(_('Signal K delta input')) cancelBtn = wx.Button(panel, wx.ID_CANCEL, pos=(120, 210)) okBtn = wx.Button(panel, wx.ID_OK, pos=(230, 210))
Example #21
Source File: PouDialog.py From OpenPLC_Editor with GNU General Public License v3.0 | 4 votes |
def __init__(self, parent, pou_type=None, type_readonly=False): wx.Dialog.__init__(self, id=-1, parent=parent, name='PouDialog', title=_('Create a new POU'), style=wx.DEFAULT_DIALOG_STYLE) if PouDialog.POU_TYPES_DICT is None: self.InitPouTypesDict() self.InitPouLanguagesDict() main_sizer = wx.FlexGridSizer(cols=1, hgap=0, rows=2, vgap=10) main_sizer.AddGrowableCol(0) main_sizer.AddGrowableRow(0) infos_sizer = wx.FlexGridSizer(cols=2, hgap=5, rows=3, vgap=15) infos_sizer.AddGrowableCol(1) main_sizer.AddSizer(infos_sizer, border=20, flag=wx.GROW | wx.TOP | wx.LEFT | wx.RIGHT) pouname_label = wx.StaticText(self, label=_('POU Name:')) infos_sizer.AddWindow(pouname_label, border=4, flag=wx.ALIGN_CENTER_VERTICAL | wx.TOP) self.PouName = wx.TextCtrl(self) infos_sizer.AddWindow(self.PouName, flag=wx.GROW) poutype_label = wx.StaticText(self, label=_('POU Type:')) infos_sizer.AddWindow(poutype_label, border=4, flag=wx.ALIGN_CENTER_VERTICAL | wx.TOP) self.PouType = wx.ComboBox(self, style=wx.CB_READONLY) self.Bind(wx.EVT_COMBOBOX, self.OnTypeChanged, self.PouType) infos_sizer.AddWindow(self.PouType, flag=wx.GROW) language_label = wx.StaticText(self, label=_('Language:')) infos_sizer.AddWindow(language_label, border=4, flag=wx.ALIGN_CENTER_VERTICAL | wx.TOP) self.Language = wx.ComboBox(self, style=wx.CB_READONLY) infos_sizer.AddWindow(self.Language, flag=wx.GROW) button_sizer = self.CreateButtonSizer(wx.OK | wx.CANCEL | wx.CENTRE) self.Bind(wx.EVT_BUTTON, self.OnOK, button_sizer.GetAffirmativeButton()) main_sizer.AddSizer(button_sizer, border=20, flag=wx.ALIGN_RIGHT | wx.BOTTOM | wx.LEFT | wx.RIGHT) self.SetSizer(main_sizer) for option in self.POU_TYPES: if not type_readonly or _(option) == _(pou_type): self.PouType.Append(_(option)) if pou_type is not None: self.PouType.SetStringSelection(_(pou_type)) self.RefreshLanguage() self.Fit() self.PouNames = [] self.PouElementNames = []
Example #22
Source File: PouActionDialog.py From OpenPLC_Editor with GNU General Public License v3.0 | 4 votes |
def __init__(self, parent): wx.Dialog.__init__(self, parent, title=_('Create a new action')) self.ACTION_LANGUAGES_DICT = dict([(_(language), language) for language in GetActionLanguages()]) main_sizer = wx.FlexGridSizer(cols=1, hgap=0, rows=2, vgap=10) main_sizer.AddGrowableCol(0) main_sizer.AddGrowableRow(0) infos_sizer = wx.FlexGridSizer(cols=2, hgap=5, rows=3, vgap=15) infos_sizer.AddGrowableCol(1) main_sizer.AddSizer(infos_sizer, border=20, flag=wx.GROW | wx.TOP | wx.LEFT | wx.RIGHT) actionname_label = wx.StaticText(self, label=_('Action Name:')) infos_sizer.AddWindow(actionname_label, border=4, flag=wx.ALIGN_CENTER_VERTICAL | wx.TOP) self.ActionName = wx.TextCtrl(self, size=wx.Size(180, -1)) infos_sizer.AddWindow(self.ActionName, flag=wx.GROW) language_label = wx.StaticText(self, label=_('Language:')) infos_sizer.AddWindow(language_label, border=4, flag=wx.ALIGN_CENTER_VERTICAL | wx.TOP) self.Language = wx.ComboBox(self, style=wx.CB_READONLY) infos_sizer.AddWindow(self.Language, flag=wx.GROW) button_sizer = self.CreateButtonSizer(wx.OK | wx.CANCEL | wx.CENTRE) self.Bind(wx.EVT_BUTTON, self.OnOK, button_sizer.GetAffirmativeButton()) main_sizer.AddSizer(button_sizer, border=20, flag=wx.ALIGN_RIGHT | wx.BOTTOM | wx.LEFT | wx.RIGHT) self.SetSizer(main_sizer) for option in GetActionLanguages(): self.Language.Append(_(option)) self.Fit() self.PouNames = [] self.PouElementNames = []
Example #23
Source File: ArrayTypeDialog.py From OpenPLC_Editor with GNU General Public License v3.0 | 4 votes |
def __init__(self, parent, datatypes, infos): wx.Dialog.__init__(self, parent, title=_('Edit array type properties')) main_sizer = wx.FlexGridSizer(cols=1, hgap=0, rows=3, vgap=10) main_sizer.AddGrowableCol(0) main_sizer.AddGrowableRow(1) top_sizer = wx.BoxSizer(wx.HORIZONTAL) main_sizer.AddSizer(top_sizer, border=20, flag=wx.GROW | wx.TOP | wx.LEFT | wx.RIGHT) basetype_label = wx.StaticText(self, label=_('Base Type:')) top_sizer.AddWindow(basetype_label, 1, flag=wx.ALIGN_BOTTOM) self.BaseType = wx.ComboBox(self, style=wx.CB_READONLY) top_sizer.AddWindow(self.BaseType, 1, flag=wx.GROW) self.Dimensions = CustomEditableListBox(self, label=_("Dimensions:"), style=(wx.gizmos.EL_ALLOW_NEW | wx.gizmos.EL_ALLOW_EDIT | wx.gizmos.EL_ALLOW_DELETE)) for func in ["_OnLabelEndEdit", "_OnAddButton", "_OnDelButton", "_OnUpButton", "_OnDownButton"]: setattr(self.Dimensions, func, self.OnDimensionsChanged) main_sizer.AddSizer(self.Dimensions, border=20, flag=wx.GROW | wx.LEFT | wx.RIGHT) button_sizer = self.CreateButtonSizer(wx.OK | wx.CANCEL | wx.CENTRE) self.Bind(wx.EVT_BUTTON, self.OnOK, button_sizer.GetAffirmativeButton()) main_sizer.AddSizer(button_sizer, border=20, flag=wx.ALIGN_RIGHT | wx.BOTTOM | wx.LEFT | wx.RIGHT) self.SetSizer(main_sizer) for datatype in datatypes: self.BaseType.Append(datatype) if isinstance(infos, tuple) and infos[0] == "array": self.BaseType.SetStringSelection(infos[1]) self.Dimensions.SetStrings(map("..".join, infos[2])) elif infos in datatypes: self.BaseType.SetStringSelection(infos) self.BaseType.SetFocus() self.Fit()
Example #24
Source File: FolderTree.py From OpenPLC_Editor with GNU General Public License v3.0 | 4 votes |
def __init__(self, parent, folder, filter=None, editable=True): wx.Panel.__init__(self, parent, style=wx.TAB_TRAVERSAL) main_sizer = wx.BoxSizer(wx.VERTICAL) self.Tree = wx.TreeCtrl(self, style=(wx.TR_HAS_BUTTONS | wx.TR_SINGLE | wx.SUNKEN_BORDER | wx.TR_HIDE_ROOT | wx.TR_LINES_AT_ROOT | wx.TR_EDIT_LABELS)) if wx.Platform == '__WXMSW__': self.Bind(wx.EVT_TREE_ITEM_ACTIVATED, self.OnTreeItemExpanded, self.Tree) self.Tree.Bind(wx.EVT_LEFT_DOWN, self.OnTreeLeftDown) else: self.Bind(wx.EVT_TREE_ITEM_EXPANDED, self.OnTreeItemExpanded, self.Tree) self.Bind(wx.EVT_TREE_ITEM_COLLAPSED, self.OnTreeItemCollapsed, self.Tree) self.Bind(wx.EVT_TREE_BEGIN_LABEL_EDIT, self.OnTreeBeginLabelEdit, self.Tree) self.Bind(wx.EVT_TREE_END_LABEL_EDIT, self.OnTreeEndLabelEdit, self.Tree) main_sizer.AddWindow(self.Tree, 1, flag=wx.GROW) if filter is not None: self.Filter = wx.ComboBox(self, style=wx.CB_READONLY) self.Bind(wx.EVT_COMBOBOX, self.OnFilterChanged, self.Filter) main_sizer.AddWindow(self.Filter, flag=wx.GROW) else: self.Filter = None self.SetSizer(main_sizer) self.Folder = folder self.Editable = editable self.TreeImageList = wx.ImageList(16, 16) self.TreeImageDict = {} for item_type, bitmap in [(DRIVE, "tree_drive"), (FOLDER, "tree_folder"), (FILE, "tree_file")]: self.TreeImageDict[item_type] = self.TreeImageList.Add(GetBitmap(bitmap)) self.Tree.SetImageList(self.TreeImageList) self.Filters = {} if self.Filter is not None: filter_parts = filter.split("|") for idx in xrange(0, len(filter_parts), 2): if filter_parts[idx + 1] == "*.*": self.Filters[filter_parts[idx]] = "" else: self.Filters[filter_parts[idx]] = filter_parts[idx + 1].replace("*", "") self.Filter.Append(filter_parts[idx]) if idx == 0: self.Filter.SetStringSelection(filter_parts[idx]) self.CurrentFilter = self.Filters[self.Filter.GetStringSelection()] else: self.CurrentFilter = ""