blob: bbbd7f0ad13ff05b1985740a8c8a1819e35b3c9c (
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
// SPDX-License-Identifier: GPL-2.0-or-later
/** @file
* TODO: insert short description here
*//*
* Authors: see git history
*
* Copyright (C) 2018 Authors
* Released under GNU GPL v2+, read the file 'COPYING' for more information.
*/
#ifndef SEEN_TOOLBAR_H
#define SEEN_TOOLBAR_H
#include <gtkmm/toolbar.h>
class SPDesktop;
namespace Gtk {
class Label;
class ToggleToolButton;
}
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)
{}
Gtk::ToolItem * add_label(const Glib::ustring &label_text);
Gtk::ToggleToolButton * add_toggle_button(const Glib::ustring &label_text,
const Glib::ustring &tooltip_text);
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 :
|