]>
Commit | Line | Data |
---|---|---|
0dbd6262 SC |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: dialog.h | |
3 | // Purpose: wxDialog class | |
4 | // Author: AUTHOR | |
5 | // Modified by: | |
6 | // Created: ??/??/98 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) AUTHOR | |
9 | // Licence: wxWindows licence | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | #ifndef _WX_DIALOG_H_ | |
13 | #define _WX_DIALOG_H_ | |
14 | ||
15 | #ifdef __GNUG__ | |
16 | #pragma interface "dialog.h" | |
17 | #endif | |
18 | ||
19 | #include "wx/panel.h" | |
20 | ||
21 | WXDLLEXPORT_DATA(extern const char*) wxDialogNameStr; | |
22 | ||
e7549107 SC |
23 | WXDLLEXPORT_DATA(extern const wxChar*) wxDialogNameStr; |
24 | ||
25 | class WXDLLEXPORT wxMacToolTip ; | |
26 | ||
0dbd6262 | 27 | // Dialog boxes |
e7549107 | 28 | class WXDLLEXPORT wxDialog : public wxDialogBase |
0dbd6262 | 29 | { |
e7549107 SC |
30 | DECLARE_DYNAMIC_CLASS(wxDialog) |
31 | ||
0dbd6262 | 32 | public: |
e7549107 SC |
33 | wxDialog(); |
34 | ||
35 | // Constructor with a modal flag, but no window id - the old convention | |
36 | wxDialog(wxWindow *parent, | |
37 | const wxString& title, bool modal, | |
38 | int x = -1, int y= -1, int width = 500, int height = 500, | |
39 | long style = wxDEFAULT_DIALOG_STYLE, | |
40 | const wxString& name = wxDialogNameStr) | |
41 | { | |
42 | long modalStyle = modal ? wxDIALOG_MODAL : wxDIALOG_MODELESS ; | |
43 | Create(parent, -1, title, wxPoint(x, y), wxSize(width, height), | |
44 | style | modalStyle, name); | |
45 | } | |
46 | ||
47 | // Constructor with no modal flag - the new convention. | |
48 | wxDialog(wxWindow *parent, wxWindowID id, | |
49 | const wxString& title, | |
50 | const wxPoint& pos = wxDefaultPosition, | |
51 | const wxSize& size = wxDefaultSize, | |
52 | long style = wxDEFAULT_DIALOG_STYLE, | |
53 | const wxString& name = wxDialogNameStr) | |
54 | { | |
55 | Create(parent, id, title, pos, size, style, name); | |
56 | } | |
57 | ||
58 | bool Create(wxWindow *parent, wxWindowID id, | |
59 | const wxString& title, | |
60 | const wxPoint& pos = wxDefaultPosition, | |
61 | const wxSize& size = wxDefaultSize, | |
62 | long style = wxDEFAULT_DIALOG_STYLE, | |
63 | const wxString& name = wxDialogNameStr); | |
64 | ||
65 | ~wxDialog(); | |
66 | ||
67 | virtual bool Destroy(); | |
05adb9d2 SC |
68 | bool Show(bool show); |
69 | void Iconize(bool iconize); | |
70 | virtual bool IsIconized() const; | |
e7549107 | 71 | |
05adb9d2 | 72 | virtual bool IsTopLevel() const { return TRUE; } |
e7549107 | 73 | |
05adb9d2 SC |
74 | void SetModal(bool flag); |
75 | virtual bool IsModal() const; | |
e7549107 | 76 | |
05adb9d2 SC |
77 | // For now, same as Show(TRUE) but returns return code |
78 | virtual int ShowModal(); | |
79 | ||
80 | // may be called to terminate the dialog with the given return code | |
81 | virtual void EndModal(int retCode); | |
82 | ||
83 | // returns TRUE if we're in a modal loop | |
84 | bool IsModalShowing() const; | |
e7549107 SC |
85 | |
86 | #if WXWIN_COMPATIBILITY | |
87 | bool Iconized() const { return IsIconized(); }; | |
88 | #endif | |
89 | ||
05adb9d2 SC |
90 | // implementation |
91 | // -------------- | |
e7549107 | 92 | |
05adb9d2 | 93 | // event handlers |
e7549107 SC |
94 | bool OnClose(); |
95 | void OnCharHook(wxKeyEvent& event); | |
e7549107 SC |
96 | void OnCloseWindow(wxCloseEvent& event); |
97 | ||
e7549107 SC |
98 | // Standard buttons |
99 | void OnOK(wxCommandEvent& event); | |
100 | void OnApply(wxCommandEvent& event); | |
101 | void OnCancel(wxCommandEvent& event); | |
102 | ||
103 | // Responds to colour changes | |
104 | void OnSysColourChanged(wxSysColourChangedEvent& event); | |
105 | ||
05adb9d2 SC |
106 | // override more base class virtuals |
107 | virtual void DoGetPosition(int *x, int *y) const; | |
108 | virtual void DoSetClientSize(int width, int height); | |
e7549107 | 109 | |
05adb9d2 SC |
110 | // show modal dialog and enter modal loop |
111 | void DoShowModal(); | |
0dbd6262 | 112 | |
e7549107 SC |
113 | private: |
114 | DECLARE_EVENT_TABLE() | |
0dbd6262 SC |
115 | }; |
116 | ||
117 | #endif | |
118 | // _WX_DIALOG_H_ |