]> de.git.xonotic.org Git - xonotic/netradiant.git/blob - contrib/prtview/AboutDialog.cpp
merge branch work back into trunk
[xonotic/netradiant.git] / contrib / prtview / AboutDialog.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 // AboutDialog.cpp : implementation file
21 //
22
23 #include "stdafx.h"
24
25 #ifdef _DEBUG
26 #define new DEBUG_NEW
27 #undef THIS_FILE
28 //static char THIS_FILE[] = __FILE__;
29 #endif
30
31 /////////////////////////////////////////////////////////////////////////////
32 // CAboutDialog dialog
33
34 static void dialog_button_callback (GtkWidget *widget, gpointer data)
35 {
36   GtkWidget *parent;
37   int *loop, *ret;
38
39   parent = gtk_widget_get_toplevel (widget);
40   loop = (int*)g_object_get_data (G_OBJECT (parent), "loop");
41   ret = (int*)g_object_get_data (G_OBJECT (parent), "ret");
42
43   *loop = 0;
44   *ret = (int)data;
45 }
46
47 static gint dialog_delete_callback (GtkWidget *widget, GdkEvent* event, gpointer data)
48 {
49   int *loop;
50
51   gtk_widget_hide (widget);
52   loop = (int*)g_object_get_data (G_OBJECT (widget), "loop");
53   *loop = 0;
54
55   return TRUE;
56 }
57
58 void DoAboutDlg ()
59 {
60   GtkWidget *dlg, *hbox, *vbox, *button, *label;
61   int loop = 1, ret = IDCANCEL;
62
63   dlg = gtk_window_new (GTK_WINDOW_TOPLEVEL);
64   gtk_window_set_title (GTK_WINDOW (dlg), "About Portal Viewer");
65   gtk_signal_connect (GTK_OBJECT (dlg), "delete_event",
66                       GTK_SIGNAL_FUNC (dialog_delete_callback), NULL);
67   gtk_signal_connect (GTK_OBJECT (dlg), "destroy",
68                       GTK_SIGNAL_FUNC (gtk_widget_destroy), NULL);
69   g_object_set_data (G_OBJECT (dlg), "loop", &loop);
70   g_object_set_data (G_OBJECT (dlg), "ret", &ret);
71
72   hbox = gtk_hbox_new (FALSE, 10);
73   gtk_widget_show (hbox);
74   gtk_container_add (GTK_CONTAINER (dlg), hbox);
75   gtk_container_set_border_width (GTK_CONTAINER (hbox), 10);
76
77   label = gtk_label_new ("Version 1.000\n\n"
78                          "Gtk port by Leonardo Zide\nleo@lokigames.com\n\n"
79                          "Written by Geoffrey DeWan\ngdewan@prairienet.org\n\n"
80        "Built against GtkRadiant " RADIANT_VERSION "\n"
81        __DATE__
82        );
83   gtk_widget_show (label);
84   gtk_box_pack_start (GTK_BOX (hbox), label, TRUE, TRUE, 0);
85   gtk_label_set_justify (GTK_LABEL (label), GTK_JUSTIFY_LEFT);
86
87   vbox = gtk_vbox_new (FALSE, 0);
88   gtk_widget_show (vbox);
89   gtk_box_pack_start (GTK_BOX (hbox), vbox, FALSE, FALSE, 0);
90
91   button = gtk_button_new_with_label ("OK");
92   gtk_widget_show (button);
93   gtk_box_pack_start (GTK_BOX (vbox), button, FALSE, FALSE, 0);
94   gtk_signal_connect (GTK_OBJECT (button), "clicked",
95                       GTK_SIGNAL_FUNC (dialog_button_callback), GINT_TO_POINTER (IDOK));
96   gtk_widget_set_usize (button, 60, -2);
97
98   gtk_grab_add (dlg);
99   gtk_widget_show (dlg);
100
101   while (loop)
102     gtk_main_iteration ();
103
104   gtk_grab_remove (dlg);
105   gtk_widget_destroy (dlg);
106 }
107
108 /////////////////////////////////////////////////////////////////////////////
109 // CAboutDialog message handlers