2003-02-28 23:37:46 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: msgdlg.h
|
|
|
|
// Purpose: wxMessageDialog for GTK+2
|
|
|
|
// Author: Vaclav Slavik
|
|
|
|
// Modified by:
|
|
|
|
// Created: 2003/02/28
|
|
|
|
// RCS-ID: $Id$
|
|
|
|
// Copyright: (c) Vaclav Slavik, 2003
|
2004-05-23 20:53:33 +00:00
|
|
|
// Licence: wxWindows licence
|
2003-02-28 23:37:46 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef __MSGDLG_H__
|
|
|
|
#define __MSGDLG_H__
|
|
|
|
|
2003-08-09 12:38:21 +00:00
|
|
|
#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
|
2003-02-28 23:37:46 +00:00
|
|
|
#pragma interface "msgdlg.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "wx/setup.h"
|
|
|
|
#include "wx/dialog.h"
|
|
|
|
|
|
|
|
// type is an 'or' (|) of wxOK, wxCANCEL, wxYES_NO
|
|
|
|
// Returns wxYES/NO/OK/CANCEL
|
|
|
|
|
|
|
|
WXDLLEXPORT_DATA(extern const wxChar*) wxMessageBoxCaptionStr;
|
|
|
|
|
|
|
|
class WXDLLEXPORT wxMessageDialog: public wxDialog
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
wxMessageDialog(wxWindow *parent, const wxString& message,
|
|
|
|
const wxString& caption = wxMessageBoxCaptionStr,
|
|
|
|
long style = wxOK|wxCENTRE,
|
|
|
|
const wxPoint& pos = wxDefaultPosition);
|
2004-11-27 23:21:12 +00:00
|
|
|
~wxMessageDialog();
|
2003-02-28 23:37:46 +00:00
|
|
|
|
|
|
|
int ShowModal();
|
2004-10-16 19:41:18 +00:00
|
|
|
virtual bool Show( bool WXUNUSED(show) = true ) { return false; };
|
2004-05-02 01:55:29 +00:00
|
|
|
|
|
|
|
protected:
|
|
|
|
// implement some base class methods to do nothing to avoid asserts and
|
|
|
|
// GTK warnings, since this is not a real wxDialog.
|
2004-10-16 19:41:18 +00:00
|
|
|
virtual void DoSetSize(int WXUNUSED(x), int WXUNUSED(y),
|
|
|
|
int WXUNUSED(width), int WXUNUSED(height),
|
|
|
|
int WXUNUSED(sizeFlags) = wxSIZE_AUTO) {}
|
|
|
|
virtual void DoMoveWindow(int WXUNUSED(x), int WXUNUSED(y),
|
|
|
|
int WXUNUSED(width), int WXUNUSED(height)) {}
|
2003-02-28 23:37:46 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
wxString m_caption;
|
|
|
|
wxString m_message;
|
|
|
|
long m_dialogStyle;
|
|
|
|
|
|
|
|
DECLARE_DYNAMIC_CLASS(wxMessageDialog)
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|