gtk-examples-python/handy/2-headerbar.py

37 lines
950 B
Python
Raw Normal View History

2021-08-30 15:21:49 +03:00
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
2021-08-30 15:28:39 +03:00
self.winbox = Gtk.Box(spacing=6, orientation=Gtk.Orientation.VERTICAL)
2021-08-30 15:21:49 +03:00
self.handle.add(self.box)
# Headerbar
self.hb = Handy.HeaderBar()
self.hb.set_show_close_button(True)
self.hb.props.title = "HeaderBar Example"
2021-08-30 15:28:39 +03:00
self.winbox.pack_start(self.hb, False, True, 0)
2021-08-30 15:21:49 +03:00
# Label
self.lbl = Gtk.Label()
self.lbl.set_text("Hebele hübele")
self.lbl.set_justify(Gtk.Justification.CENTER)
2021-08-30 15:28:39 +03:00
self.winbox.pack_start(self.lbl, True, True, 0)
2021-08-30 15:21:49 +03:00
win = MyWindow()
win.connect("destroy", Gtk.main_quit)
win.show_all()
Gtk.main()