Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/examples/toolbar.py
diff options
context:
space:
mode:
authorAleksey Lim <alsroot@member.fsf.org>2009-07-10 04:07:10 (GMT)
committer Aleksey Lim <alsroot@member.fsf.org>2009-07-10 04:07:10 (GMT)
commit2fc1cab92dc8b6dfe3345b4c0adb2bdd527294e0 (patch)
tree4b6feeefff7466832fa1eddbccde7b78a2da934d /examples/toolbar.py
parent71e6228ceba7a866d22be34607e14a1b4751fa47 (diff)
Add simple toolbars example
Diffstat (limited to 'examples/toolbar.py')
-rw-r--r--examples/toolbar.py32
1 files changed, 32 insertions, 0 deletions
diff --git a/examples/toolbar.py b/examples/toolbar.py
new file mode 100644
index 0000000..e4d24df
--- /dev/null
+++ b/examples/toolbar.py
@@ -0,0 +1,32 @@
+import gtk
+from sugar.graphics.toolbar import Toolbar, ToolbarButton
+
+window = gtk.Window()
+
+box = gtk.VBox()
+window.add(box)
+
+toolbar = Toolbar()
+box.pack_start(toolbar, False)
+
+tollbarbutton_1 = ToolbarButton(toolbar, gtk.Button('1'),
+ icon_name='computer-xo',
+ tooltip='foo')
+toolbar.top.insert(tollbarbutton_1, -1)
+
+toolbar.top.insert(gtk.SeparatorToolItem(), -1)
+
+tollbarbutton_2 = ToolbarButton(toolbar, gtk.Button('1'),
+ icon_name='button_cancel',
+ tooltip='foo')
+toolbar.top.insert(tollbarbutton_2, -1)
+
+toolbar.top.insert(gtk.SeparatorToolItem(), -1)
+
+tollbarbutton_3 = ToolbarButton(toolbar, gtk.Button('3'),
+ icon_name='activity-journal',
+ tooltip='foo')
+toolbar.top.insert(tollbarbutton_3, -1)
+
+window.show_all()
+gtk.main()