X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/57dde4bd5860cda4666326b611f535dfc28139f2..03aa88aba79b7df581bab46597668ab0b5eb4729:/include/wx/gtk/msgdlg.h?ds=inline diff --git a/include/wx/gtk/msgdlg.h b/include/wx/gtk/msgdlg.h index a545631340..8d310153e9 100644 --- a/include/wx/gtk/msgdlg.h +++ b/include/wx/gtk/msgdlg.h @@ -1,19 +1,19 @@ ///////////////////////////////////////////////////////////////////////////// -// Name: msgdlgg.h -// Purpose: Generic wxMessageDialog -// Author: Julian Smart +// Name: msgdlg.h +// Purpose: wxMessageDialog for GTK+2 +// Author: Vaclav Slavik // Modified by: -// Created: 01/02/97 +// Created: 2003/02/28 // RCS-ID: $Id$ -// Copyright: (c) +// Copyright: (c) Vaclav Slavik, 2003 // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// -#ifndef __MSGDLGH_G__ -#define __MSGDLGH_G__ +#ifndef __MSGDLG_H__ +#define __MSGDLG_H__ -#ifdef __GNUG__ -#pragma interface "msgdlgg.h" +#if defined(__GNUG__) && !defined(__APPLE__) +#pragma interface "msgdlg.h" #endif #include "wx/setup.h" @@ -24,33 +24,23 @@ WXDLLEXPORT_DATA(extern const wxChar*) wxMessageBoxCaptionStr; -class WXDLLEXPORT wxGenericMessageDialog: public wxDialog +class WXDLLEXPORT wxMessageDialog: public wxDialog { -DECLARE_DYNAMIC_CLASS(wxGenericMessageDialog) - public: - wxGenericMessageDialog(wxWindow *parent, const wxString& message, - const wxString& caption = wxMessageBoxCaptionStr, - long style = wxOK|wxCENTRE, const wxPoint& pos = wxDefaultPosition); - - void OnYes(wxCommandEvent& event); - void OnNo(wxCommandEvent& event); - void OnCancel(wxCommandEvent& event); - -private: - wxList m_buttons; - int m_dialogStyle; - -DECLARE_EVENT_TABLE() -}; + wxMessageDialog(wxWindow *parent, const wxString& message, + const wxString& caption = wxMessageBoxCaptionStr, + long style = wxOK|wxCENTRE, + const wxPoint& pos = wxDefaultPosition); -#if !defined( __WXMSW__ ) && !defined( __WXMAC__) -#define wxMessageDialog wxGenericMessageDialog + int ShowModal(); -int wxMessageBox(const wxString& message, const wxString& caption = wxMessageBoxCaptionStr, - long style = wxOK|wxCENTRE, wxWindow *parent = (wxWindow *) NULL, int x = -1, int y = -1); +private: + wxString m_caption; + wxString m_message; + long m_dialogStyle; + wxWindow *m_parent; -#endif + DECLARE_DYNAMIC_CLASS(wxMessageDialog) +}; #endif - // __MSGDLGH_G__