]>
git.saurik.com Git - wxWidgets.git/blob - src/gtk1/msgdlg.cpp
755a9fd5d362fd2a1ba42aa3cb81986561127e91
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxMessageDialog for GTK+2
4 // Author: Vaclav Slavik
8 // Copyright: (c) Vaclav Slavik, 2003
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
13 #pragma implementation "msgdlg.h"
16 // For compilers that support precompilation, includes "wx.h".
17 #include "wx/wxprec.h"
23 #if wxUSE_MSGDLG && defined(__WXGTK20__) && !defined(__WXGPE__)
25 #include "wx/gtk/private.h"
28 #include "wx/msgdlg.h"
31 IMPLEMENT_CLASS(wxMessageDialog
, wxDialog
)
33 wxMessageDialog::wxMessageDialog(wxWindow
*parent
,
34 const wxString
& message
,
35 const wxString
& caption
,
37 const wxPoint
& WXUNUSED(pos
))
41 m_dialogStyle
= style
;
43 while (!parent
->IsTopLevel())
44 parent
= parent
->GetParent();
49 int wxMessageDialog::ShowModal()
52 GtkMessageType type
= GTK_MESSAGE_ERROR
;
53 GtkButtonsType buttons
= GTK_BUTTONS_OK
;
55 if (m_dialogStyle
& wxYES_NO
)
57 buttons
= GTK_BUTTONS_YES_NO
;
60 if (m_dialogStyle
& wxOK
)
62 if (m_dialogStyle
& wxCANCEL
)
63 buttons
= GTK_BUTTONS_OK_CANCEL
;
65 buttons
= GTK_BUTTONS_OK
;
68 if (m_dialogStyle
& wxICON_EXCLAMATION
)
69 type
= GTK_MESSAGE_WARNING
;
70 else if (m_dialogStyle
& wxICON_ERROR
)
71 type
= GTK_MESSAGE_ERROR
;
72 else if (m_dialogStyle
& wxICON_INFORMATION
)
73 type
= GTK_MESSAGE_INFO
;
74 else if (m_dialogStyle
& wxICON_QUESTION
)
75 type
= GTK_MESSAGE_QUESTION
;
77 wxFAIL_MSG( _T("Unknown wxMessageDialog type") );
79 dlg
= gtk_message_dialog_new(m_parent
?
80 GTK_WINDOW(m_parent
->m_widget
) : NULL
,
83 "%s", (const char*)wxGTK_CONV(m_message
));
84 if (m_caption
!= wxMessageBoxCaptionStr
)
85 gtk_window_set_title(GTK_WINDOW(dlg
), wxGTK_CONV(m_caption
));
87 if (m_dialogStyle
& wxYES_NO
)
89 if (m_dialogStyle
& wxCANCEL
)
90 gtk_dialog_add_button(GTK_DIALOG(dlg
), GTK_STOCK_CANCEL
,
92 if (m_dialogStyle
& wxNO_DEFAULT
)
93 gtk_dialog_set_default_response(GTK_DIALOG(dlg
), GTK_RESPONSE_NO
);
95 gtk_dialog_set_default_response(GTK_DIALOG(dlg
), GTK_RESPONSE_YES
);
98 gint result
= gtk_dialog_run(GTK_DIALOG(dlg
));
99 gtk_widget_destroy(dlg
);
104 wxFAIL_MSG(_T("unexpected GtkMessageDialog return code"));
107 case GTK_RESPONSE_CANCEL
:
109 case GTK_RESPONSE_OK
:
111 case GTK_RESPONSE_YES
:
113 case GTK_RESPONSE_NO
:
118 #endif // wxUSE_MSGDLG && defined(__WXGTK20__)