mirror of
https://github.com/Afacanc38/gtk-examples-python.git
synced 2024-11-12 18:05:04 +03:00
37 lines
993 B
Python
37 lines
993 B
Python
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")
|
|
self.set_default_size(500, 300)
|
|
|
|
# WindowHandle
|
|
self.handle = Handy.WindowHandle()
|
|
self.add(self.handle)
|
|
|
|
# Box
|
|
self.winbox = Gtk.Box(spacing=6, orientation=Gtk.Orientation.VERTICAL)
|
|
self.handle.add(self.winbox)
|
|
|
|
# Headerbar
|
|
self.hb = Handy.HeaderBar()
|
|
self.hb.set_show_close_button(True)
|
|
self.hb.props.title = "HeaderBar Example"
|
|
self.winbox.pack_start(self.hb, False, True, 0)
|
|
|
|
# Label
|
|
self.lbl = Gtk.Label()
|
|
self.lbl.set_text("Hebele hübele")
|
|
self.lbl.set_justify(Gtk.Justification.CENTER)
|
|
self.winbox.pack_start(self.lbl, True, True, 0)
|
|
|
|
|
|
win = MyWindow()
|
|
win.connect("destroy", Gtk.main_quit)
|
|
win.show_all()
|
|
Gtk.main()
|