Lines Matching refs:Text

46         for Lbl, Text, Row, Col, Len, Min, Max, Id, Lst, Fct, Enabled, HelpText in ctrls:
49 if Text[0:3] == "btn":
50 self.ctrls[Text] = wx.Button(panel, Id, Lbl, wx.Point(Col, Row), size=Len)
52 … self.ctrls[Text].Bind(wx.EVT_BUTTON, getattr(callbackClass, Fct), self.ctrls[Text], id=Id)
54 self.ctrls[Text].SetDefault()
57 if Text[0:3] == "txt":
58 … self.ctrls[Text] = wx.TextCtrl(panel, Id, "", wx.Point(Col, Row + LBL_OFFSET +3), wx.Size(Len,-1))
59 elif Text[0:4] == "spn1":
60 …self.ctrls[Text] = JetSpinOneBased(panel, Id, "", wx.Point(Col, Row + LBL_OFFSET), wx.Size(Len,-1)…
61 elif Text[0:3] == "spn":
62 …self.ctrls[Text] = JetSpin(panel, Id, "", wx.Point(Col, Row + LBL_OFFSET), wx.Size(Len,-1), min=Mi…
63 elif Text[0:3] == "cmb":
64 …self.ctrls[Text] = wx.ComboBox(panel, Id, "", wx.Point(Col, Row + LBL_OFFSET), wx.Size(Len,-1), Ls…
65 self.ctrls[Text].SetValue(Lst[0])
67 … self.ctrls[Text].Bind(wx.EVT_COMBOBOX, getattr(callbackClass, Fct), self.ctrls[Text])
68 elif Text[0:2] == "tm":
69 … self.ctrls[Text] = TimeCtrl(panel, pos=(Col, Row + LBL_OFFSET), ctlName=Text)
70 elif Text[0:7] == "filecmb":
71 …self.ctrls[Text] = JetFileCombo(panel, pos=(Col, Row + LBL_OFFSET), size=wx.Size(Len,-1), title=Lb…
72 elif Text[0:7] == "filetxt":
73 …self.ctrls[Text] = JetFileText(panel, pos=(Col, Row + LBL_OFFSET), size=wx.Size(Len,-1), title=Lbl…
74 elif Text[0:2] == "fr":
75 … self.ctrls[Text] = wx.StaticBox(parent=panel, id=wx.ID_ANY, label=Lbl, pos=(Row, Col), size=Len)
77 elif Text[0:3] == "chk":
78 … self.ctrls[Text] = JetCheckBox(panel, Id, label=Lbl, pos=(Col, Row), size=wx.Size(Len,-1))
81 … self.ctrls[Text].Bind(wx.EVT_CHECKBOX , getattr(callbackClass, Fct), self.ctrls[Text])
82 elif Text[0:6] == "rdobox":
83 …self.ctrls[Text] = wx.RadioBox(panel, Id, label=Lbl, pos=(Col, Row), size=Len, choices=Lst, majorD…
86 … self.ctrls[Text].Bind(wx.EVT_RADIOBOX , getattr(callbackClass, Fct), self.ctrls[Text])
87 elif Text[0:3] == "opt":
88 … self.ctrls[Text] = JetRadioButton(panel, Id, label=Lbl, pos=(Col, Row), size=wx.Size(Len,-1))
90 self.ctrls[Text].SetValue(Lst)
92 … self.ctrls[Text].Bind(wx.EVT_RADIOBUTTON , getattr(callbackClass, Fct), self.ctrls[Text])
93 elif Text[0:3] == "lst":
94 self.ctrls[Text] = wx.ListBox(panel, Id, pos=(Col, Row), size=Len)
96 elif Text[0:4] == "grd2":
97 …self.ctrls[Text] = JetTrackCtrl(panel, Id, pos=(Col, Row + LBL_OFFSET), size=Len, style=wx.LC_REPO…
99 elif Text[0:3] == "grd":
100 self.ctrls[Text] = JetListCtrl(panel, Id, pos=(Col, Row), size=Len)
102 elif Text[0:5] == "graph":
103 self.ctrls[Text] = SegmentGraph(panel, pos=(Col, Row), size=Len)
105 elif Text[0:3] == "hlp":
106 self.ctrls[Text] = wx.ContextHelpButton(panel, Id, pos=(Col, Row))
108 elif Text[0:3] == "lbl":
109 … self.ctrls[Text] = wx.StaticText(panel, Id, Lbl, wx.Point(Col, Row), size=wx.Size(Len[0],Len[1]))
111 elif Text[0:3] == "box":
112 … self.ctrls[Text] = wx.StaticBox(panel, wx.ID_ANY, Lbl, pos=(Col, Row), size=Len)
118 self.ctrls[Text].Enable(False)
122 self.ctrls[Text].SetHelpText(helpText)