HatariWii/python-ui/tests/pygtk-hello-world.py

19 lines
375 B
Python
Raw Normal View History

2018-05-25 20:45:09 +02:00
#!/usr/bin/env python
import gtk
class AppUI():
def __init__(self):
self.window = gtk.Window(gtk.WINDOW_TOPLEVEL)
self.window.connect("destroy", gtk.main_quit)
label = gtk.Label("Hello World!")
self.window.add(label)
def run(self):
self.window.show_all()
gtk.main()
app = AppUI()
app.run()