1998-05-20 10:01:55 -04:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
2005-03-11 10:34:42 -05:00
|
|
|
// Name: wx/generic/msgdlgg.h
|
1998-05-20 10:01:55 -04:00
|
|
|
// Purpose: Generic wxMessageDialog
|
|
|
|
// Author: Julian Smart
|
|
|
|
// Modified by:
|
|
|
|
// Created: 01/02/97
|
|
|
|
// RCS-ID: $Id$
|
2005-03-11 10:34:42 -05:00
|
|
|
// Copyright: (c) Julian Smart
|
2004-06-17 12:22:36 -04:00
|
|
|
// Licence: wxWindows licence
|
1998-05-20 10:01:55 -04:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef __MSGDLGH_G__
|
|
|
|
#define __MSGDLGH_G__
|
|
|
|
|
|
|
|
#include "wx/setup.h"
|
|
|
|
#include "wx/dialog.h"
|
|
|
|
|
|
|
|
// type is an 'or' (|) of wxOK, wxCANCEL, wxYES_NO
|
|
|
|
// Returns wxYES/NO/OK/CANCEL
|
|
|
|
|
2005-01-21 13:26:01 -05:00
|
|
|
extern WXDLLEXPORT_DATA(const wxChar*) wxMessageBoxCaptionStr;
|
1998-05-20 10:01:55 -04:00
|
|
|
|
2005-03-11 10:34:42 -05:00
|
|
|
class WXDLLEXPORT wxGenericMessageDialog: public wxDialog, public wxMessageDialogBase
|
1998-05-20 10:01:55 -04:00
|
|
|
{
|
|
|
|
DECLARE_DYNAMIC_CLASS(wxGenericMessageDialog)
|
1999-05-01 17:21:35 -04:00
|
|
|
|
1998-05-20 10:01:55 -04:00
|
|
|
public:
|
1999-07-30 23:35:35 -04:00
|
|
|
wxGenericMessageDialog(wxWindow *parent, const wxString& message,
|
1999-05-01 17:21:35 -04:00
|
|
|
const wxString& caption = wxMessageBoxCaptionStr,
|
1998-05-20 10:01:55 -04:00
|
|
|
long style = wxOK|wxCENTRE, const wxPoint& pos = wxDefaultPosition);
|
|
|
|
|
|
|
|
void OnYes(wxCommandEvent& event);
|
|
|
|
void OnNo(wxCommandEvent& event);
|
|
|
|
void OnCancel(wxCommandEvent& event);
|
1999-07-30 23:35:35 -04:00
|
|
|
|
1999-05-01 17:21:35 -04:00
|
|
|
private:
|
2000-01-05 10:35:04 -05:00
|
|
|
DECLARE_EVENT_TABLE()
|
1998-05-20 10:01:55 -04:00
|
|
|
};
|
|
|
|
|
2001-06-29 15:18:30 -04:00
|
|
|
#if (!defined( __WXMSW__ ) && !defined( __WXMAC__) && !defined(__WXPM__)) || defined(__WXUNIVERSAL__)
|
1998-05-20 10:01:55 -04:00
|
|
|
#define wxMessageDialog wxGenericMessageDialog
|
|
|
|
#endif
|
|
|
|
|
2004-06-17 12:22:36 -04:00
|
|
|
#endif // __MSGDLGH_G__
|