forked from buckyroberts/Source-Code-from-Tutorials
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path02_button.py
More file actions
25 lines (18 loc) · 790 Bytes
/
02_button.py
File metadata and controls
25 lines (18 loc) · 790 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
from gi.repository import Gtk
# inherit from Gtk.Window
class MainWindow(Gtk.Window):
# for the constructor we call the constructor of the super class (and set window title)
def __init__(self):
Gtk.Window.__init__(self, title="Hello World")
# create button, connect its "clicked" signal to a function, and add it to the window
self.button = Gtk.Button(label="Click Here")
self.button.connect("clicked", self.button_clicked)
self.add(self.button)
# make sure to pass in widget, wont work if you dont (more about widgets later)
def button_clicked(self, widget):
print("Gametime")
# create an instance of that class
window = MainWindow()
window.connect("delete-event", Gtk.main_quit)
window.show_all()
Gtk.main()