Lumiera
0.pre.03
»edit your freedom«
Lumiera API Documentation
Intro
Overview
Modules
+
Classes
Class List
Class Index
+
Class Members
+
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
+
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
+
Variables
_
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
r
s
t
u
v
w
x
+
Typedefs
a
b
d
e
f
h
i
l
o
p
r
s
t
v
y
Enumerations
Enumerator
+
Related Functions
_
b
c
e
f
h
i
k
m
n
o
p
q
s
t
u
+
Namespaces
Namespace List
+
Namespace Members
+
All
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
z
+
Functions
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
z
+
Variables
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
s
t
u
w
z
Typedefs
Enumerations
Enumerator
+
Files
File List
+
File Members
+
All
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
+
Functions
b
c
d
e
f
h
i
j
l
m
n
o
p
q
r
s
t
u
Variables
Typedefs
Enumerations
Enumerator
+
Macros
a
c
d
e
g
i
k
l
m
n
o
p
r
s
t
v
Related Pages
Examples
▼
Lumiera
►
Lumiera API Documentation
Intro
Overview
►
Modules
►
Classes
►
Namespaces
▼
Files
►
File List
►
File Members
Test List
Todo List
Deprecated List
►
Examples
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Modules
Pages
button-bar.hpp
Go to the documentation of this file.
1
/*
2
BUTTON-BAR.hpp - button bar widget
3
4
Copyright (C)
5
2009, Joel Holdsworth <joel@airwebreathe.org.uk>
6
7
**Lumiera** is free software; you can redistribute it and/or modify it
8
under the terms of the GNU General Public License as published by the
9
Free Software Foundation; either version 2 of the License, or (at your
10
option) any later version. See the file COPYING for further details.
11
12
*/
13
14
20
#ifndef STAGE_WIDGET_BUTTON_BAR_H
21
#define STAGE_WIDGET_BUTTON_BAR_H
22
23
#include "
stage/widget/mini-button.hpp
"
24
25
namespace
stage
{
26
namespace
widget {
27
31
class
ButtonBar
32
:
public
Gtk::Box
33
{
34
public
:
35
ButtonBar
();
36
38
void
append
(Widget&);
39
44
template
<
class
T>
45
void
46
append
(
MiniWrapper<T>
& button, sigc::slot<void>
const
& clicked_slot)
47
{
48
button.signal_clicked().connect (clicked_slot);
49
append
(button);
50
}
51
};
52
53
54
}}
// stage::widget
55
#endif
/*STAGE_WIDGET_BUTTON_BAR_H*/
stage::widget::MiniWrapper
A wrapper for ToolButton-like Button widgets.
Definition:
mini-button.hpp:36
stage::widget::ButtonBar::append
void append(MiniWrapper< T > &button, sigc::slot< void > const &clicked_slot)
Append a button to the button bar, and connect a click event.
Definition:
button-bar.hpp:46
stage
Lumiera GTK UI implementation root.
Definition:
guifacade.cpp:37
stage::widget::ButtonBar
A modified toolbar widget for use in dialogs.
Definition:
button-bar.hpp:31
mini-button.hpp
Adapter to wrap button widgets intended to serve as tool buttons.
stage::widget::ButtonBar::append
void append(Widget &)
Append a widget to the button bar.
Definition:
button-bar.cpp:35
stage
widget
button-bar.hpp
Generated on Fri Dec 13 2024 05:05:32 for Lumiera by
1.8.13