1999-07-29 05:11:30 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
2005-03-11 15:34:42 +00:00
|
|
|
// Name: wx/os2/msgdlg.h
|
1999-07-29 05:11:30 +00:00
|
|
|
// Purpose: wxMessageDialog class. Use generic version if no
|
|
|
|
// platform-specific implementation.
|
1999-10-12 22:49:24 +00:00
|
|
|
// Author: David Webster
|
1999-07-29 05:11:30 +00:00
|
|
|
// Modified by:
|
1999-10-12 22:49:24 +00:00
|
|
|
// Created: 10/12/99
|
1999-07-29 05:11:30 +00:00
|
|
|
// RCS-ID: $Id$
|
2005-03-11 15:34:42 +00:00
|
|
|
// Copyright: (c) David Webster
|
2004-05-23 20:53:33 +00:00
|
|
|
// Licence: wxWindows licence
|
1999-07-29 05:11:30 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef _WX_MSGBOXDLG_H_
|
|
|
|
#define _WX_MSGBOXDLG_H_
|
|
|
|
|
2007-05-24 12:50:42 +00:00
|
|
|
class WXDLLEXPORT wxMessageDialog : public wxMessageDialogBase
|
1999-07-29 05:11:30 +00:00
|
|
|
{
|
|
|
|
public:
|
2000-07-15 19:51:35 +00:00
|
|
|
wxMessageDialog( wxWindow* pParent
|
|
|
|
,const wxString& rsMessage
|
|
|
|
,const wxString& rsCaption = wxMessageBoxCaptionStr
|
|
|
|
,long lStyle = wxOK|wxCENTRE
|
2007-05-24 12:50:42 +00:00
|
|
|
,const wxPoint& WXUNUSED(rPos) = wxDefaultPosition
|
|
|
|
)
|
|
|
|
: wxMessageDialogBase(pParent, rsMessage, rsCaption, lStyle)
|
|
|
|
{
|
|
|
|
}
|
1999-07-29 05:11:30 +00:00
|
|
|
|
2000-07-15 19:51:35 +00:00
|
|
|
int ShowModal(void);
|
1999-07-29 05:11:30 +00:00
|
|
|
|
2000-07-15 19:51:35 +00:00
|
|
|
protected:
|
2007-05-24 12:50:42 +00:00
|
|
|
DECLARE_DYNAMIC_CLASS(wxMessageDialog)
|
2000-07-15 19:51:35 +00:00
|
|
|
}; // end of CLASS wxMessageDialog
|
|
|
|
|
2007-05-24 12:50:42 +00:00
|
|
|
#endif // _WX_MSGBOXDLG_H_
|