]>
Commit | Line | Data |
---|---|---|
0e320a79 DW |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: mdi.h | |
3 | // Purpose: MDI (Multiple Document Interface) classes. | |
4 | // This doesn't have to be implemented just like Windows, | |
5 | // it could be a tabbed design as in wxGTK. | |
75f11ad7 | 6 | // Author: David Webster |
0e320a79 | 7 | // Modified by: |
75f11ad7 | 8 | // Created: 10/10/99 |
0e320a79 | 9 | // RCS-ID: $Id$ |
75f11ad7 DW |
10 | // Copyright: (c) David Webster |
11 | // Licence: wxWindows licence | |
0e320a79 DW |
12 | ///////////////////////////////////////////////////////////////////////////// |
13 | ||
14 | #ifndef _WX_MDI_H_ | |
15 | #define _WX_MDI_H_ | |
16 | ||
0e320a79 DW |
17 | #include "wx/frame.h" |
18 | ||
19 | WXDLLEXPORT_DATA(extern const char*) wxFrameNameStr; | |
20 | WXDLLEXPORT_DATA(extern const char*) wxStatusLineNameStr; | |
21 | ||
22 | class WXDLLEXPORT wxMDIClientWindow; | |
23 | class WXDLLEXPORT wxMDIChildFrame; | |
24 | ||
25 | class WXDLLEXPORT wxMDIParentFrame: public wxFrame | |
26 | { | |
27 | DECLARE_DYNAMIC_CLASS(wxMDIParentFrame) | |
28 | ||
29 | friend class WXDLLEXPORT wxMDIChildFrame; | |
30 | public: | |
31 | ||
32 | wxMDIParentFrame(); | |
33 | inline wxMDIParentFrame(wxWindow *parent, | |
34 | wxWindowID id, | |
35 | const wxString& title, | |
36 | const wxPoint& pos = wxDefaultPosition, | |
37 | const wxSize& size = wxDefaultSize, | |
38 | long style = wxDEFAULT_FRAME_STYLE | wxVSCROLL | wxHSCROLL, // Scrolling refers to client window | |
39 | const wxString& name = wxFrameNameStr) | |
40 | { | |
41 | Create(parent, id, title, pos, size, style, name); | |
42 | } | |
43 | ||
44 | ~wxMDIParentFrame(); | |
45 | ||
46 | bool Create(wxWindow *parent, | |
47 | wxWindowID id, | |
48 | const wxString& title, | |
49 | const wxPoint& pos = wxDefaultPosition, | |
50 | const wxSize& size = wxDefaultSize, | |
51 | long style = wxDEFAULT_FRAME_STYLE | wxVSCROLL | wxHSCROLL, | |
52 | const wxString& name = wxFrameNameStr); | |
53 | ||
75f11ad7 DW |
54 | // accessors |
55 | // --------- | |
56 | ||
57 | // Get the active MDI child window (Windows only) | |
58 | wxMDIChildFrame *GetActiveChild() const; | |
59 | ||
60 | // Get the client window | |
61 | wxMDIClientWindow *GetClientWindow() const { return m_clientWindow; } | |
62 | ||
63 | // Create the client window class (don't Create the window, | |
64 | // just return a new class) | |
65 | virtual wxMDIClientWindow *OnCreateClient(void); | |
66 | ||
67 | WXHMENU GetWindowMenu() const { return m_windowMenu; } | |
0e320a79 | 68 | |
75f11ad7 DW |
69 | // MDI operations |
70 | // -------------- | |
71 | virtual void Cascade(); | |
72 | virtual void Tile(); | |
73 | virtual void ArrangeIcons(); | |
74 | virtual void ActivateNext(); | |
75 | virtual void ActivatePrevious(); | |
0e320a79 | 76 | |
75f11ad7 DW |
77 | // handlers |
78 | // -------- | |
0e320a79 | 79 | |
75f11ad7 DW |
80 | // Responds to colour changes |
81 | void OnSysColourChanged(wxSysColourChangedEvent& event); | |
0e320a79 | 82 | |
75f11ad7 | 83 | void OnSize(wxSizeEvent& event); |
0e320a79 | 84 | |
75f11ad7 DW |
85 | bool HandleActivate(int state, bool minimized, WXHWND activate); |
86 | bool HandleCommand(WXWORD id, WXWORD cmd, WXHWND control); | |
0e320a79 | 87 | |
75f11ad7 DW |
88 | // override window proc for MDI-specific message processing |
89 | virtual MRESULT OS2WindowProc(HWND hwnd, WXUINT nMsg, WXWPARAM wParam, WXLPARAM lParam); | |
90 | ||
91 | virtual MRESULT OS2DefWindowProc(HWND hwnd, WXUINT, WXWPARAM, WXLPARAM); | |
92 | virtual bool OS2TranslateMessage(WXMSG* msg); | |
0e320a79 DW |
93 | |
94 | protected: | |
75f11ad7 DW |
95 | virtual void InternalSetMenuBar(); |
96 | ||
97 | wxMDIClientWindow * m_clientWindow; | |
98 | wxMDIChildFrame * m_currentChild; | |
99 | WXHMENU m_windowMenu; | |
0e320a79 | 100 | |
75f11ad7 DW |
101 | // TRUE if MDI Frame is intercepting commands, not child |
102 | bool m_parentFrameActive; | |
0e320a79 | 103 | |
75f11ad7 DW |
104 | private: |
105 | friend class WXDLLEXPORT wxMDIChildFrame; | |
106 | ||
107 | DECLARE_EVENT_TABLE() | |
0e320a79 DW |
108 | }; |
109 | ||
110 | class WXDLLEXPORT wxMDIChildFrame: public wxFrame | |
111 | { | |
112 | DECLARE_DYNAMIC_CLASS(wxMDIChildFrame) | |
113 | public: | |
114 | ||
115 | wxMDIChildFrame(); | |
116 | inline wxMDIChildFrame(wxMDIParentFrame *parent, | |
117 | wxWindowID id, | |
118 | const wxString& title, | |
119 | const wxPoint& pos = wxDefaultPosition, | |
120 | const wxSize& size = wxDefaultSize, | |
121 | long style = wxDEFAULT_FRAME_STYLE, | |
122 | const wxString& name = wxFrameNameStr) | |
123 | { | |
124 | Create(parent, id, title, pos, size, style, name); | |
125 | } | |
126 | ||
127 | ~wxMDIChildFrame(); | |
128 | ||
129 | bool Create(wxMDIParentFrame *parent, | |
130 | wxWindowID id, | |
131 | const wxString& title, | |
132 | const wxPoint& pos = wxDefaultPosition, | |
133 | const wxSize& size = wxDefaultSize, | |
134 | long style = wxDEFAULT_FRAME_STYLE, | |
135 | const wxString& name = wxFrameNameStr); | |
136 | ||
75f11ad7 DW |
137 | // MDI operations |
138 | virtual void Maximize(bool maximize = TRUE); | |
139 | virtual void Restore(); | |
140 | virtual void Activate(); | |
0e320a79 | 141 | |
75f11ad7 DW |
142 | // Handlers |
143 | ||
144 | bool HandleMDIActivate(long bActivate, WXHWND, WXHWND); | |
145 | bool HandleSize(int x, int y, WXUINT); | |
146 | bool HandleWindowPosChanging(void *lpPos); | |
147 | bool HandleCommand(WXWORD id, WXWORD cmd, WXHWND control); | |
148 | ||
149 | virtual MRESULT OS2WindowProc(HWND hwnd, WXUINT message, WXWPARAM wParam, WXLPARAM lParam); | |
150 | virtual MRESULT OS2DefWindowProc(HWND hwnd, WXUINT message, WXWPARAM wParam, WXLPARAM lParam); | |
151 | virtual bool OS2TranslateMessage(WXMSG *msg); | |
152 | ||
153 | virtual void OS2DestroyWindow(); | |
154 | ||
155 | // Implementation | |
156 | bool ResetWindowStyle(void *vrect); | |
157 | ||
158 | protected: | |
159 | virtual void DoGetPosition(int *x, int *y) const; | |
160 | virtual void DoSetClientSize(int width, int height); | |
161 | virtual void InternalSetMenuBar(); | |
0e320a79 DW |
162 | }; |
163 | ||
164 | /* The client window is a child of the parent MDI frame, and itself | |
165 | * contains the child MDI frames. | |
166 | * However, you create the MDI children as children of the MDI parent: | |
167 | * only in the implementation does the client window become the parent | |
168 | * of the children. Phew! So the children are sort of 'adopted'... | |
169 | */ | |
170 | ||
171 | class WXDLLEXPORT wxMDIClientWindow: public wxWindow | |
172 | { | |
173 | DECLARE_DYNAMIC_CLASS(wxMDIClientWindow) | |
75f11ad7 | 174 | |
0e320a79 DW |
175 | public: |
176 | ||
75f11ad7 DW |
177 | wxMDIClientWindow() { Init(); } |
178 | wxMDIClientWindow(wxMDIParentFrame *parent, long style = 0) | |
179 | { | |
180 | Init(); | |
0e320a79 | 181 | |
75f11ad7 DW |
182 | CreateClient(parent, style); |
183 | } | |
0e320a79 | 184 | |
75f11ad7 DW |
185 | // Note: this is virtual, to allow overridden behaviour. |
186 | virtual bool CreateClient(wxMDIParentFrame *parent, | |
187 | long style = wxVSCROLL | wxHSCROLL); | |
0e320a79 | 188 | |
75f11ad7 DW |
189 | // Explicitly call default scroll behaviour |
190 | void OnScroll(wxScrollEvent& event); | |
0e320a79 DW |
191 | |
192 | protected: | |
75f11ad7 | 193 | void Init() { m_scrollX = m_scrollY = 0; } |
0e320a79 | 194 | |
75f11ad7 DW |
195 | int m_scrollX, m_scrollY; |
196 | ||
197 | private: | |
198 | DECLARE_EVENT_TABLE() | |
0e320a79 DW |
199 | }; |
200 | ||
201 | #endif | |
202 | // _WX_MDI_H_ |