2003-02-28 23:37:46 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
2005-03-11 15:34:42 +00:00
|
|
|
// Name: wx/gtk/msgdlg.h
|
2003-02-28 23:37:46 +00:00
|
|
|
// Purpose: wxMessageDialog for GTK+2
|
|
|
|
// Author: Vaclav Slavik
|
|
|
|
// Modified by:
|
|
|
|
// Created: 2003/02/28
|
|
|
|
// RCS-ID: $Id$
|
|
|
|
// Copyright: (c) Vaclav Slavik, 2003
|
2005-03-11 15:34:42 +00:00
|
|
|
// Licence: wxWindows licence
|
2003-02-28 23:37:46 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2007-05-24 12:50:42 +00:00
|
|
|
#ifndef _WX_GTK_MSGDLG_H_
|
|
|
|
#define _WX_GTK_MSGDLG_H_
|
2003-02-28 23:37:46 +00:00
|
|
|
|
2007-05-24 12:50:42 +00:00
|
|
|
class WXDLLEXPORT wxMessageDialog : public wxMessageDialogBase
|
2003-02-28 23:37:46 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
wxMessageDialog(wxWindow *parent, const wxString& message,
|
|
|
|
const wxString& caption = wxMessageBoxCaptionStr,
|
|
|
|
long style = wxOK|wxCENTRE,
|
|
|
|
const wxPoint& pos = wxDefaultPosition);
|
|
|
|
|
2007-05-24 12:50:42 +00:00
|
|
|
virtual 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:
|
2007-05-24 12:50:42 +00:00
|
|
|
// create the real GTK+ dialog: this is done from ShowModal() to allow
|
|
|
|
// changing the message between constructing the dialog and showing it
|
|
|
|
void GTKCreateMsgDialog();
|
2003-02-28 23:37:46 +00:00
|
|
|
|
|
|
|
DECLARE_DYNAMIC_CLASS(wxMessageDialog)
|
|
|
|
};
|
|
|
|
|
2007-05-24 12:50:42 +00:00
|
|
|
#endif // _WX_GTK_MSGDLG_H_
|