]> git.saurik.com Git - wxWidgets.git/blame - src/gtk/msgdlg.cpp
Remove wxT from prototype
[wxWidgets.git] / src / gtk / msgdlg.cpp
CommitLineData
13a7abf9 1/////////////////////////////////////////////////////////////////////////////
e5b50758 2// Name: src/gtk/msgdlg.cpp
13a7abf9
VS
3// Purpose: wxMessageDialog for GTK+2
4// Author: Vaclav Slavik
5// Modified by:
6// Created: 2003/02/28
7// RCS-ID: $Id$
8// Copyright: (c) Vaclav Slavik, 2003
e5b50758 9// Licence: wxWindows licence
13a7abf9
VS
10/////////////////////////////////////////////////////////////////////////////
11
13a7abf9
VS
12// For compilers that support precompilation, includes "wx.h".
13#include "wx/wxprec.h"
14
15#ifdef __BORLANDC__
88a7a4e1 16 #pragma hdrstop
13a7abf9
VS
17#endif
18
ff654490 19#if wxUSE_MSGDLG && !defined(__WXGPE__)
13a7abf9 20
e1bf3ad3 21#include "wx/msgdlg.h"
88a7a4e1
WS
22
23#ifndef WX_PRECOMP
24 #include "wx/intl.h"
25#endif
26
9dc44eff 27#include <gtk/gtk.h>
13a7abf9 28#include "wx/gtk/private.h"
ce668f29 29#include "wx/gtk/private/messagetype.h"
92763588 30#include "wx/gtk/private/mnemonics.h"
13a7abf9 31
c96d7bec
VZ
32#if wxUSE_LIBHILDON
33 #include <hildon-widgets/hildon-note.h>
34#endif // wxUSE_LIBHILDON
35
426d19f1
JS
36#if wxUSE_LIBHILDON2
37 #include <hildon/hildon.h>
38#endif // wxUSE_LIBHILDON2
39
13a7abf9
VS
40IMPLEMENT_CLASS(wxMessageDialog, wxDialog)
41
42wxMessageDialog::wxMessageDialog(wxWindow *parent,
43 const wxString& message,
44 const wxString& caption,
45 long style,
46 const wxPoint& WXUNUSED(pos))
ede7b017 47 : wxMessageDialogBase
cdc48273
VZ
48 (
49 GetParentForModalDialog(parent, style),
50 message,
51 caption,
52 style
53 )
13a7abf9 54{
2afb9e16 55}
13a7abf9 56
92763588
VZ
57wxString wxMessageDialog::GetDefaultYesLabel() const
58{
59 return GTK_STOCK_YES;
60}
61
62wxString wxMessageDialog::GetDefaultNoLabel() const
63{
64 return GTK_STOCK_NO;
65}
66
67wxString wxMessageDialog::GetDefaultOKLabel() const
68{
69 return GTK_STOCK_OK;
70}
71
72wxString wxMessageDialog::GetDefaultCancelLabel() const
73{
74 return GTK_STOCK_CANCEL;
75}
76
7112cdd1
VZ
77wxString wxMessageDialog::GetDefaultHelpLabel() const
78{
79 return GTK_STOCK_HELP;
80}
81
e08931c0 82void wxMessageDialog::DoSetCustomLabel(wxString& var, const ButtonLabel& label)
92763588 83{
e08931c0
VZ
84 int stockId = label.GetStockId();
85 if ( stockId == wxID_NONE )
86 {
ede7b017 87 wxMessageDialogBase::DoSetCustomLabel(var, label);
e08931c0
VZ
88 var = wxConvertMnemonicsToGTK(var);
89 }
90 else // stock label
91 {
92 var = wxGetStockGtkID(stockId);
93 }
92763588
VZ
94}
95
2afb9e16
VZ
96void wxMessageDialog::GTKCreateMsgDialog()
97{
c96d7bec
VZ
98 GtkWindow * const parent = m_parent ? GTK_WINDOW(m_parent->m_widget) : NULL;
99
426d19f1 100#if wxUSE_LIBHILDON || wxUSE_LIBHILDON2
a4578b0c
VZ
101 const char *stockIcon = "";
102
103 switch ( GetEffectiveIcon() )
104 {
105 case wxICON_ERROR:
106 stockIcon = "qgn_note_gene_syserror";
107 break;
108
109 case wxICON_WARNING:
110 stockIcon = "qgn_note_gene_syswarning";
111 break;
112
113 case wxICON_QUESTION:
114 stockIcon = "qgn_note_confirm";
115 break;
116
117 case wxICON_INFORMATION:
118 stockIcon = "qgn_note_info";
119 break;
120 }
c96d7bec
VZ
121
122 // there is no generic note creation function in public API so we have no
123 // choice but to use g_object_new() directly
124 m_widget = (GtkWidget *)g_object_new
125 (
126 HILDON_TYPE_NOTE,
426d19f1 127#if wxUSE_LIBHILDON
c96d7bec 128 "note_type", HILDON_NOTE_CONFIRMATION_BUTTON_TYPE,
426d19f1
JS
129#else // wxUSE_LIBHILDON
130 "note_type", HILDON_NOTE_TYPE_CONFIRMATION_BUTTON,
131#endif // wxUSE_LIBHILDON /wxUSE_LIBHILDON2
c96d7bec
VZ
132 "description", (const char *)GetFullMessage().utf8_str(),
133 "icon", stockIcon,
134 NULL
135 );
426d19f1 136#else // !wxUSE_LIBHILDON && !wxUSE_LIBHILDON2
b63b07a8 137 GtkMessageType type = GTK_MESSAGE_ERROR;
92763588 138 GtkButtonsType buttons = GTK_BUTTONS_NONE;
13a7abf9 139
92763588
VZ
140 // when using custom labels, we have to add all the buttons ourselves
141 if ( !HasCustomLabels() )
13a7abf9 142 {
7112cdd1
VZ
143 // "Help" button is not supported by predefined combinations so we
144 // always need to create the buttons manually when it's used.
145 if ( !(m_dialogStyle & wxHELP) )
92763588 146 {
7112cdd1
VZ
147 if ( m_dialogStyle & wxYES_NO )
148 {
149 if ( !(m_dialogStyle & wxCANCEL) )
150 buttons = GTK_BUTTONS_YES_NO;
151 //else: no standard GTK_BUTTONS_YES_NO_CANCEL so leave as NONE
152 }
153 else if ( m_dialogStyle & wxOK )
154 {
155 buttons = m_dialogStyle & wxCANCEL ? GTK_BUTTONS_OK_CANCEL
156 : GTK_BUTTONS_OK;
157 }
92763588 158 }
13a7abf9 159 }
b63b07a8 160
a4578b0c 161 if ( !wxGTKImpl::ConvertMessageTypeFromWX(GetEffectiveIcon(), &type) )
e0ae1a0a 162 {
7e3204b4
VZ
163 // if no style is explicitly specified, detect the suitable icon
164 // ourselves (this can be disabled by using wxICON_NONE)
2afb9e16 165 type = m_dialogStyle & wxYES ? GTK_MESSAGE_QUESTION : GTK_MESSAGE_INFO;
e0ae1a0a 166 }
13a7abf9 167
2afb9e16 168 wxString message;
2afb9e16 169 bool needsExtMessage = false;
4e621d24 170 if (!m_extendedMessage.empty())
2afb9e16
VZ
171 {
172 message = m_message;
173 needsExtMessage = true;
174 }
4e621d24 175 else // extended message not needed
2afb9e16
VZ
176 {
177 message = GetFullMessage();
178 }
179
c96d7bec 180 m_widget = gtk_message_dialog_new(parent,
b2ce5e1b 181 GTK_DIALOG_MODAL,
2afb9e16
VZ
182 type,
183 buttons,
184 "%s",
185 (const char*)wxGTK_CONV(message));
186
2afb9e16
VZ
187 if ( needsExtMessage )
188 {
189 gtk_message_dialog_format_secondary_text
190 (
191 (GtkMessageDialog *)m_widget,
192 "%s",
193 (const char *)wxGTK_CONV(m_extendedMessage)
194 );
195 }
426d19f1 196#endif // wxUSE_LIBHILDON || wxUSE_LIBHILDON2/!wxUSE_LIBHILDON && !wxUSE_LIBHILDON2
2afb9e16 197
9ff9d30c
PC
198 g_object_ref(m_widget);
199
13a7abf9 200 if (m_caption != wxMessageBoxCaptionStr)
b2ce5e1b 201 gtk_window_set_title(GTK_WINDOW(m_widget), wxGTK_CONV(m_caption));
13a7abf9 202
c96d7bec 203 GtkDialog * const dlg = GTK_DIALOG(m_widget);
92763588 204
4566dcbe
VZ
205 if ( m_dialogStyle & wxSTAY_ON_TOP )
206 {
207 gtk_window_set_keep_above(GTK_WINDOW(m_widget), TRUE);
208 }
209
92763588
VZ
210 // we need to add buttons manually if we use custom labels or always for
211 // Yes/No/Cancel dialog as GTK+ doesn't support it natively and when using
212 // Hildon we add all the buttons manually as it doesn't support too many of
213 // the combinations we may have
426d19f1 214#if wxUSE_LIBHILDON || wxUSE_LIBHILDON2
92763588
VZ
215 static const bool addButtons = true;
216#else // !wxUSE_LIBHILDON
217 const bool addButtons = buttons == GTK_BUTTONS_NONE;
218#endif // wxUSE_LIBHILDON/!wxUSE_LIBHILDON
219
7112cdd1
VZ
220
221 if ( addButtons )
92763588 222 {
7112cdd1
VZ
223 if ( m_dialogStyle & wxHELP )
224 {
225 gtk_dialog_add_button(dlg, wxGTK_CONV(GetHelpLabel()),
226 GTK_RESPONSE_HELP);
227 }
228
229 if ( m_dialogStyle & wxYES_NO ) // Yes/No or Yes/No/Cancel dialog
c96d7bec 230 {
5d3056f1
VZ
231 // Add the buttons in the correct order which is, according to
232 // http://library.gnome.org/devel/hig-book/stable/windows-alert.html.en
233 // the following one:
234 //
235 // [Help] [Alternative] [Cancel] [Affirmative]
236
150c8eb9
VZ
237 gtk_dialog_add_button(dlg, wxGTK_CONV(GetNoLabel()),
238 GTK_RESPONSE_NO);
92763588
VZ
239
240 if ( m_dialogStyle & wxCANCEL )
241 {
150c8eb9 242 gtk_dialog_add_button(dlg, wxGTK_CONV(GetCancelLabel()),
92763588
VZ
243 GTK_RESPONSE_CANCEL);
244 }
5d3056f1
VZ
245
246 gtk_dialog_add_button(dlg, wxGTK_CONV(GetYesLabel()),
247 GTK_RESPONSE_YES);
c96d7bec 248 }
7112cdd1 249 else // Ok or Ok/Cancel dialog
150c8eb9 250 {
7112cdd1
VZ
251 gtk_dialog_add_button(dlg, wxGTK_CONV(GetOKLabel()), GTK_RESPONSE_OK);
252 if ( m_dialogStyle & wxCANCEL )
253 {
254 gtk_dialog_add_button(dlg, wxGTK_CONV(GetCancelLabel()),
255 GTK_RESPONSE_CANCEL);
256 }
150c8eb9 257 }
13a7abf9 258 }
24689293 259
7112cdd1 260 gint defaultButton;
24689293 261 if ( m_dialogStyle & wxCANCEL_DEFAULT )
7112cdd1
VZ
262 defaultButton = GTK_RESPONSE_CANCEL;
263 else if ( m_dialogStyle & wxNO_DEFAULT )
264 defaultButton = GTK_RESPONSE_NO;
265 else if ( m_dialogStyle & wxYES_NO )
266 defaultButton = GTK_RESPONSE_YES;
267 else // No need to change the default value, whatever it is.
268 defaultButton = GTK_RESPONSE_NONE;
269
270 if ( defaultButton != GTK_RESPONSE_NONE )
271 gtk_dialog_set_default_response(dlg, defaultButton);
b2ce5e1b 272}
e5b50758 273
b2ce5e1b
RD
274int wxMessageDialog::ShowModal()
275{
7738af59
VZ
276 // break the mouse capture as it would interfere with modal dialog (see
277 // wxDialog::ShowModal)
278 wxWindow * const win = wxWindow::GetCapture();
279 if ( win )
280 win->GTKReleaseMouseAndNotify();
281
2afb9e16
VZ
282 if ( !m_widget )
283 {
284 GTKCreateMsgDialog();
285 wxCHECK_MSG( m_widget, wxID_CANCEL,
9a83f860 286 wxT("failed to create GtkMessageDialog") );
2afb9e16
VZ
287 }
288
3b439e60
RR
289 // This should be necessary, but otherwise the
290 // parent TLW will disappear..
291 if (m_parent)
292 gtk_window_present( GTK_WINDOW(m_parent->m_widget) );
e5b50758 293
b2ce5e1b
RD
294 gint result = gtk_dialog_run(GTK_DIALOG(m_widget));
295 gtk_widget_destroy(m_widget);
9ff9d30c 296 g_object_unref(m_widget);
b2ce5e1b 297 m_widget = NULL;
13a7abf9
VS
298
299 switch (result)
300 {
301 default:
9a83f860 302 wxFAIL_MSG(wxT("unexpected GtkMessageDialog return code"));
13a7abf9
VS
303 // fall through
304
b63b07a8 305 case GTK_RESPONSE_CANCEL:
0e4a7045
VS
306 case GTK_RESPONSE_DELETE_EVENT:
307 case GTK_RESPONSE_CLOSE:
13a7abf9
VS
308 return wxID_CANCEL;
309 case GTK_RESPONSE_OK:
310 return wxID_OK;
311 case GTK_RESPONSE_YES:
312 return wxID_YES;
313 case GTK_RESPONSE_NO:
314 return wxID_NO;
7112cdd1
VZ
315 case GTK_RESPONSE_HELP:
316 return wxID_HELP;
13a7abf9
VS
317 }
318}
319
b2ce5e1b 320
ff654490 321#endif // wxUSE_MSGDLG && !defined(__WXGPE__)