1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/gtk/msgdlg.cpp
3 // Purpose: wxMessageDialog for GTK+2
4 // Author: Vaclav Slavik
8 // Copyright: (c) Vaclav Slavik, 2003
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // For compilers that support precompilation, includes "wx.h".
13 #include "wx/wxprec.h"
19 #if wxUSE_MSGDLG && !defined(__WXGPE__)
21 #include "wx/msgdlg.h"
28 #include "wx/gtk/private.h"
29 #include "wx/gtk/private/messagetype.h"
30 #include "wx/gtk/private/mnemonics.h"
33 #include <hildon-widgets/hildon-note.h>
34 #endif // wxUSE_LIBHILDON
37 #include <hildon/hildon.h>
38 #endif // wxUSE_LIBHILDON2
40 IMPLEMENT_CLASS(wxMessageDialog
, wxDialog
)
42 wxMessageDialog::wxMessageDialog(wxWindow
*parent
,
43 const wxString
& message
,
44 const wxString
& caption
,
46 const wxPoint
& WXUNUSED(pos
))
49 GetParentForModalDialog(parent
, style
),
57 wxString
wxMessageDialog::GetDefaultYesLabel() const
62 wxString
wxMessageDialog::GetDefaultNoLabel() const
67 wxString
wxMessageDialog::GetDefaultOKLabel() const
72 wxString
wxMessageDialog::GetDefaultCancelLabel() const
74 return GTK_STOCK_CANCEL
;
77 wxString
wxMessageDialog::GetDefaultHelpLabel() const
79 return GTK_STOCK_HELP
;
82 void wxMessageDialog::DoSetCustomLabel(wxString
& var
, const ButtonLabel
& label
)
84 int stockId
= label
.GetStockId();
85 if ( stockId
== wxID_NONE
)
87 wxMessageDialogBase::DoSetCustomLabel(var
, label
);
88 var
= wxConvertMnemonicsToGTK(var
);
92 var
= wxGetStockGtkID(stockId
);
96 void wxMessageDialog::GTKCreateMsgDialog()
98 GtkWindow
* const parent
= m_parent
? GTK_WINDOW(m_parent
->m_widget
) : NULL
;
100 #if wxUSE_LIBHILDON || wxUSE_LIBHILDON2
101 const char *stockIcon
= "";
103 switch ( GetEffectiveIcon() )
106 stockIcon
= "qgn_note_gene_syserror";
110 stockIcon
= "qgn_note_gene_syswarning";
113 case wxICON_QUESTION
:
114 stockIcon
= "qgn_note_confirm";
117 case wxICON_INFORMATION
:
118 stockIcon
= "qgn_note_info";
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
128 "note_type", HILDON_NOTE_CONFIRMATION_BUTTON_TYPE
,
129 #else // wxUSE_LIBHILDON
130 "note_type", HILDON_NOTE_TYPE_CONFIRMATION_BUTTON
,
131 #endif // wxUSE_LIBHILDON /wxUSE_LIBHILDON2
132 "description", (const char *)GetFullMessage().utf8_str(),
136 #else // !wxUSE_LIBHILDON && !wxUSE_LIBHILDON2
137 GtkMessageType type
= GTK_MESSAGE_ERROR
;
138 GtkButtonsType buttons
= GTK_BUTTONS_NONE
;
140 // when using custom labels, we have to add all the buttons ourselves
141 if ( !HasCustomLabels() )
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
) )
147 if ( m_dialogStyle
& wxYES_NO
)
149 if ( !(m_dialogStyle
& wxCANCEL
) )
150 buttons
= GTK_BUTTONS_YES_NO
;
151 //else: no standard GTK_BUTTONS_YES_NO_CANCEL so leave as NONE
153 else if ( m_dialogStyle
& wxOK
)
155 buttons
= m_dialogStyle
& wxCANCEL
? GTK_BUTTONS_OK_CANCEL
161 if ( !wxGTKImpl::ConvertMessageTypeFromWX(GetEffectiveIcon(), &type
) )
163 // if no style is explicitly specified, detect the suitable icon
164 // ourselves (this can be disabled by using wxICON_NONE)
165 type
= m_dialogStyle
& wxYES
? GTK_MESSAGE_QUESTION
: GTK_MESSAGE_INFO
;
169 bool needsExtMessage
= false;
170 if (!m_extendedMessage
.empty())
173 needsExtMessage
= true;
175 else // extended message not needed
177 message
= GetFullMessage();
180 m_widget
= gtk_message_dialog_new(parent
,
185 (const char*)wxGTK_CONV(message
));
187 if ( needsExtMessage
)
189 gtk_message_dialog_format_secondary_text
191 (GtkMessageDialog
*)m_widget
,
193 (const char *)wxGTK_CONV(m_extendedMessage
)
196 #endif // wxUSE_LIBHILDON || wxUSE_LIBHILDON2/!wxUSE_LIBHILDON && !wxUSE_LIBHILDON2
198 g_object_ref(m_widget
);
200 if (m_caption
!= wxMessageBoxCaptionStr
)
201 gtk_window_set_title(GTK_WINDOW(m_widget
), wxGTK_CONV(m_caption
));
203 GtkDialog
* const dlg
= GTK_DIALOG(m_widget
);
205 if ( m_dialogStyle
& wxSTAY_ON_TOP
)
207 gtk_window_set_keep_above(GTK_WINDOW(m_widget
), TRUE
);
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
214 #if wxUSE_LIBHILDON || wxUSE_LIBHILDON2
215 static const bool addButtons
= true;
216 #else // !wxUSE_LIBHILDON
217 const bool addButtons
= buttons
== GTK_BUTTONS_NONE
;
218 #endif // wxUSE_LIBHILDON/!wxUSE_LIBHILDON
223 if ( m_dialogStyle
& wxHELP
)
225 gtk_dialog_add_button(dlg
, wxGTK_CONV(GetHelpLabel()),
229 if ( m_dialogStyle
& wxYES_NO
) // Yes/No or Yes/No/Cancel dialog
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:
235 // [Help] [Alternative] [Cancel] [Affirmative]
237 gtk_dialog_add_button(dlg
, wxGTK_CONV(GetNoLabel()),
240 if ( m_dialogStyle
& wxCANCEL
)
242 gtk_dialog_add_button(dlg
, wxGTK_CONV(GetCancelLabel()),
243 GTK_RESPONSE_CANCEL
);
246 gtk_dialog_add_button(dlg
, wxGTK_CONV(GetYesLabel()),
249 else // Ok or Ok/Cancel dialog
251 gtk_dialog_add_button(dlg
, wxGTK_CONV(GetOKLabel()), GTK_RESPONSE_OK
);
252 if ( m_dialogStyle
& wxCANCEL
)
254 gtk_dialog_add_button(dlg
, wxGTK_CONV(GetCancelLabel()),
255 GTK_RESPONSE_CANCEL
);
261 if ( m_dialogStyle
& wxCANCEL_DEFAULT
)
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
;
270 if ( defaultButton
!= GTK_RESPONSE_NONE
)
271 gtk_dialog_set_default_response(dlg
, defaultButton
);
274 int wxMessageDialog::ShowModal()
276 // break the mouse capture as it would interfere with modal dialog (see
277 // wxDialog::ShowModal)
278 wxWindow
* const win
= wxWindow::GetCapture();
280 win
->GTKReleaseMouseAndNotify();
284 GTKCreateMsgDialog();
285 wxCHECK_MSG( m_widget
, wxID_CANCEL
,
286 wxT("failed to create GtkMessageDialog") );
289 // This should be necessary, but otherwise the
290 // parent TLW will disappear..
292 gtk_window_present( GTK_WINDOW(m_parent
->m_widget
) );
294 gint result
= gtk_dialog_run(GTK_DIALOG(m_widget
));
295 gtk_widget_destroy(m_widget
);
296 g_object_unref(m_widget
);
302 wxFAIL_MSG(wxT("unexpected GtkMessageDialog return code"));
305 case GTK_RESPONSE_CANCEL
:
306 case GTK_RESPONSE_DELETE_EVENT
:
307 case GTK_RESPONSE_CLOSE
:
309 case GTK_RESPONSE_OK
:
311 case GTK_RESPONSE_YES
:
313 case GTK_RESPONSE_NO
:
315 case GTK_RESPONSE_HELP
:
321 #endif // wxUSE_MSGDLG && !defined(__WXGPE__)