-
-
Notifications
You must be signed in to change notification settings - Fork 169
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
example app which uses client side header bar (yuk)
git-svn-id: https://xpra.org/svn/Xpra/trunk@11028 3bb7dfac-3a0b-4e04-842a-767bc560f471
- Loading branch information
Showing
1 changed file
with
41 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
#!/usr/bin/env python | ||
|
||
from gi.repository import Gtk, Gio | ||
|
||
class HeaderBarWindow(Gtk.Window): | ||
|
||
def __init__(self): | ||
Gtk.Window.__init__(self, title="Stack Demo") | ||
self.set_border_width(10) | ||
self.set_default_size(400, 200) | ||
|
||
hb = Gtk.HeaderBar() | ||
hb.set_show_close_button(True) | ||
hb.props.title = "HeaderBar example" | ||
self.set_titlebar(hb) | ||
|
||
button = Gtk.Button() | ||
icon = Gio.ThemedIcon(name="mail-send-receive-symbolic") | ||
image = Gtk.Image.new_from_gicon(icon, Gtk.IconSize.BUTTON) | ||
button.add(image) | ||
hb.pack_end(button) | ||
|
||
box = Gtk.Box(orientation=Gtk.Orientation.HORIZONTAL) | ||
Gtk.StyleContext.add_class(box.get_style_context(), "linked") | ||
|
||
button = Gtk.Button() | ||
button.add(Gtk.Arrow(Gtk.ArrowType.LEFT, Gtk.ShadowType.NONE)) | ||
box.add(button) | ||
|
||
button = Gtk.Button() | ||
button.add(Gtk.Arrow(Gtk.ArrowType.RIGHT, Gtk.ShadowType.NONE)) | ||
box.add(button) | ||
|
||
hb.pack_start(box) | ||
|
||
self.add(Gtk.TextView()) | ||
|
||
win = HeaderBarWindow() | ||
win.connect("delete-event", Gtk.main_quit) | ||
win.show_all() | ||
Gtk.main() |