Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/mini_abi_gtk3_b.py
blob: a151ab74a847b716524d71f16dfe1a59c3be8f5a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
from gi.repository import Gtk
from gi.repository import Abi

win = Gtk.Window()
vbox = Gtk.VBox()
label = Gtk.Label(label='test')
vbox.add(label)
abi = Abi.Widget()
scrolled = Gtk.ScrolledWindow()
win.add(vbox)
vbox.add(scrolled)
scrolled.add_with_viewport(abi)
abi.show()
win.show_all()
win.connect("destroy", Gtk.main_quit)
Gtk.main()