]> git.saurik.com Git - wxWidgets.git/blame - include/wx/mac/msgdlg.h
implemented missing copy constructor (needed for non trivial member)
[wxWidgets.git] / include / wx / mac / msgdlg.h
CommitLineData
0dbd6262
SC
1/////////////////////////////////////////////////////////////////////////////
2// Name: msgdlg.h
3// Purpose: wxMessageDialog class. Use generic version if no
4// platform-specific implementation.
5// Author: AUTHOR
6// Modified by:
7// Created: ??/??/98
8// RCS-ID: $Id$
9// Copyright: (c) AUTHOR
10// Licence: wxWindows licence
11/////////////////////////////////////////////////////////////////////////////
12
13#ifndef _WX_MSGBOXDLG_H_
14#define _WX_MSGBOXDLG_H_
15
16#ifdef __GNUG__
17#pragma interface "msgdlg.h"
18#endif
19
20#include "wx/setup.h"
21#include "wx/dialog.h"
22
23/*
24 * Message box dialog
25 */
26
27WXDLLEXPORT_DATA(extern const char*) wxMessageBoxCaptionStr;
28
29class WXDLLEXPORT wxMessageDialog: public wxDialog
30{
31DECLARE_DYNAMIC_CLASS(wxMessageDialog)
32protected:
33 wxString m_caption;
34 wxString m_message;
35 long m_dialogStyle;
36 wxWindow * m_parent;
37public:
38 wxMessageDialog(wxWindow *parent, const wxString& message, const wxString& caption = wxMessageBoxCaptionStr,
39 long style = wxOK|wxCENTRE, const wxPoint& pos = wxDefaultPosition);
40
41 int ShowModal();
d45fb985
RR
42
43 // not supported for message dialog, RR
44 virtual void DoSetSize(int x, int y,
45 int width, int height,
46 int sizeFlags = wxSIZE_AUTO) {}
47
0dbd6262
SC
48};
49
0dbd6262
SC
50#endif
51 // _WX_MSGBOXDLG_H_