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

class PyApp(Gtk.Window):

    def __init__(self):
        super(PyApp, self).__init__()
        self.set_title('Hello World!!')
        self.set_position(Gtk.WindowPosition.CENTER_ALWAYS)
        self.connect('destroy', Gtk.main_quit)
        self.set_size_request(250, 150)
        self.show()

PyApp()
Gtk.main()