Lumiera 0.pre.04
»edit your freedom«
Loading...
Searching...
No Matches
button-bar.cpp
Go to the documentation of this file.
1/*
2 ButtonBar - button bar widget
3
4 Copyright (C)
5 2009, Joel Holdsworth <joel@airwebreathe.org.uk>
6 2012, Michael R. Fisher <mfisher31@gmail.com>
7
8  **Lumiera** is free software; you can redistribute it and/or modify it
9  under the terms of the GNU General Public License as published by the
10  Free Software Foundation; either version 2 of the License, or (at your
11  option) any later version. See the file COPYING for further details.
12
13* *****************************************************************/
14
15
22#include "include/logging.h"
23
24
25namespace stage {
26namespace widget {
27
29 {
30 set_orientation (Gtk::ORIENTATION_HORIZONTAL);
31 set_has_window (false);
32 }
33
34
35 void
36 ButtonBar::append (Widget& widget)
37 {
38 pack_start(widget, Gtk::PACK_SHRINK);
39 }
40
41
42}}// stage::widget
A toolbar widget for use in dialogs.
void append(Widget &)
Append a widget to the button bar.
This header is for including and configuring NoBug.
Lumiera GTK UI implementation root.
Definition guifacade.cpp:37