1998-05-20 14:12:05 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
2005-03-11 15:34:42 +00:00
|
|
|
// Name: wx/msw/msgdlg.h
|
1998-05-20 14:12:05 +00:00
|
|
|
// Purpose: wxMessageDialog class
|
|
|
|
// Author: Julian Smart
|
|
|
|
// Modified by:
|
|
|
|
// Created: 01/02/97
|
|
|
|
// RCS-ID: $Id$
|
1998-08-07 23:52:45 +00:00
|
|
|
// Copyright: (c) Julian Smart
|
2004-08-30 10:18:55 +00:00
|
|
|
// Licence: wxWindows licence
|
1998-05-20 14:12:05 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
1998-08-07 23:52:45 +00:00
|
|
|
#ifndef _WX_MSGBOXDLG_H_
|
|
|
|
#define _WX_MSGBOXDLG_H_
|
1998-05-20 14:12:05 +00:00
|
|
|
|
2007-05-24 12:50:42 +00:00
|
|
|
class WXDLLEXPORT wxMessageDialog : public wxMessageDialogBase
|
1998-05-20 14:12:05 +00:00
|
|
|
{
|
|
|
|
public:
|
2007-05-24 12:50:42 +00:00
|
|
|
wxMessageDialog(wxWindow *parent,
|
|
|
|
const wxString& message,
|
|
|
|
const wxString& caption = wxMessageBoxCaptionStr,
|
|
|
|
long style = wxOK|wxCENTRE,
|
|
|
|
const wxPoint& WXUNUSED(pos) = wxDefaultPosition)
|
|
|
|
: wxMessageDialogBase(parent, message, caption, style)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
1998-05-20 14:12:05 +00:00
|
|
|
|
2007-05-24 12:50:42 +00:00
|
|
|
virtual int ShowModal();
|
2003-01-02 23:38:11 +00:00
|
|
|
|
2007-05-24 12:50:42 +00:00
|
|
|
protected:
|
|
|
|
DECLARE_DYNAMIC_CLASS(wxMessageDialog)
|
2003-01-02 23:38:11 +00:00
|
|
|
DECLARE_NO_COPY_CLASS(wxMessageDialog)
|
1998-05-20 14:12:05 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2007-05-24 12:50:42 +00:00
|
|
|
#endif // _WX_MSGBOXDLG_H_
|