1998-05-20 14:01:55 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: msgdlgg.h
|
|
|
|
// Purpose: Generic wxMessageDialog
|
|
|
|
// Author: Julian Smart
|
|
|
|
// Modified by:
|
|
|
|
// Created: 01/02/97
|
|
|
|
// RCS-ID: $Id$
|
|
|
|
// Copyright: (c)
|
|
|
|
// Licence: wxWindows licence
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef __MSGDLGH_G__
|
|
|
|
#define __MSGDLGH_G__
|
|
|
|
|
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma interface "msgdlgg.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "wx/setup.h"
|
|
|
|
#include "wx/dialog.h"
|
|
|
|
|
|
|
|
// type is an 'or' (|) of wxOK, wxCANCEL, wxYES_NO
|
|
|
|
// Returns wxYES/NO/OK/CANCEL
|
|
|
|
|
1999-04-16 14:14:47 +00:00
|
|
|
WXDLLEXPORT_DATA(extern const wxChar*) wxMessageBoxCaptionStr;
|
1998-05-20 14:01:55 +00:00
|
|
|
|
|
|
|
class WXDLLEXPORT wxGenericMessageDialog: public wxDialog
|
|
|
|
{
|
|
|
|
DECLARE_DYNAMIC_CLASS(wxGenericMessageDialog)
|
1999-05-01 21:21:35 +00:00
|
|
|
|
1998-05-20 14:01:55 +00:00
|
|
|
public:
|
1999-05-01 21:21:35 +00:00
|
|
|
wxGenericMessageDialog(wxWindow *parent, const wxString& message,
|
|
|
|
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-05-01 21:21:35 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
int m_dialogStyle;
|
1998-05-20 14:01:55 +00:00
|
|
|
|
|
|
|
DECLARE_EVENT_TABLE()
|
|
|
|
};
|
|
|
|
|
1999-01-01 16:22:21 +00:00
|
|
|
#if !defined( __WXMSW__ ) && !defined( __WXMAC__)
|
1998-05-20 14:01:55 +00:00
|
|
|
#define wxMessageDialog wxGenericMessageDialog
|
|
|
|
|
|
|
|
int wxMessageBox(const wxString& message, const wxString& caption = wxMessageBoxCaptionStr,
|
1998-08-23 03:22:56 +00:00
|
|
|
long style = wxOK|wxCENTRE, wxWindow *parent = (wxWindow *) NULL, int x = -1, int y = -1);
|
1998-05-20 14:01:55 +00:00
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|
|
|
|
// __MSGDLGH_G__
|