jpcad/Window.py
2011-03-22 13:08:31 -04:00

12 lines
226 B
Python

import gtk
class Window:
def __init__(self):
self.window = gtk.Window(gtk.WINDOW_TOPLEVEL)
self.window.add(gtk.Label('Hello World'))
self.window.show_all()
def main(self):
gtk.main()