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