2004-10-19 09:40:30 -04:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
2005-01-18 16:14:27 -05:00
|
|
|
// Name: wx/palmos/msgdlg.h
|
2004-10-19 09:40:30 -04:00
|
|
|
// Purpose: wxMessageDialog class
|
2005-01-18 16:14:27 -05:00
|
|
|
// Author: William Osborne - minimal working wxPalmOS port
|
2004-10-19 09:40:30 -04:00
|
|
|
// Modified by:
|
|
|
|
// Created: 10/13/04
|
2005-01-18 16:14:27 -05:00
|
|
|
// RCS-ID: $Id$
|
2004-10-19 09:40:30 -04:00
|
|
|
// Copyright: (c) William Osborne
|
|
|
|
// Licence: wxWindows licence
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef _WX_MSGBOXDLG_H_
|
|
|
|
#define _WX_MSGBOXDLG_H_
|
|
|
|
|
2007-05-24 08:50:42 -04:00
|
|
|
class WXDLLEXPORT wxMessageDialog : public wxMessageDialogBase
|
2004-10-19 09:40:30 -04:00
|
|
|
{
|
|
|
|
public:
|
2007-05-24 08:50:42 -04: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)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual int ShowModal(void);
|
|
|
|
|
|
|
|
DECLARE_DYNAMIC_CLASS(wxMessageDialog)
|
2004-10-19 09:40:30 -04:00
|
|
|
DECLARE_NO_COPY_CLASS(wxMessageDialog)
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|
|
|
|
// _WX_MSGBOXDLG_H_
|