]>
Commit | Line | Data |
---|---|---|
c801d85f | 1 | ///////////////////////////////////////////////////////////////////////////// |
80fdcdb9 | 2 | // Name: wx/gtk/dialog.h |
c801d85f KB |
3 | // Purpose: |
4 | // Author: Robert Roebling | |
43a18898 | 5 | // Created: |
58614078 RR |
6 | // Id: $Id$ |
7 | // Copyright: (c) 1998 Robert Roebling | |
65571936 | 8 | // Licence: wxWindows licence |
c801d85f KB |
9 | ///////////////////////////////////////////////////////////////////////////// |
10 | ||
8e6efd1f PC |
11 | #ifndef _WX_GTKDIALOG_H_ |
12 | #define _WX_GTKDIALOG_H_ | |
c801d85f | 13 | |
bfafa628 VZ |
14 | class WXDLLIMPEXP_FWD_CORE wxGUIEventLoop; |
15 | ||
c801d85f KB |
16 | //----------------------------------------------------------------------------- |
17 | // wxDialog | |
18 | //----------------------------------------------------------------------------- | |
19 | ||
20123d49 | 20 | class WXDLLIMPEXP_CORE wxDialog: public wxDialogBase |
c801d85f | 21 | { |
43a18898 | 22 | public: |
68995f26 | 23 | wxDialog() { Init(); } |
bfc6fde4 | 24 | wxDialog( wxWindow *parent, wxWindowID id, |
43a18898 | 25 | const wxString &title, |
2b854a32 VZ |
26 | const wxPoint &pos = wxDefaultPosition, |
27 | const wxSize &size = wxDefaultSize, | |
28 | long style = wxDEFAULT_DIALOG_STYLE, | |
29 | const wxString &name = wxDialogNameStr ); | |
bfc6fde4 VZ |
30 | bool Create( wxWindow *parent, wxWindowID id, |
31 | const wxString &title, | |
32 | const wxPoint &pos = wxDefaultPosition, | |
33 | const wxSize &size = wxDefaultSize, | |
34 | long style = wxDEFAULT_DIALOG_STYLE, | |
35 | const wxString &name = wxDialogNameStr ); | |
a9efc294 | 36 | virtual ~wxDialog(); |
bfc6fde4 | 37 | |
8e6efd1f | 38 | virtual bool Show( bool show = true ); |
bfc6fde4 VZ |
39 | virtual int ShowModal(); |
40 | virtual void EndModal( int retCode ); | |
41 | virtual bool IsModal() const; | |
bfc6fde4 | 42 | |
bfc6fde4 | 43 | // implementation |
23efdd02 | 44 | // -------------- |
bfc6fde4 | 45 | |
bfc6fde4 | 46 | bool m_modalShowing; |
bfc6fde4 | 47 | |
2158f4d7 | 48 | private: |
68995f26 VZ |
49 | // common part of all ctors |
50 | void Init(); | |
bfafa628 | 51 | wxGUIEventLoop *m_modalLoop; |
20e05ffb | 52 | DECLARE_DYNAMIC_CLASS(wxDialog) |
c801d85f KB |
53 | }; |
54 | ||
8e6efd1f | 55 | #endif // _WX_GTKDIALOG_H_ |