]> de.git.xonotic.org Git - xonotic/netradiant.git/blob - radiant/bp_dlg.cpp
more eol-style
[xonotic/netradiant.git] / radiant / bp_dlg.cpp
1 /*
2 Copyright (C) 1999-2007 id Software, Inc. and contributors.
3 For a list of contributors, see the accompanying CONTRIBUTORS file.
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 //-----------------------------------------------------------------------------
23 //
24 // DESCRIPTION
25 //
26 // custom Gtk dialog for brush primitives load/save
27
28 #include "stdafx.h"
29
30 void BP_dialog_button_callback (GtkWidget *widget, gpointer data)
31 {
32   GtkWidget *parent;
33   int *loop, *ret;
34
35   parent = gtk_widget_get_toplevel (widget);
36   loop = (int*)g_object_get_data (G_OBJECT (parent), "loop");
37   ret = (int*)g_object_get_data (G_OBJECT (parent), "ret");
38
39   *loop = 0;
40   *ret = (int)data;
41 }
42
43 gint BP_dialog_delete_callback (GtkWidget *widget, GdkEvent* event, gpointer data)
44 {
45   int *loop;
46
47   gtk_widget_hide (widget);
48   loop = (int*)g_object_get_data (G_OBJECT (widget), "loop");
49   *loop = 0;
50
51   return TRUE;
52 }
53
54 // ret: 0 = abort, 1 = load and convert, 2 = changed project settings, load and don't convert
55 // the user might decide to switch the BP mode in project settings
56 // status: 0 = loading regular, got conflict 1 = loading BP, got conflict
57 // int WINAPI gtk_MessageBox (GtkWidget *parent, const char* lpText, const char* lpCaption, guint32 uType)
58 int BP_MessageBox (int status)
59 {
60   GtkWidget *window, *w, *vbox, *hbox;
61   GtkAccelGroup *accel;
62   int ret, loop = 1;
63
64   window = gtk_window_new (GTK_WINDOW_TOPLEVEL);
65   gtk_signal_connect (GTK_OBJECT (window), "delete_event",
66                       GTK_SIGNAL_FUNC (BP_dialog_delete_callback), NULL);
67   gtk_signal_connect (GTK_OBJECT (window), "destroy",
68                       GTK_SIGNAL_FUNC (gtk_widget_destroy), NULL);
69
70   gtk_window_set_title (GTK_WINDOW (window), "Current map format is incompatible");
71
72   gtk_container_border_width (GTK_CONTAINER (window), 10);
73   g_object_set_data (G_OBJECT (window), "loop", &loop);
74   g_object_set_data (G_OBJECT (window), "ret", &ret);
75   gtk_widget_realize (window);
76
77   gtk_window_set_transient_for (GTK_WINDOW (window), GTK_WINDOW (g_pParentWnd->m_pWidget));
78
79   accel = gtk_accel_group_new ();
80   gtk_window_add_accel_group (GTK_WINDOW (window), accel);
81
82   vbox = gtk_vbox_new (FALSE, 10);
83   gtk_container_add (GTK_CONTAINER (window), vbox);
84   gtk_widget_show (vbox);
85
86   if (status == 0)
87   {
88     w = gtk_label_new ("This map was saved using brush primitives format\n"
89       "and your project settings use the standard format.\n"
90       "Do you want to convert the map, change default format or abort?\n"
91       "NOTE: due to limitations of the standard format, "
92       "some texture alignments may be lost after conversion.");
93   }
94   else
95   {
96     w = gtk_label_new ("This map was saved using standard format\n"
97       "and your project settings use the new \"brush primitives\" format.\n"
98       "Do you want to convert the map, change default format or abort?\n"
99       "NOTE: Next versions of Radiant will allow mixing the two formats"
100       "in the same maps for a smooth transition.");
101   }
102   gtk_box_pack_start (GTK_BOX (vbox), w, FALSE, FALSE, 2);
103   gtk_label_set_justify (GTK_LABEL (w), GTK_JUSTIFY_LEFT);
104   gtk_widget_show (w);
105
106   w = gtk_hseparator_new ();
107   gtk_box_pack_start (GTK_BOX (vbox), w, FALSE, FALSE, 2);
108   gtk_widget_show (w);
109
110   hbox = gtk_hbox_new (FALSE, 10);
111   gtk_box_pack_start (GTK_BOX (vbox), hbox, FALSE, FALSE, 2);
112   gtk_widget_show (hbox);
113   
114   w = gtk_button_new_with_label ("Convert");
115   gtk_box_pack_start (GTK_BOX (hbox), w, TRUE, TRUE, 0);
116   gtk_signal_connect (GTK_OBJECT (w), "clicked",
117     GTK_SIGNAL_FUNC (BP_dialog_button_callback), GINT_TO_POINTER (1));
118   GTK_WIDGET_SET_FLAGS (w, GTK_CAN_DEFAULT);
119   gtk_widget_grab_default (w);
120   gtk_widget_show (w);
121   
122   w = gtk_button_new_with_label ("Change default");
123   gtk_box_pack_start (GTK_BOX (hbox), w, TRUE, TRUE, 0);
124   gtk_signal_connect (GTK_OBJECT (w), "clicked",
125     GTK_SIGNAL_FUNC (BP_dialog_button_callback), GINT_TO_POINTER (2));
126   gtk_widget_show (w);
127   
128   w = gtk_button_new_with_label ("Abort load");
129   gtk_box_pack_start (GTK_BOX (hbox), w, TRUE, TRUE, 0);
130   gtk_signal_connect (GTK_OBJECT (w), "clicked",
131     GTK_SIGNAL_FUNC (BP_dialog_button_callback), GINT_TO_POINTER (0));
132   gtk_widget_show (w);
133   ret = 0; // abort
134   
135   gtk_widget_show (window);
136   gtk_grab_add (window);
137
138   while (loop)
139     gtk_main_iteration ();
140
141   if (ret == 2)
142   {
143     // change project settings
144     if (status == 0)
145       g_qeglobals.m_bBrushPrimitMode = TRUE;
146     else
147       g_qeglobals.m_bBrushPrimitMode = FALSE;
148     SetKeyValue(g_qeglobals.d_project_entity, "brush_primit", (g_qeglobals.m_bBrushPrimitMode ? "1" : "0" ));
149   }
150
151   gtk_grab_remove (window);
152   gtk_widget_destroy (window);
153
154   return ret;
155 }