Create 1-box.py

This commit is contained in:
Alperen İsa 2021-08-30 15:04:02 +03:00 committed by GitHub
parent 60e5c08355
commit e0f53e9470
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 56 additions and 0 deletions

56
handy/1-box.py Normal file
View File

@ -0,0 +1,56 @@
import gi, os
gi.require_version("Gtk", "3.0")
gi.require_version("Handy", "1")
from gi.repository import Gtk, Handy
Handy.init()
class MyWindow(Handy.Window):
def __init__(self):
super().__init__(title="Hello World")
# WindowHandle
self.handle = Handy.WindowHandle()
self.add(self.handle)
# Box
self.box = Gtk.Box(spacing=6)
self.handle.add(self.box)
# Button 1
self.button1 = Gtk.Button(label="Merhaba")
self.button1.connect("clicked", self.on_button1_clicked)
self.box.pack_start(self.button1, True, True, 0)
# Button 2
self.button2 = Gtk.Button(label="Güle güle")
self.button2.connect("clicked", self.on_button2_clicked)
self.box.pack_start(self.button2, True, True, 0)
# Button 3
self.button3 = Gtk.Button(label="Hebele")
self.button3.connect("clicked", self.on_button3_clicked)
self.box.pack_start(self.button3, True, True, 0)
# Button 4
self.button4 = Gtk.Button(label="Temizle")
self.button4.connect("clicked", self.on_button4_clicked)
self.box.pack_start(self.button4, True, True, 0)
def on_button1_clicked(self, widget):
print("Merhaba")
def on_button2_clicked(self, widget):
print("Güle güle")
def on_button3_clicked(self, widget):
print("Hübele")
def on_button4_clicked(self, widget):
os.system("clear")
win = MyWindow()
win.connect("destroy", Gtk.main_quit)
win.show_all()
Gtk.main()