initial commit, skeleton window
This commit is contained in:
commit
b6ae011b38
11
Window.py
Normal file
11
Window.py
Normal file
@ -0,0 +1,11 @@
|
||||
|
||||
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()
|
Loading…
x
Reference in New Issue
Block a user