]> de.git.xonotic.org Git - xonotic/netradiant.git/blob - radiant/gtkmisc.cpp
allow undo “make detail/structural”, <3 @SpiKe, thanks @Garux, fix #76
[xonotic/netradiant.git] / radiant / gtkmisc.cpp
1 /*
2    Copyright (c) 2001, Loki software, inc.
3    All rights reserved.
4
5    Redistribution and use in source and binary forms, with or without modification,
6    are permitted provided that the following conditions are met:
7
8    Redistributions of source code must retain the above copyright notice, this list
9    of conditions and the following disclaimer.
10
11    Redistributions in binary form must reproduce the above copyright notice, this
12    list of conditions and the following disclaimer in the documentation and/or
13    other materials provided with the distribution.
14
15    Neither the name of Loki software nor the names of its contributors may be used
16    to endorse or promote products derived from this software without specific prior
17    written permission.
18
19    THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS IS''
20    AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21    IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
22    DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY
23    DIRECT,INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
24    (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
25    LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
26    ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27    (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
28    SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29  */
30
31 //
32 // Small functions to help with GTK
33 //
34
35 #include <gtk/gtk.h>
36 #include "gtkmisc.h"
37
38 #include "uilib/uilib.h"
39
40 #include "math/vector.h"
41 #include "os/path.h"
42
43 #include "gtkutil/dialog.h"
44 #include "gtkutil/filechooser.h"
45 #include "gtkutil/menu.h"
46 #include "gtkutil/toolbar.h"
47 #include "commands.h"
48
49
50 // =============================================================================
51 // Misc stuff
52
53 void command_connect_accelerator(const char *name)
54 {
55     const Command &command = GlobalCommands_find(name);
56     GlobalShortcuts_register(name, 1);
57     global_accel_group_connect(command.m_accelerator, command.m_callback);
58 }
59
60 void command_disconnect_accelerator(const char *name)
61 {
62     const Command &command = GlobalCommands_find(name);
63     global_accel_group_disconnect(command.m_accelerator, command.m_callback);
64 }
65
66 void toggle_add_accelerator(const char *name)
67 {
68     const Toggle &toggle = GlobalToggles_find(name);
69     GlobalShortcuts_register(name, 2);
70     global_accel_group_connect(toggle.m_command.m_accelerator, toggle.m_command.m_callback);
71 }
72
73 void toggle_remove_accelerator(const char *name)
74 {
75     const Toggle &toggle = GlobalToggles_find(name);
76     global_accel_group_disconnect(toggle.m_command.m_accelerator, toggle.m_command.m_callback);
77 }
78
79 ui::CheckMenuItem create_check_menu_item_with_mnemonic(ui::Menu menu, const char *mnemonic, const char *commandName)
80 {
81     GlobalShortcuts_register(commandName, 2);
82     const Toggle &toggle = GlobalToggles_find(commandName);
83     global_accel_group_connect(toggle.m_command.m_accelerator, toggle.m_command.m_callback);
84     return create_check_menu_item_with_mnemonic(menu, mnemonic, toggle);
85 }
86
87 ui::MenuItem create_menu_item_with_mnemonic(ui::Menu menu, const char *mnemonic, const char *commandName)
88 {
89     GlobalShortcuts_register(commandName, 1);
90     const Command &command = GlobalCommands_find(commandName);
91     global_accel_group_connect(command.m_accelerator, command.m_callback);
92     return create_menu_item_with_mnemonic(menu, mnemonic, command);
93 }
94
95 ui::ToolButton
96 toolbar_append_button(ui::Toolbar toolbar, const char *description, const char *icon, const char *commandName)
97 {
98     return toolbar_append_button(toolbar, description, icon, GlobalCommands_find(commandName));
99 }
100
101 ui::ToggleToolButton
102 toolbar_append_toggle_button(ui::Toolbar toolbar, const char *description, const char *icon, const char *commandName)
103 {
104     return toolbar_append_toggle_button(toolbar, description, icon, GlobalToggles_find(commandName));
105 }
106
107 // =============================================================================
108 // File dialog
109
110 bool color_dialog(ui::Window parent, Vector3 &color, const char *title)
111 {
112     GdkColor clr = {0, guint16(color[0] * 65535), guint16(color[1] * 65535), guint16(color[2] * 65535)};
113     ModalDialog dialog;
114
115     auto dlg = ui::Window::from(gtk_color_selection_dialog_new(title));
116     gtk_color_selection_set_current_color(
117             GTK_COLOR_SELECTION(gtk_color_selection_dialog_get_color_selection(GTK_COLOR_SELECTION_DIALOG(dlg))), &clr);
118     dlg.connect("delete_event", G_CALLBACK(dialog_delete_callback), &dialog);
119     GtkWidget *ok_button, *cancel_button;
120     g_object_get(G_OBJECT(dlg), "ok-button", &ok_button, "cancel-button", &cancel_button, nullptr);
121     ui::Widget::from(ok_button).connect("clicked", G_CALLBACK(dialog_button_ok), &dialog);
122     ui::Widget::from(cancel_button).connect("clicked", G_CALLBACK(dialog_button_cancel), &dialog);
123
124     if (parent) {
125         gtk_window_set_transient_for(dlg, parent);
126     }
127
128     bool ok = modal_dialog_show(dlg, dialog) == eIDOK;
129     if (ok) {
130         gtk_color_selection_get_current_color(
131                 GTK_COLOR_SELECTION(gtk_color_selection_dialog_get_color_selection(GTK_COLOR_SELECTION_DIALOG(dlg))),
132                 &clr);
133         color[0] = clr.red / 65535.0f;
134         color[1] = clr.green / 65535.0f;
135         color[2] = clr.blue / 65535.0f;
136     }
137
138     dlg.destroy();
139
140     return ok;
141 }
142
143 void button_clicked_entry_browse_file(ui::Widget widget, ui::Entry entry)
144 {
145     const char *filename = widget.file_dialog(TRUE, "Choose File", gtk_entry_get_text(entry));
146
147     if (filename != 0) {
148         entry.text(filename);
149     }
150 }
151
152 void button_clicked_entry_browse_directory(ui::Widget widget, ui::Entry entry)
153 {
154     const char *text = gtk_entry_get_text(entry);
155     char *dir = dir_dialog(widget.window(), "Choose Directory", path_is_absolute(text) ? text : "");
156
157     if (dir != 0) {
158         gchar *converted = g_filename_to_utf8(dir, -1, 0, 0, 0);
159         entry.text(converted);
160         g_free(dir);
161         g_free(converted);
162     }
163 }