]> de.git.xonotic.org Git - xonotic/netradiant.git/blob - contrib/prtview/LoadPortalFileDialog.cpp
reformat code! now the code is only ugly on the *inside*
[xonotic/netradiant.git] / contrib / prtview / LoadPortalFileDialog.cpp
1 /*
2    PrtView plugin for GtkRadiant
3    Copyright (C) 2001 Geoffrey Dewan, Loki software and qeradiant.com
4
5    This library is free software; you can redistribute it and/or
6    modify it under the terms of the GNU Lesser General Public
7    License as published by the Free Software Foundation; either
8    version 2.1 of the License, or (at your option) any later version.
9
10    This library is distributed in the hope that it will be useful,
11    but WITHOUT ANY WARRANTY; without even the implied warranty of
12    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13    Lesser General Public License for more details.
14
15    You should have received a copy of the GNU Lesser General Public
16    License along with this library; if not, write to the Free Software
17    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
18  */
19
20 // LoadPortalFileDialog.cpp : implementation file
21 //
22
23 #include "LoadPortalFileDialog.h"
24
25 #include <gtk/gtk.h>
26 #include <gtkutil/pointer.h>
27 #include "stream/stringstream.h"
28 #include "convert.h"
29 #include "gtkutil/pointer.h"
30
31 #include "qerplugin.h"
32
33 #include "prtview.h"
34 #include "portals.h"
35
36 static void dialog_button_callback(ui::Widget widget, gpointer data)
37 {
38     int *loop, *ret;
39
40     auto parent = widget.window();
41     loop = (int *) g_object_get_data(G_OBJECT(parent), "loop");
42     ret = (int *) g_object_get_data(G_OBJECT(parent), "ret");
43
44     *loop = 0;
45     *ret = gpointer_to_int(data);
46 }
47
48 static gint dialog_delete_callback(ui::Widget widget, GdkEvent *event, gpointer data)
49 {
50     widget.hide();
51     int *loop = (int *) g_object_get_data(G_OBJECT(widget), "loop");
52     *loop = 0;
53     return TRUE;
54 }
55
56 static void change_clicked(ui::Widget widget, gpointer data)
57 {
58     char *filename = NULL;
59
60     auto file_sel = ui::Widget::from(
61             gtk_file_chooser_dialog_new("Locate portal (.prt) file", nullptr, GTK_FILE_CHOOSER_ACTION_OPEN,
62                                         GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL,
63                                         GTK_STOCK_OPEN, GTK_RESPONSE_ACCEPT,
64                                         nullptr));
65
66     gtk_file_chooser_set_filename(GTK_FILE_CHOOSER(file_sel), portals.fn);
67
68     if (gtk_dialog_run(GTK_DIALOG (file_sel)) == GTK_RESPONSE_ACCEPT) {
69         filename = gtk_file_chooser_get_filename(GTK_FILE_CHOOSER (file_sel));
70     }
71     ui::Widget(file_sel).destroy();
72
73     if (filename != NULL) {
74         strcpy(portals.fn, filename);
75         gtk_entry_set_text(GTK_ENTRY(data), filename);
76         g_free(filename);
77     }
78 }
79
80 int DoLoadPortalFileDialog()
81 {
82     int loop = 1, ret = IDCANCEL;
83
84     auto dlg = ui::Window(ui::window_type::TOP);
85     gtk_window_set_title(dlg, "Load .prt");
86     dlg.connect("delete_event",
87                 G_CALLBACK(dialog_delete_callback), NULL);
88     dlg.connect("destroy",
89                 G_CALLBACK(gtk_widget_destroy), NULL);
90     g_object_set_data(G_OBJECT(dlg), "loop", &loop);
91     g_object_set_data(G_OBJECT(dlg), "ret", &ret);
92
93     auto vbox = ui::VBox(FALSE, 5);
94     vbox.show();
95     dlg.add(vbox);
96     gtk_container_set_border_width(GTK_CONTAINER(vbox), 5);
97
98     auto entry = ui::Entry(ui::New);
99     entry.show();
100     gtk_editable_set_editable(GTK_EDITABLE(entry), FALSE);
101     vbox.pack_start(entry, FALSE, FALSE, 0);
102
103     auto hbox = ui::HBox(FALSE, 5);
104     hbox.show();
105     vbox.pack_start(hbox, FALSE, FALSE, 0);
106
107     auto check3d = ui::CheckButton("Show 3D");
108     check3d.show();
109     hbox.pack_start(check3d, FALSE, FALSE, 0);
110
111     auto check2d = ui::CheckButton("Show 2D");
112     check2d.show();
113     hbox.pack_start(check2d, FALSE, FALSE, 0);
114
115     auto button = ui::Button("Change");
116     button.show();
117     hbox.pack_end(button, FALSE, FALSE, 0);
118     button.connect("clicked", G_CALLBACK(change_clicked), entry);
119     button.dimensions(60, -1);
120
121     hbox = ui::HBox(FALSE, 5);
122     hbox.show();
123     vbox.pack_start(hbox, FALSE, FALSE, 0);
124
125     button = ui::Button("Cancel");
126     button.show();
127     hbox.pack_end(button, FALSE, FALSE, 0);
128     button.connect("clicked",
129                    G_CALLBACK(dialog_button_callback), GINT_TO_POINTER(IDCANCEL));
130     button.dimensions(60, -1);
131
132     button = ui::Button("OK");
133     button.show();
134     hbox.pack_end(button, FALSE, FALSE, 0);
135     button.connect("clicked",
136                    G_CALLBACK(dialog_button_callback), GINT_TO_POINTER(IDOK));
137     button.dimensions(60, -1);
138
139     strcpy(portals.fn, GlobalRadiant().getMapName());
140     char *fn = strrchr(portals.fn, '.');
141     if (fn != NULL) {
142         strcpy(fn, ".prt");
143     }
144
145     StringOutputStream value(256);
146     value << portals.fn;
147     gtk_entry_set_text(GTK_ENTRY(entry), value.c_str());
148     gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(check2d), portals.show_2d);
149     gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(check3d), portals.show_3d);
150
151     gtk_grab_add(dlg);
152     dlg.show();
153
154     while (loop) {
155         gtk_main_iteration();
156     }
157
158     if (ret == IDOK) {
159         portals.Purge();
160
161         portals.show_3d = gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(check3d)) ? true : false;
162         portals.show_2d = gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(check2d)) ? true : false;
163     }
164
165     gtk_grab_remove(dlg);
166     dlg.destroy();
167
168     return ret;
169 }