b6d449681d
- replaced Gtk.HBox/Gtk.VBox by GtkBox as seen in [1] and [2]
GtkHbox and GtkVBox are deprecated
- use delete-event instead of destroy event in GtkWindow
- replaced icon_size for pixel_size where used
it's also deprecated as seen in commit [3]
- use sugar_theme in all examples; set it manually not by just
importing common module
- fixed GtkBox.pack_start arguments
- flake/pep8 fixes
[1] https://developer.gnome.org/gtk3/stable/GtkHBox.html
[2] https://developer.gnome.org/gtk3/stable/GtkVBox.html
[3] 5802d67ee1
26 lines
533 B
Python
26 lines
533 B
Python
from gi.repository import Gtk
|
|
|
|
from sugar3.graphics.combobox import ComboBox
|
|
from common import set_theme
|
|
set_theme()
|
|
|
|
|
|
def __combo_changed_cb(combo):
|
|
print 'Combo changed to %r' % combo.get_value()
|
|
|
|
|
|
w = Gtk.Window()
|
|
w.connect("delete-event", Gtk.main_quit)
|
|
|
|
combo = ComboBox()
|
|
combo.append_item(True, 'one')
|
|
combo.append_item(2, 'two', 'go-next')
|
|
combo.append_item('3', 'three')
|
|
# This will make 'two' active (zero indexed)
|
|
combo.set_active(1)
|
|
combo.connect('changed', __combo_changed_cb)
|
|
w.add(combo)
|
|
|
|
w.show_all()
|
|
Gtk.main()
|