]> Dogcows Code - chaz/yoink/blob - src/Moof/ModalDialog.hh
foundational changes; tying up some loose ends
[chaz/yoink] / src / Moof / ModalDialog.hh
1
2 /*******************************************************************************
3
4 Copyright (c) 2009, Charles McGarvey
5 All rights reserved.
6
7 Redistribution and use in source and binary forms, with or without
8 modification, are permitted provided that the following conditions are met:
9
10 * Redistributions of source code must retain the above copyright notice,
11 this list of conditions and the following disclaimer.
12 * Redistributions in binary form must reproduce the above copyright notice,
13 this list of conditions and the following disclaimer in the documentation
14 and/or other materials provided with the distribution.
15
16 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
17 AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
19 DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
20 FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21 DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
22 SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
23 CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
24 OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
25 OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26
27 *******************************************************************************/
28
29 #ifndef _MOOF_MODALDIALOG_HH_
30 #define _MOOF_MODALDIALOG_HH_
31
32 #include <string>
33
34 #if HAVE_CONFIG_H
35 #include "../config.h"
36 #endif
37
38 #if defined(_WIN32) || defined(__WIN32__)
39 #include <windows.h>
40 #elif defined(__APPLE__) && defined(__MACH__)
41 #include <Carbon/Carbon.h>
42 #elif USE_GTK
43 #include <gtk/gtk.h>
44 #elif USE_QT4
45 #include <QApplication>
46 #include <QIcon>
47 #include <QMessageBox>
48 #endif
49
50 #include <Moof/Log.hh>
51 #include <Moof/Resource.hh>
52
53
54 namespace Mf {
55
56
57 /**
58 * Small wrapper over various user interface modal dialog windows.
59 */
60
61 struct ModalDialog
62 {
63 enum Type
64 {
65 INFO = 1,
66 WARNING = 2,
67 CRITICAL = 3
68 };
69
70
71 std::string title;
72 Type type;
73 std::string text1;
74 std::string text2;
75
76
77 void run() const
78 {
79 switch (type)
80 {
81 case WARNING:
82 logWarning("%s", text1.c_str());
83 logWarning("%s", text2.c_str());
84 break;
85 case CRITICAL:
86 logError("%s", text1.c_str());
87 logError("%s", text2.c_str());
88 break;
89 default:
90 logInfo("%s", text1.c_str());
91 logInfo("%s", text2.c_str());
92 break;
93 }
94
95 #if USE_GTK
96
97 int argc = 0;
98 char** argv;
99 gtk_init(&argc, &argv);
100
101 GtkMessageType iconType;
102 switch (type)
103 {
104 case WARNING:
105 iconType = GTK_MESSAGE_WARNING;
106 break;
107 case CRITICAL:
108 iconType = GTK_MESSAGE_ERROR;
109 break;
110 default:
111 iconType = GTK_MESSAGE_INFO;
112 break;
113 }
114
115 GtkWidget* dialog = gtk_message_dialog_new(NULL,
116 GTK_DIALOG_DESTROY_WITH_PARENT, iconType,
117 GTK_BUTTONS_CLOSE, "%s", text1.c_str());
118 gtk_message_dialog_format_secondary_text(GTK_MESSAGE_DIALOG(dialog),
119 "%s", text2.c_str());
120 gtk_window_set_title(GTK_WINDOW(dialog), title.c_str());
121
122 std::string iconPath = Resource::getPath(PACKAGE".png");
123 GdkPixbuf* iconPixbuf = gdk_pixbuf_new_from_file(iconPath.c_str(), NULL);
124 gtk_window_set_icon(GTK_WINDOW(dialog), iconPixbuf);
125
126 gtk_dialog_run(GTK_DIALOG(dialog));
127 gtk_widget_destroy(dialog);
128 // FIXME - this doesn't seem to actually remove the window from the
129 // screen when it closes, not sure why...
130
131 #elif USE_QT4
132
133 int argc = 0;
134 char** argv;
135 QApplication qtApp(argc, argv);
136
137 QMessageBox::Icon iconType;
138 switch (type)
139 {
140 case WARNING:
141 iconType = QMessageBox::Warning;
142 break;
143 case CRITICAL:
144 iconType = QMessageBox::Critical;
145 break;
146 default:
147 iconType = QMessageBox::Information;
148 break;
149 }
150
151 QMessageBox dialog;
152 dialog.setWindowTitle(title.c_str());
153 dialog.setIcon(iconType);
154 dialog.setText(text1.c_str());
155 dialog.setInformativeText(text2.c_str());
156 dialog.setStandardButtons(QMessageBox::Close);
157
158 std::string iconPath = Resource::getPath(PACKAGE".png");
159 QIcon icon(iconPath.c_str());
160 dialog.setWindowIcon(icon);
161
162 dialog.exec();
163
164 #endif
165 }
166 };
167
168
169 } // namespace Mf
170
171 #endif // _MOOF_MODALDIALOG_HH_
172
173 /** vim: set ts=4 sw=4 tw=80: *************************************************/
174
This page took 0.038381 seconds and 4 git commands to generate.