165
166
167
168
169
170
171
172
173
174
175
176
177
178
179 | # drop down list
elif opt["type"] in ("select", "choose", "options"):
cb = ComboBoxText(ComboBoxText.parse_options(opt["select"])) # custom uikit widget
# numeric
elif opt["type"] in ("int", "integer", "numeric"):
adj = gtk.Adjustment(0, 0, 5000, 1, 10, 0)
cb = gtk.SpinButton(adj, 1.0, 0)
# text field
else:
cb = gtk.Entry()
add_( "config_"+opt["name"], cb, description, color )
|
>
|
>
>
>
>
| 165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184 | # drop down list
elif opt["type"] in ("select", "choose", "options"):
cb = ComboBoxText(ComboBoxText.parse_options(opt["select"])) # custom uikit widget
# numeric
elif opt["type"] in ("int", "integer", "numeric"):
adj = gtk.Adjustment(0, 0, 5000, 1, 10, 0)
if ver == 2:
cb = gtk.SpinButton(adj, 1.0, 0)
else:
cb = gtk.SpinButton()
cb.set_adjustment(adj)
cb.set_digits(0)
# text field
else:
cb = gtk.Entry()
add_( "config_"+opt["name"], cb, description, color )
|