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
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2007-05-24 08:50:42 -04:00
|
|
|
#ifndef _WX_GENERIC_MSGDLGG_H_
|
|
|
|
#define _WX_GENERIC_MSGDLGG_H_
|
1998-05-20 10:01:55 -04:00
|
|
|
|
2007-05-24 08:50:42 -04:00
|
|
|
class WXDLLEXPORT wxGenericMessageDialog : public wxMessageDialogBase
|
1998-05-20 10:01:55 -04:00
|
|
|
{
|
|
|
|
public:
|
2007-05-24 08:50:42 -04:00
|
|
|
wxGenericMessageDialog(wxWindow *parent,
|
|
|
|
const wxString& message,
|
|
|
|
const wxString& caption = wxMessageBoxCaptionStr,
|
|
|
|
long style = wxOK|wxCENTRE,
|
|
|
|
const wxPoint& pos = wxDefaultPosition);
|
1998-05-20 10:01:55 -04:00
|
|
|
|
2007-05-24 08:50:42 -04:00
|
|
|
virtual int ShowModal();
|
|
|
|
|
|
|
|
protected:
|
1998-05-20 10:01:55 -04:00
|
|
|
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:
|
2007-05-24 08:50:42 -04:00
|
|
|
void DoCreateMsgdialog();
|
|
|
|
|
|
|
|
wxPoint m_pos;
|
|
|
|
bool m_created;
|
|
|
|
|
2000-01-05 10:35:04 -05:00
|
|
|
DECLARE_EVENT_TABLE()
|
2007-05-24 08:50:42 -04:00
|
|
|
DECLARE_DYNAMIC_CLASS(wxGenericMessageDialog)
|
1998-05-20 10:01:55 -04:00
|
|
|
};
|
|
|
|
|
2007-05-24 08:50:42 -04:00
|
|
|
#endif // _WX_GENERIC_MSGDLGG_H_
|