blob: ca5ba1933394281dfeb24c6215b232979a0ae68e (
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
67
68
69
70
71
72
73
74
75
|
// SPDX-License-Identifier: GPL-2.0-or-later
#ifndef SEEN_PAINTBUCKET_TOOLBAR_H
#define SEEN_PAINTBUCKET_TOOLBAR_H
/**
* @file
* Paintbucket aux toolbar
*/
/* Authors:
* MenTaLguY <mental@rydia.net>
* Lauris Kaplinski <lauris@kaplinski.com>
* bulia byak <buliabyak@users.sf.net>
* Frank Felfe <innerspace@iname.com>
* John Cliff <simarilius@yahoo.com>
* David Turner <novalis@gnu.org>
* Josh Andler <scislac@scislac.com>
* Jon A. Cruz <jon@joncruz.org>
* Maximilian Albert <maximilian.albert@gmail.com>
* Tavmjong Bah <tavmjong@free.fr>
* Abhishek Sharma
* Kris De Gussem <Kris.DeGussem@gmail.com>
*
* Copyright (C) 2004 David Turner
* Copyright (C) 2003 MenTaLguY
* Copyright (C) 1999-2011 authors
* Copyright (C) 2001-2002 Ximian, Inc.
*
* Released under GNU GPL v2+, read the file 'COPYING' for more information.
*/
#include "toolbar.h"
#include <gtkmm/adjustment.h>
class SPDesktop;
namespace Gtk {
class ComboBoxText;
}
namespace Inkscape {
namespace UI {
namespace Widget {
class UnitTracker;
}
namespace Toolbar {
class PaintbucketToolbar : public Toolbar {
private:
Gtk::ComboBoxText *_channels_cbt;
Gtk::ComboBoxText *_autogap_cbt;
Glib::RefPtr<Gtk::Adjustment> _threshold_adj;
Glib::RefPtr<Gtk::Adjustment> _offset_adj;
UI::Widget::UnitTracker *_tracker;
void channels_changed();
void threshold_changed();
void offset_changed();
void autogap_changed();
void defaults();
protected:
PaintbucketToolbar(SPDesktop *desktop);
public:
static GtkWidget * create(SPDesktop *desktop);
};
}
}
}
#endif /* !SEEN_PAINTBUCKET_TOOLBAR_H */
|