Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/tests/graphics/tabs.py
blob: fbc4bac2837ec6e3b876189828511db8c60a2f06 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#!/usr/bin/python
from gi.repository import Gtk

from sugar3.graphics.icon import Icon

import common
test = common.Test()
test.show()

box = Gtk.HBox()
test.pack_start(box, True, True, 0)
box.show()

# notebook without button

notebook = Gtk.Notebook()
box.pack_start(notebook, True, True, 0)
notebook.show()

for i in range(3):
    hbox = Gtk.HBox()
    notebook.append_page(hbox, Gtk.Label('Page %d' % (i + 1)))
    hbox.show()

# notebook with buttons 

notebook = Gtk.Notebook()
box.pack_start(notebook, True, True, 0)
notebook.show()

add_icon = Icon(icon_name='add')
button = Gtk.Button()
button.props.focus_on_click = False
button.add(add_icon)
add_icon.show()

notebook.set_action_widget(button, Gtk.PackType.END)
button.show()

for i in range(3):
    hbox = Gtk.HBox()
    notebook.append_page(hbox, Gtk.Label('Page %d' % (i + 1)))
    hbox.show()

if __name__ == '__main__':
    common.main(test)