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