blob: 8f18cfe57b0dbcbd207b8b74ee2668e9a6373611 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
#ifndef SEEN_TOOLBAR_H
#define SEEN_TOOLBAR_H
#include <gtkmm/toolbar.h>
class SPDesktop;
namespace Inkscape {
namespace UI {
namespace Toolbar {
/**
* \brief An abstract definition for a toolbar within Inkscape
*
* \detail This is basically the same as a Gtk::Toolbar but contains a
* few convenience functions. All toolbars must define a "create"
* function that adds all the required tool-items and returns the
* toolbar as a GtkWidget
*/
class Toolbar : public Gtk::Toolbar {
protected:
SPDesktop *_desktop;
/**
* \brief A default constructor that just assigns the desktop
*/
Toolbar(SPDesktop *desktop)
: _desktop(desktop)
{}
void add_toolbutton_for_verb(unsigned int verb_code);
void add_separator();
protected:
static GtkWidget * create(SPDesktop *desktop);
};
}
}
}
#endif
/*
Local Variables:
mode:c++
c-file-style:"stroustrup"
c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
indent-tabs-mode:nil
fill-column:99
End:
*/
// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:fileencoding=utf-8:textwidth=99 :
|