1998-09-18 06:19:10 -04:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
2005-03-11 10:34:42 -05:00
|
|
|
// Name: wx/motif/msgdlg.h
|
1998-09-18 06:19:10 -04:00
|
|
|
// Purpose: wxMessageDialog class. Use generic version if no
|
|
|
|
// platform-specific implementation.
|
|
|
|
// Author: Julian Smart
|
|
|
|
// Modified by:
|
|
|
|
// Created: 17/09/98
|
|
|
|
// RCS-ID: $Id$
|
|
|
|
// Copyright: (c) Julian Smart
|
2004-05-23 16:53:33 -04:00
|
|
|
// Licence: wxWindows licence
|
1998-09-18 06:19:10 -04:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef _WX_MSGBOXDLG_H_
|
|
|
|
#define _WX_MSGBOXDLG_H_
|
|
|
|
|
2006-01-26 12:20:50 -05:00
|
|
|
#include "wx/defs.h"
|
1998-09-18 06:19:10 -04:00
|
|
|
#include "wx/dialog.h"
|
|
|
|
|
1999-07-21 12:10:18 -04:00
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// Message box dialog
|
|
|
|
// ----------------------------------------------------------------------------
|
1998-09-18 06:19:10 -04:00
|
|
|
|
2006-01-16 09:59:55 -05:00
|
|
|
WXDLLEXPORT_DATA(extern const wxChar) wxMessageBoxCaptionStr[];
|
1998-09-18 06:19:10 -04:00
|
|
|
|
2005-03-11 10:34:42 -05:00
|
|
|
class WXDLLEXPORT wxMessageDialog: public wxDialog, public wxMessageDialogBase
|
1998-09-18 06:19:10 -04:00
|
|
|
{
|
1999-07-21 12:10:18 -04:00
|
|
|
DECLARE_DYNAMIC_CLASS(wxMessageDialog)
|
2005-03-11 10:34:42 -05:00
|
|
|
|
1999-07-21 12:10:18 -04:00
|
|
|
public:
|
|
|
|
wxMessageDialog(wxWindow *parent,
|
2002-02-05 11:34:33 -05:00
|
|
|
const wxString& message,
|
|
|
|
const wxString& caption = wxMessageBoxCaptionStr,
|
|
|
|
long style = wxOK | wxCENTRE,
|
|
|
|
const wxPoint& pos = wxDefaultPosition);
|
2005-03-11 10:34:42 -05:00
|
|
|
|
1999-07-21 12:10:18 -04:00
|
|
|
int ShowModal();
|
2005-03-11 10:34:42 -05:00
|
|
|
|
1999-07-21 12:10:18 -04:00
|
|
|
// implementation only from now on
|
2002-02-05 11:34:33 -05:00
|
|
|
// called by the Motif callback
|
1999-07-21 12:10:18 -04:00
|
|
|
void SetResult(long result) { m_result = result; }
|
2005-03-11 10:34:42 -05:00
|
|
|
|
1998-09-18 06:19:10 -04:00
|
|
|
protected:
|
|
|
|
wxString m_caption;
|
|
|
|
wxString m_message;
|
|
|
|
wxWindow * m_parent;
|
1999-07-21 12:10:18 -04:00
|
|
|
long m_result;
|
1998-09-18 06:19:10 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
2002-02-05 11:34:33 -05:00
|
|
|
// _WX_MSGBOXDLG_H_
|