From 368a0a4567b63df311a229764407e650918de681 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alperen=20=C4=B0sa?= <66299502+Afacanc38@users.noreply.github.com> Date: Mon, 30 Aug 2021 15:02:06 +0300 Subject: [PATCH] Create 1-example.py --- 1-example.py | 56 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 56 insertions(+) create mode 100644 1-example.py diff --git a/1-example.py b/1-example.py new file mode 100644 index 0000000..614a524 --- /dev/null +++ b/1-example.py @@ -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()