]> de.git.xonotic.org Git - xonotic/netradiant.git/blob - libs/gtkutil/toolbar.cpp
Merge branch 'fix-fast' into 'master'
[xonotic/netradiant.git] / libs / gtkutil / toolbar.cpp
1 /*
2    Copyright (C) 2001-2006, William Joseph.
3    All Rights Reserved.
4
5    This file is part of GtkRadiant.
6
7    GtkRadiant is free software; you can redistribute it and/or modify
8    it under the terms of the GNU General Public License as published by
9    the Free Software Foundation; either version 2 of the License, or
10    (at your option) any later version.
11
12    GtkRadiant is distributed in the hope that it will be useful,
13    but WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15    GNU General Public License for more details.
16
17    You should have received a copy of the GNU General Public License
18    along with GtkRadiant; if not, write to the Free Software
19    Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
20  */
21
22 #include "toolbar.h"
23
24 #include <uilib/uilib.h>
25 #include <gtk/gtk.h>
26
27 #include "generic/callback.h"
28
29 #include "accelerator.h"
30 #include "button.h"
31 #include "image.h"
32
33
34 void toolbar_append(ui::Toolbar toolbar, ui::ToolItem button, const char *description)
35 {
36     gtk_widget_show_all(button);
37     gtk_widget_set_tooltip_text(button, description);
38     toolbar.add(button);
39 }
40
41 ui::ToolButton
42 toolbar_append_button(ui::Toolbar toolbar, const char *description, const char *icon, const Callback<void()> &callback)
43 {
44     auto button = ui::ToolButton::from(gtk_tool_button_new(new_local_image(icon), nullptr));
45     button_connect_callback(button, callback);
46     toolbar_append(toolbar, button, description);
47     return button;
48 }
49
50 ui::ToggleToolButton toolbar_append_toggle_button(ui::Toolbar toolbar, const char *description, const char *icon,
51                                                   const Callback<void()> &callback)
52 {
53     auto button = ui::ToggleToolButton::from(gtk_toggle_tool_button_new());
54     toggle_button_connect_callback(button, callback);
55     gtk_tool_button_set_icon_widget(GTK_TOOL_BUTTON(button), new_local_image(icon));
56     gtk_tool_button_set_label(GTK_TOOL_BUTTON(button), description);
57     toolbar_append(toolbar, button, description);
58     return button;
59 }
60
61 ui::ToolButton
62 toolbar_append_button(ui::Toolbar toolbar, const char *description, const char *icon, const Command &command)
63 {
64     return toolbar_append_button(toolbar, description, icon, command.m_callback);
65 }
66
67 void toggle_button_set_active_callback(void *it, bool active)
68 {
69     auto button = ui::ToggleToolButton::from(it);
70     toggle_button_set_active_no_signal(button, active);
71 }
72
73 ui::ToggleToolButton
74 toolbar_append_toggle_button(ui::Toolbar toolbar, const char *description, const char *icon, const Toggle &toggle)
75 {
76     auto button = toolbar_append_toggle_button(toolbar, description, icon, toggle.m_command.m_callback);
77     toggle.m_exportCallback(PointerCaller<void, void(bool), toggle_button_set_active_callback>(button._handle));
78     return button;
79 }