blob: c073f561cbfeb927b1bd4dca23daad907ce76ad2 (
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
|
// SPDX-License-Identifier: GPL-2.0-or-later
#ifndef SEEN_SPIN_BUTTON_TOOL_ITEM_H
#define SEEN_SPIN_BUTTON_TOOL_ITEM_H
#include <gtkmm/toolitem.h>
namespace Gtk {
class Box;
class RadioButtonGroup;
class RadioMenuItem;
}
namespace Inkscape {
namespace UI {
namespace Widget {
class SpinButton;
/**
* \brief A spin-button with a label that can be added to a toolbar
*/
class SpinButtonToolItem : public Gtk::ToolItem
{
private:
typedef std::vector< std::pair<double, Glib::ustring> > NumericMenuData;
Glib::ustring _name; ///< A unique ID for the widget (NOT translatable)
SpinButton *_btn; ///< The spin-button within the widget
Glib::ustring _label_text; ///< A string to use in labels for the widget (translatable)
double _last_val; ///< The last value of the adjustment
bool _transfer_focus; ///< Whether or not to transfer focus
Gtk::Box *_hbox; ///< Horizontal box, to store widgets
Gtk::Widget *_label; ///< A text label to describe the setting
Gtk::Widget *_icon; ///< An icon to describe the setting
/** A widget that grabs focus when this one loses it */
Gtk::Widget * _focus_widget;
// Custom values and labels to add to the numeric popup-menu
NumericMenuData _custom_menu_data;
// Event handlers
bool on_btn_focus_in_event(GdkEventFocus *focus_event);
bool on_btn_focus_out_event(GdkEventFocus *focus_event);
bool on_btn_key_press_event(GdkEventKey *key_event);
bool on_btn_button_press_event(const GdkEventButton *button_event);
bool on_popup_menu();
void do_popup_menu(const GdkEventButton *button_event);
void defocus();
bool process_tab(int direction);
void on_numeric_menu_item_toggled(double value);
Gtk::Menu * create_numeric_menu();
Gtk::RadioMenuItem * create_numeric_menu_item(Gtk::RadioButtonGroup *group,
double value,
const Glib::ustring& label = "");
protected:
bool on_create_menu_proxy() override;
void on_grab_focus() override;
public:
SpinButtonToolItem(const Glib::ustring name,
const Glib::ustring& label_text,
Glib::RefPtr<Gtk::Adjustment>& adjustment,
double climb_rate = 0.1,
int digits = 3);
void set_all_tooltip_text(const Glib::ustring& text);
void set_focus_widget(Gtk::Widget *widget);
void grab_button_focus();
void set_custom_numeric_menu_data(std::vector<double>& values,
const std::vector<Glib::ustring>& labels = std::vector<Glib::ustring>());
Glib::RefPtr<Gtk::Adjustment> get_adjustment();
void set_icon(const Glib::ustring& icon_name);
};
} // namespace Widget
} // namespace UI
} // namespace Inkscape
#endif // SEEN_SPIN_BUTTON_TOOL_ITEM_H
/*
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 :
|