]>
Commit | Line | Data |
---|---|---|
8cf73271 SC |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: dialog.h | |
3 | // Purpose: wxDialog class | |
4 | // Author: Stefan Csomor | |
5 | // Modified by: | |
6 | // Created: 1998-01-01 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) Stefan Csomor | |
65571936 | 9 | // Licence: wxWindows licence |
8cf73271 SC |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
12 | #ifndef _WX_DIALOG_H_ | |
13 | #define _WX_DIALOG_H_ | |
14 | ||
8cf73271 SC |
15 | #include "wx/panel.h" |
16 | ||
63ec432b | 17 | WXDLLEXPORT_DATA(extern const wxChar) wxDialogNameStr[]; |
8cf73271 | 18 | |
8cf73271 SC |
19 | class WXDLLEXPORT wxMacToolTip ; |
20 | ||
21 | // Dialog boxes | |
22 | class WXDLLEXPORT wxDialog : public wxDialogBase | |
23 | { | |
24 | DECLARE_DYNAMIC_CLASS(wxDialog) | |
25 | ||
26 | public: | |
2c326ada | 27 | wxDialog() { Init(); } |
8cf73271 SC |
28 | |
29 | // Constructor with a modal flag, but no window id - the old convention | |
30 | wxDialog(wxWindow *parent, | |
31 | const wxString& title, bool modal, | |
32 | int x = -1, int y= -1, int width = 500, int height = 500, | |
33 | long style = wxDEFAULT_DIALOG_STYLE, | |
34 | const wxString& name = wxDialogNameStr) | |
35 | { | |
2c326ada DE |
36 | Init(); |
37 | m_isModalStyle = modal; | |
8cf73271 | 38 | Create(parent, -1, title, wxPoint(x, y), wxSize(width, height), |
2c326ada | 39 | style, name); |
8cf73271 SC |
40 | } |
41 | ||
42 | // Constructor with no modal flag - the new convention. | |
43 | wxDialog(wxWindow *parent, wxWindowID id, | |
44 | const wxString& title, | |
45 | const wxPoint& pos = wxDefaultPosition, | |
46 | const wxSize& size = wxDefaultSize, | |
47 | long style = wxDEFAULT_DIALOG_STYLE, | |
48 | const wxString& name = wxDialogNameStr) | |
49 | { | |
2c326ada | 50 | Init(); |
8cf73271 SC |
51 | Create(parent, id, title, pos, size, style, name); |
52 | } | |
53 | ||
54 | bool Create(wxWindow *parent, wxWindowID id, | |
55 | const wxString& title, | |
56 | const wxPoint& pos = wxDefaultPosition, | |
57 | const wxSize& size = wxDefaultSize, | |
58 | long style = wxDEFAULT_DIALOG_STYLE, | |
59 | const wxString& name = wxDialogNameStr); | |
60 | ||
61 | ~wxDialog(); | |
62 | ||
63 | // virtual bool Destroy(); | |
555f645a | 64 | virtual bool Show(bool show = true); |
8cf73271 SC |
65 | |
66 | void SetModal(bool flag); | |
67 | virtual bool IsModal() const; | |
68 | ||
69 | // For now, same as Show(TRUE) but returns return code | |
70 | virtual int ShowModal(); | |
71 | ||
72 | // may be called to terminate the dialog with the given return code | |
73 | virtual void EndModal(int retCode); | |
74 | ||
ab718f6e SC |
75 | // mac also takes command-period as cancel |
76 | virtual bool IsEscapeKey(const wxKeyEvent& event); | |
77 | ||
8cf73271 SC |
78 | // returns TRUE if we're in a modal loop |
79 | bool IsModalShowing() const; | |
80 | ||
81 | // implementation | |
82 | // -------------- | |
83 | ||
8cf73271 SC |
84 | // show modal dialog and enter modal loop |
85 | void DoShowModal(); | |
86 | ||
87 | private: | |
2c326ada | 88 | void Init(); |
2158f4d7 | 89 | |
2c326ada | 90 | bool m_isModalStyle; |
8cf73271 SC |
91 | }; |
92 | ||
93 | #endif | |
94 | // _WX_DIALOG_H_ |