X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/77ffb5937e89927b621128789401db8921fe580f..38113684016c5ecbc65985bee3c6c7b318c012cf:/include/wx/motif/msgdlg.h diff --git a/include/wx/motif/msgdlg.h b/include/wx/motif/msgdlg.h index 94a3d544b9..f0be368a9c 100644 --- a/include/wx/motif/msgdlg.h +++ b/include/wx/motif/msgdlg.h @@ -1,5 +1,5 @@ ///////////////////////////////////////////////////////////////////////////// -// Name: msgdlg.h +// Name: wx/motif/msgdlg.h // Purpose: wxMessageDialog class. Use generic version if no // platform-specific implementation. // Author: Julian Smart @@ -7,16 +7,12 @@ // Created: 17/09/98 // RCS-ID: $Id$ // Copyright: (c) Julian Smart -// Licence: wxWidgets licence +// Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// #ifndef _WX_MSGBOXDLG_H_ #define _WX_MSGBOXDLG_H_ -#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) -#pragma interface "msgdlg.h" -#endif - #include "wx/setup.h" #include "wx/dialog.h" @@ -26,27 +22,26 @@ WXDLLEXPORT_DATA(extern const char*) wxMessageBoxCaptionStr; -class WXDLLEXPORT wxMessageDialog: public wxDialog +class WXDLLEXPORT wxMessageDialog: public wxDialog, public wxMessageDialogBase { DECLARE_DYNAMIC_CLASS(wxMessageDialog) - + public: wxMessageDialog(wxWindow *parent, const wxString& message, const wxString& caption = wxMessageBoxCaptionStr, long style = wxOK | wxCENTRE, const wxPoint& pos = wxDefaultPosition); - + int ShowModal(); - + // implementation only from now on // called by the Motif callback void SetResult(long result) { m_result = result; } - + protected: wxString m_caption; wxString m_message; - long m_dialogStyle; wxWindow * m_parent; long m_result; };