]> de.git.xonotic.org Git - xonotic/netradiant.git/blob - libs/gtkutil/toolbar.cpp
Merge branch 'TimePath/gtk++' 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         gtk_widget_show_all(GTK_WIDGET(button));
36         gtk_widget_set_tooltip_text(GTK_WIDGET(button), description);
37         toolbar.add(button);
38 }
39
40 ui::ToolButton toolbar_append_button( ui::Toolbar toolbar, const char* description, const char* icon, const Callback& callback ){
41         auto button = ui::ToolButton(GTK_TOOL_BUTTON(gtk_tool_button_new(GTK_WIDGET(new_local_image(icon)), nullptr)));
42         button_connect_callback(button, callback);
43         toolbar_append(toolbar, button, description);
44         return button;
45 }
46
47 ui::ToggleToolButton toolbar_append_toggle_button( ui::Toolbar toolbar, const char* description, const char* icon, const Callback& callback ){
48         auto button = ui::ToggleToolButton(GTK_TOGGLE_TOOL_BUTTON(gtk_toggle_tool_button_new()));
49         toggle_button_connect_callback(button, callback);
50         gtk_tool_button_set_icon_widget(GTK_TOOL_BUTTON(button), GTK_WIDGET(new_local_image(icon)));
51         gtk_tool_button_set_label(GTK_TOOL_BUTTON(button), description);
52         toolbar_append(toolbar, button, description);
53         return button;
54 }
55
56 ui::ToolButton toolbar_append_button( ui::Toolbar toolbar, const char* description, const char* icon, const Command& command ){
57         return toolbar_append_button( toolbar, description, icon, command.m_callback );
58 }
59
60 void toggle_button_set_active_callback( GtkToggleToolButton& button, bool active ){
61         toggle_button_set_active_no_signal( ui::ToggleToolButton(&button), active );
62 }
63 using ToggleButtonSetActiveCaller = ReferenceCaller1<GtkToggleToolButton, bool, toggle_button_set_active_callback>;
64
65 ui::ToggleToolButton toolbar_append_toggle_button( ui::Toolbar toolbar, const char* description, const char* icon, const Toggle& toggle ){
66         auto button = toolbar_append_toggle_button( toolbar, description, icon, toggle.m_command.m_callback );
67         GtkToggleToolButton *button_ = button;
68         toggle.m_exportCallback( ToggleButtonSetActiveCaller( *button_ ) );
69         return button;
70 }