34 lines
775 B
Python
34 lines
775 B
Python
|
from gi.repository import Gtk
|
||
|
|
||
|
from sugar3.graphics.toolbarbox import ToolbarBox
|
||
|
from sugar3.graphics.toggletoolbutton import ToggleToolButton
|
||
|
|
||
|
import common
|
||
|
|
||
|
|
||
|
test = common.Test()
|
||
|
test.show()
|
||
|
|
||
|
vbox = Gtk.VBox()
|
||
|
test.pack_start(vbox, True, True, 0)
|
||
|
vbox.show()
|
||
|
|
||
|
toolbar_box = ToolbarBox()
|
||
|
vbox.pack_start(toolbar_box, False, False, 0)
|
||
|
toolbar_box.show()
|
||
|
|
||
|
favorite_button = ToggleToolButton('emblem-favorite')
|
||
|
favorite_button.set_tooltip('Favorite')
|
||
|
toolbar_box.toolbar.insert(favorite_button, -1)
|
||
|
favorite_button.show()
|
||
|
|
||
|
favorite_button2 = ToggleToolButton('emblem-favorite')
|
||
|
favorite_button2.set_tooltip('Favorite')
|
||
|
toolbar_box.toolbar.insert(favorite_button2, -1)
|
||
|
favorite_button2.set_active(True)
|
||
|
favorite_button2.show()
|
||
|
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
common.main(test)
|