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
527 B
Python
26 lines
527 B
Python
from gi.repository import Gtk
|
|
from sugar3.graphics.alert import TimeoutAlert
|
|
from common import set_theme
|
|
set_theme()
|
|
|
|
|
|
def __start_response_cb(widget, data=None):
|
|
print 'Response: start download'
|
|
|
|
|
|
w = Gtk.Window()
|
|
w.connect("delete-event", Gtk.main_quit)
|
|
|
|
box = Gtk.Box(orientation=Gtk.Orientation.VERTICAL)
|
|
w.add(box)
|
|
|
|
alert = TimeoutAlert(9)
|
|
alert.props.title = 'Download started'
|
|
alert.props.msg = 'Sugar'
|
|
box.pack_start(alert, False, False, 0)
|
|
alert.connect('response', __start_response_cb)
|
|
|
|
w.show_all()
|
|
|
|
Gtk.main()
|