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
47 lines
1.2 KiB
Python
47 lines
1.2 KiB
Python
from gi.repository import Gtk
|
|
|
|
from sugar3.graphics.toolbarbox import ToolbarBox
|
|
from sugar3.graphics.colorbutton import ColorToolButton
|
|
from sugar3.graphics.radiotoolbutton import RadioToolButton
|
|
from sugar3.graphics.toggletoolbutton import ToggleToolButton
|
|
|
|
import common
|
|
|
|
|
|
test = common.Test()
|
|
test.show()
|
|
|
|
box = Gtk.Box(orientation=Gtk.Orientation.VERTICAL)
|
|
test.pack_start(box, True, True, 0)
|
|
box.show()
|
|
|
|
toolbar_box = ToolbarBox()
|
|
box.pack_start(toolbar_box, False, False, 0)
|
|
toolbar_box.show()
|
|
|
|
radial_button = RadioToolButton(icon_name='view-radial')
|
|
toolbar_box.toolbar.insert(radial_button, -1)
|
|
radial_button.show()
|
|
|
|
list_button = RadioToolButton(icon_name='view-list')
|
|
list_button.props.group = radial_button
|
|
toolbar_box.toolbar.insert(list_button, -1)
|
|
list_button.show()
|
|
|
|
separator = Gtk.SeparatorToolItem()
|
|
toolbar_box.toolbar.insert(separator, -1)
|
|
separator.show()
|
|
|
|
color_button = ColorToolButton()
|
|
toolbar_box.toolbar.insert(color_button, -1)
|
|
color_button.show()
|
|
|
|
favorite_button = ToggleToolButton('emblem-favorite')
|
|
favorite_button.set_tooltip('Favorite')
|
|
toolbar_box.toolbar.insert(favorite_button, -1)
|
|
favorite_button.show()
|
|
|
|
|
|
if __name__ == '__main__':
|
|
common.main(test)
|