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: add05d47805d28674bd730446157c98df4296eaa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
from gi.repository import Gtk

class PyApp(Gtk.Window):

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

PyApp()
Gtk.main()