]>
Commit | Line | Data |
---|---|---|
4bb6408c | 1 | ///////////////////////////////////////////////////////////////////////////// |
3b3dc801 | 2 | // Name: src/motif/mdi.cpp |
4bb6408c JS |
3 | // Purpose: MDI classes |
4 | // Author: Julian Smart | |
5 | // Modified by: | |
6 | // Created: 17/09/98 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) Julian Smart | |
65571936 | 9 | // Licence: wxWindows licence |
4bb6408c JS |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
1248b41f MB |
12 | // For compilers that support precompilation, includes "wx.h". |
13 | #include "wx/wxprec.h" | |
14 | ||
16d57d67 JJ |
15 | #ifdef __VMS |
16 | #define XtDisplay XTDISPLAY | |
17 | #define XtWindow XTWINDOW | |
18 | #endif | |
19 | ||
4bb6408c | 20 | #include "wx/mdi.h" |
3b3dc801 WS |
21 | |
22 | #ifndef WX_PRECOMP | |
23 | #include "wx/menu.h" | |
923d28da | 24 | #include "wx/icon.h" |
9eddec69 | 25 | #include "wx/settings.h" |
3b3dc801 WS |
26 | #endif |
27 | ||
338dd992 JJ |
28 | #ifdef __VMS__ |
29 | #pragma message disable nosimpint | |
30 | #endif | |
8704bf74 JS |
31 | #include <Xm/Xm.h> |
32 | #include <Xm/BulletinB.h> | |
33 | #include <Xm/Form.h> | |
34 | #include <Xm/MainW.h> | |
35 | #include <Xm/RowColumn.h> | |
36 | #include <Xm/CascadeBG.h> | |
37 | #include <Xm/Text.h> | |
38 | #include <Xm/PushBG.h> | |
39 | #include <Xm/AtomMgr.h> | |
40 | #include <Xm/Protocols.h> | |
338dd992 JJ |
41 | #ifdef __VMS__ |
42 | #pragma message enable nosimpint | |
43 | #endif | |
8704bf74 | 44 | |
8704bf74 JS |
45 | #include "wx/motif/private.h" |
46 | ||
4bb6408c JS |
47 | extern wxList wxModelessWindows; |
48 | ||
8704bf74 | 49 | // Implemented in frame.cpp |
dfe1eee3 | 50 | extern void wxFrameFocusProc(Widget workArea, XtPointer clientData, |
2d120f83 | 51 | XmAnyCallbackStruct *cbs); |
8704bf74 | 52 | |
621793f4 JS |
53 | #define wxID_NOTEBOOK_CLIENT_AREA wxID_HIGHEST + 100 |
54 | ||
4bb6408c JS |
55 | IMPLEMENT_DYNAMIC_CLASS(wxMDIParentFrame, wxFrame) |
56 | IMPLEMENT_DYNAMIC_CLASS(wxMDIChildFrame, wxFrame) | |
621793f4 | 57 | IMPLEMENT_DYNAMIC_CLASS(wxMDIClientWindow, wxNotebook) |
4bb6408c JS |
58 | |
59 | BEGIN_EVENT_TABLE(wxMDIParentFrame, wxFrame) | |
25b1fc05 VZ |
60 | EVT_SIZE(wxMDIParentFrame::OnSize) |
61 | EVT_ACTIVATE(wxMDIParentFrame::OnActivate) | |
62 | EVT_SYS_COLOUR_CHANGED(wxMDIParentFrame::OnSysColourChanged) | |
449f38b5 | 63 | EVT_MENU_HIGHLIGHT_ALL(wxMDIParentFrame::OnMenuHighlight) |
4bb6408c JS |
64 | END_EVENT_TABLE() |
65 | ||
621793f4 | 66 | BEGIN_EVENT_TABLE(wxMDIClientWindow, wxNotebook) |
25b1fc05 VZ |
67 | EVT_SCROLL(wxMDIClientWindow::OnScroll) |
68 | EVT_NOTEBOOK_PAGE_CHANGED(wxID_NOTEBOOK_CLIENT_AREA, wxMDIClientWindow::OnPageChanged) | |
4bb6408c JS |
69 | END_EVENT_TABLE() |
70 | ||
4bb6408c JS |
71 | |
72 | // Parent frame | |
73 | ||
74 | wxMDIParentFrame::wxMDIParentFrame() | |
75 | { | |
0d57be45 JS |
76 | m_clientWindow = (wxMDIClientWindow*) NULL; |
77 | m_activeChild = (wxMDIChildFrame*) NULL; | |
621793f4 | 78 | m_activeMenuBar = (wxMenuBar*) NULL; |
4bb6408c JS |
79 | } |
80 | ||
81 | bool wxMDIParentFrame::Create(wxWindow *parent, | |
2d120f83 JS |
82 | wxWindowID id, |
83 | const wxString& title, | |
84 | const wxPoint& pos, | |
85 | const wxSize& size, | |
86 | long style, | |
87 | const wxString& name) | |
4bb6408c | 88 | { |
0d57be45 JS |
89 | m_clientWindow = (wxMDIClientWindow*) NULL; |
90 | m_activeChild = (wxMDIChildFrame*) NULL; | |
621793f4 | 91 | m_activeMenuBar = (wxMenuBar*) NULL; |
dfe1eee3 | 92 | |
8704bf74 JS |
93 | bool success = wxFrame::Create(parent, id, title, pos, size, style, name); |
94 | if (success) | |
95 | { | |
96 | // TODO: app cannot override OnCreateClient since | |
97 | // wxMDIParentFrame::OnCreateClient will still be called | |
98 | // (we're in the constructor). How to resolve? | |
dfe1eee3 | 99 | |
8704bf74 | 100 | m_clientWindow = OnCreateClient(); |
dfe1eee3 | 101 | |
621793f4 JS |
102 | // Uses own style for client style |
103 | m_clientWindow->CreateClient(this, GetWindowStyleFlag()); | |
dfe1eee3 | 104 | |
621793f4 JS |
105 | int w, h; |
106 | GetClientSize(& w, & h); | |
107 | m_clientWindow->SetSize(0, 0, w, h); | |
96be256b | 108 | return true; |
8704bf74 | 109 | } |
4bb6408c | 110 | else |
96be256b | 111 | return false; |
4bb6408c JS |
112 | } |
113 | ||
114 | wxMDIParentFrame::~wxMDIParentFrame() | |
115 | { | |
621793f4 JS |
116 | // Make sure we delete the client window last of all |
117 | RemoveChild(m_clientWindow); | |
dfe1eee3 | 118 | |
8704bf74 | 119 | DestroyChildren(); |
dfe1eee3 | 120 | |
8704bf74 | 121 | delete m_clientWindow; |
621793f4 | 122 | m_clientWindow = NULL; |
4bb6408c JS |
123 | } |
124 | ||
4bb6408c JS |
125 | void wxMDIParentFrame::SetMenuBar(wxMenuBar *menu_bar) |
126 | { | |
621793f4 | 127 | m_frameMenuBar = menu_bar; |
dfe1eee3 | 128 | |
621793f4 | 129 | SetChildMenuBar((wxMDIChildFrame*) NULL); |
4bb6408c JS |
130 | } |
131 | ||
af111fc3 | 132 | void wxMDIParentFrame::OnSize(wxSizeEvent& WXUNUSED(event)) |
4bb6408c | 133 | { |
47d67540 | 134 | #if wxUSE_CONSTRAINTS |
4bb6408c | 135 | if (GetAutoLayout()) |
2d120f83 | 136 | Layout(); |
4bb6408c JS |
137 | #endif |
138 | int x = 0; | |
139 | int y = 0; | |
140 | int width, height; | |
141 | GetClientSize(&width, &height); | |
dfe1eee3 | 142 | |
4bb6408c JS |
143 | if ( GetClientWindow() ) |
144 | GetClientWindow()->SetSize(x, y, width, height); | |
145 | } | |
146 | ||
449f38b5 | 147 | void wxMDIParentFrame::DoGetClientSize(int *width, int *height) const |
25b1fc05 | 148 | { |
449f38b5 | 149 | wxFrame::DoGetClientSize(width, height); |
25b1fc05 VZ |
150 | } |
151 | ||
af111fc3 | 152 | void wxMDIParentFrame::OnActivate(wxActivateEvent& WXUNUSED(event)) |
4bb6408c | 153 | { |
2d120f83 | 154 | // Do nothing |
4bb6408c JS |
155 | } |
156 | ||
157 | // Returns the active MDI child window | |
158 | wxMDIChildFrame *wxMDIParentFrame::GetActiveChild() const | |
159 | { | |
0d57be45 | 160 | return m_activeChild; |
4bb6408c JS |
161 | } |
162 | ||
163 | // Create the client window class (don't Create the window, | |
164 | // just return a new class) | |
165 | wxMDIClientWindow *wxMDIParentFrame::OnCreateClient() | |
166 | { | |
2d120f83 | 167 | return new wxMDIClientWindow ; |
4bb6408c JS |
168 | } |
169 | ||
621793f4 JS |
170 | // Set the child's menu into the parent frame |
171 | void wxMDIParentFrame::SetChildMenuBar(wxMDIChildFrame* child) | |
172 | { | |
173 | wxMenuBar* oldMenuBar = m_activeMenuBar; | |
dfe1eee3 | 174 | |
621793f4 JS |
175 | if (child == (wxMDIChildFrame*) NULL) // No child: use parent frame |
176 | { | |
177 | if (GetMenuBar() && (GetMenuBar() != m_activeMenuBar)) | |
178 | { | |
2d120f83 JS |
179 | // if (m_activeMenuBar) |
180 | // m_activeMenuBar->DestroyMenuBar(); | |
dfe1eee3 | 181 | |
621793f4 JS |
182 | m_activeMenuBar = GetMenuBar(); |
183 | m_activeMenuBar->CreateMenuBar(this); | |
2d120f83 | 184 | /* |
621793f4 | 185 | if (oldMenuBar && XtIsManaged((Widget) oldMenuBar->GetMainWidget())) |
2d120f83 JS |
186 | XtUnmanageChild((Widget) oldMenuBar->GetMainWidget()); |
187 | */ | |
621793f4 | 188 | if (oldMenuBar && oldMenuBar->GetMainWidget()) |
2d120f83 | 189 | XtUnmapWidget((Widget) oldMenuBar->GetMainWidget()); |
dfe1eee3 | 190 | |
621793f4 JS |
191 | } |
192 | } | |
193 | else if (child->GetMenuBar() == (wxMenuBar*) NULL) // No child menu bar: use parent frame | |
194 | { | |
195 | if (GetMenuBar() && (GetMenuBar() != m_activeMenuBar)) | |
196 | { | |
2d120f83 JS |
197 | // if (m_activeMenuBar) |
198 | // m_activeMenuBar->DestroyMenuBar(); | |
621793f4 JS |
199 | m_activeMenuBar = GetMenuBar(); |
200 | m_activeMenuBar->CreateMenuBar(this); | |
2d120f83 | 201 | /* |
621793f4 | 202 | if (oldMenuBar && XtIsManaged((Widget) oldMenuBar->GetMainWidget())) |
2d120f83 JS |
203 | XtUnmanageChild((Widget) oldMenuBar->GetMainWidget()); |
204 | */ | |
621793f4 | 205 | if (oldMenuBar && oldMenuBar->GetMainWidget()) |
2d120f83 | 206 | XtUnmapWidget((Widget) oldMenuBar->GetMainWidget()); |
621793f4 JS |
207 | } |
208 | } | |
209 | else // The child has a menubar | |
210 | { | |
211 | if (child->GetMenuBar() != m_activeMenuBar) | |
212 | { | |
2d120f83 JS |
213 | // if (m_activeMenuBar) |
214 | // m_activeMenuBar->DestroyMenuBar(); | |
dfe1eee3 | 215 | |
621793f4 JS |
216 | m_activeMenuBar = child->GetMenuBar(); |
217 | m_activeMenuBar->CreateMenuBar(this); | |
2d120f83 | 218 | /* |
621793f4 | 219 | if (oldMenuBar && XtIsManaged((Widget) oldMenuBar->GetMainWidget())) |
2d120f83 JS |
220 | XtUnmanageChild((Widget) oldMenuBar->GetMainWidget()); |
221 | */ | |
621793f4 | 222 | if (oldMenuBar && oldMenuBar->GetMainWidget()) |
2d120f83 | 223 | XtUnmapWidget((Widget) oldMenuBar->GetMainWidget()); |
621793f4 JS |
224 | } |
225 | } | |
226 | } | |
227 | ||
228 | // Redirect events to active child first | |
229 | bool wxMDIParentFrame::ProcessEvent(wxEvent& event) | |
230 | { | |
231 | // Stops the same event being processed repeatedly | |
232 | static wxEventType inEvent = wxEVT_NULL; | |
233 | if (inEvent == event.GetEventType()) | |
96be256b | 234 | return false; |
dfe1eee3 | 235 | |
621793f4 | 236 | inEvent = event.GetEventType(); |
dfe1eee3 | 237 | |
96be256b | 238 | bool res = false; |
621793f4 JS |
239 | if (m_activeChild && event.IsKindOf(CLASSINFO(wxCommandEvent))) |
240 | { | |
2d120f83 | 241 | res = m_activeChild->GetEventHandler()->ProcessEvent(event); |
621793f4 | 242 | } |
dfe1eee3 | 243 | |
621793f4 | 244 | if (!res) |
2d120f83 | 245 | res = GetEventHandler()->wxEvtHandler::ProcessEvent(event); |
dfe1eee3 | 246 | |
621793f4 | 247 | inEvent = wxEVT_NULL; |
dfe1eee3 | 248 | |
621793f4 JS |
249 | return res; |
250 | } | |
251 | ||
25b1fc05 VZ |
252 | void wxMDIParentFrame::DoSetSize(int x, int y, |
253 | int width, int height, | |
254 | int sizeFlags) | |
255 | { | |
b23386b2 | 256 | wxWindow::DoSetSize(x, y, width, height, sizeFlags); |
25b1fc05 VZ |
257 | } |
258 | ||
259 | void wxMDIParentFrame::DoSetClientSize(int width, int height) | |
260 | { | |
b23386b2 | 261 | wxWindow::DoSetClientSize(width, height); |
25b1fc05 VZ |
262 | } |
263 | ||
4bb6408c JS |
264 | // Responds to colour changes, and passes event on to children. |
265 | void wxMDIParentFrame::OnSysColourChanged(wxSysColourChangedEvent& event) | |
266 | { | |
267 | // TODO | |
dfe1eee3 | 268 | |
4bb6408c JS |
269 | // Propagate the event to the non-top-level children |
270 | wxFrame::OnSysColourChanged(event); | |
271 | } | |
272 | ||
273 | // MDI operations | |
274 | void wxMDIParentFrame::Cascade() | |
275 | { | |
276 | // TODO | |
277 | } | |
278 | ||
0d97c090 | 279 | void wxMDIParentFrame::Tile(wxOrientation WXUNUSED(orient)) |
4bb6408c JS |
280 | { |
281 | // TODO | |
282 | } | |
283 | ||
284 | void wxMDIParentFrame::ArrangeIcons() | |
285 | { | |
286 | // TODO | |
287 | } | |
288 | ||
289 | void wxMDIParentFrame::ActivateNext() | |
290 | { | |
291 | // TODO | |
292 | } | |
293 | ||
294 | void wxMDIParentFrame::ActivatePrevious() | |
295 | { | |
296 | // TODO | |
297 | } | |
298 | ||
449f38b5 JS |
299 | // Default menu selection behaviour - display a help string |
300 | void wxMDIParentFrame::OnMenuHighlight(wxMenuEvent& event) | |
301 | { | |
302 | if (GetStatusBar()) | |
303 | { | |
304 | if (event.GetMenuId() == -1) | |
3b3dc801 | 305 | SetStatusText(wxEmptyString); |
449f38b5 JS |
306 | else |
307 | { | |
308 | wxMenuBar *menuBar = (wxMenuBar*) NULL; | |
309 | if (GetActiveChild()) | |
310 | menuBar = GetActiveChild()->GetMenuBar(); | |
311 | else | |
312 | menuBar = GetMenuBar(); | |
313 | if (menuBar) | |
314 | { | |
315 | wxString helpString(menuBar->GetHelpString(event.GetMenuId())); | |
3b3dc801 | 316 | if (!helpString.empty()) |
449f38b5 JS |
317 | SetStatusText(helpString); |
318 | } | |
319 | } | |
320 | } | |
321 | } | |
322 | ||
4bb6408c JS |
323 | // Child frame |
324 | ||
325 | wxMDIChildFrame::wxMDIChildFrame() | |
326 | { | |
621793f4 | 327 | m_mdiParentFrame = (wxMDIParentFrame*) NULL; |
4bb6408c JS |
328 | } |
329 | ||
330 | bool wxMDIChildFrame::Create(wxMDIParentFrame *parent, | |
2d120f83 JS |
331 | wxWindowID id, |
332 | const wxString& title, | |
333 | const wxPoint& pos, | |
334 | const wxSize& size, | |
335 | long style, | |
336 | const wxString& name) | |
4bb6408c JS |
337 | { |
338 | SetName(name); | |
af111fc3 | 339 | SetWindowStyleFlag(style); |
dfe1eee3 | 340 | |
4bb6408c JS |
341 | if ( id > -1 ) |
342 | m_windowId = id; | |
343 | else | |
344 | m_windowId = (int)NewControlId(); | |
dfe1eee3 | 345 | |
621793f4 | 346 | wxMDIClientWindow* clientWindow = parent->GetClientWindow(); |
dfe1eee3 | 347 | |
cbaa866f | 348 | wxCHECK_MSG( clientWindow, false, "Missing MDI client window." ); |
dfe1eee3 | 349 | |
cbaa866f | 350 | clientWindow->AddChild(this); |
dfe1eee3 | 351 | |
621793f4 | 352 | SetMDIParentFrame(parent); |
105fbe1f | 353 | PreCreation(); |
dfe1eee3 VZ |
354 | |
355 | int width = size.x; | |
356 | int height = size.y; | |
0d57be45 JS |
357 | if (width == -1) |
358 | width = 200; // TODO: give reasonable default | |
359 | if (height == -1) | |
360 | height = 200; // TODO: give reasonable default | |
dfe1eee3 | 361 | |
0d57be45 JS |
362 | // We're deactivating the old child |
363 | wxMDIChildFrame* oldActiveChild = parent->GetActiveChild(); | |
364 | if (oldActiveChild) | |
365 | { | |
96be256b | 366 | wxActivateEvent event(wxEVT_ACTIVATE, false, oldActiveChild->GetId()); |
0d57be45 JS |
367 | event.SetEventObject( oldActiveChild ); |
368 | oldActiveChild->GetEventHandler()->ProcessEvent(event); | |
369 | } | |
dfe1eee3 | 370 | |
0d57be45 JS |
371 | // This is the currently active child |
372 | parent->SetActiveChild((wxMDIChildFrame*) this); | |
dfe1eee3 | 373 | |
621793f4 JS |
374 | // This time we'll try a bog-standard bulletin board for |
375 | // the 'frame'. A main window doesn't seem to work. | |
dfe1eee3 | 376 | |
621793f4 | 377 | m_mainWidget = (WXWidget) XtVaCreateWidget("client", |
2d120f83 JS |
378 | xmBulletinBoardWidgetClass, (Widget) clientWindow->GetTopWidget(), |
379 | XmNmarginWidth, 0, | |
380 | XmNmarginHeight, 0, | |
381 | /* | |
382 | XmNrightAttachment, XmATTACH_FORM, | |
383 | XmNleftAttachment, XmATTACH_FORM, | |
384 | XmNtopAttachment, XmATTACH_FORM, | |
385 | XmNbottomAttachment, XmATTACH_FORM, | |
386 | */ | |
387 | XmNresizePolicy, XmRESIZE_NONE, | |
388 | NULL); | |
0492c5a0 | 389 | |
96be256b | 390 | XtAddEventHandler((Widget) m_mainWidget, ExposureMask,False, |
2e35f56f | 391 | wxUniversalRepaintProc, (XtPointer) this); |
dfe1eee3 | 392 | |
105fbe1f | 393 | PostCreation(); |
621793f4 | 394 | AttachWidget (parent, m_mainWidget, (WXWidget) NULL, pos.x, pos.y, size.x, size.y); |
dfe1eee3 | 395 | |
621793f4 | 396 | XtManageChild((Widget) m_mainWidget); |
dfe1eee3 | 397 | |
621793f4 | 398 | SetTitle(title); |
dfe1eee3 | 399 | |
96be256b | 400 | clientWindow->AddPage(this, title, true); |
621793f4 | 401 | clientWindow->Refresh(); |
dfe1eee3 | 402 | |
621793f4 JS |
403 | // Positions the toolbar and status bar -- but we don't have any. |
404 | // PreResize(); | |
dfe1eee3 | 405 | |
621793f4 | 406 | wxModelessWindows.Append(this); |
96be256b | 407 | return true; |
4bb6408c JS |
408 | } |
409 | ||
8704bf74 | 410 | |
4bb6408c JS |
411 | wxMDIChildFrame::~wxMDIChildFrame() |
412 | { | |
2e35f56f | 413 | if (m_mainWidget) |
96be256b | 414 | XtRemoveEventHandler((Widget) m_mainWidget, ExposureMask,False, |
2e35f56f | 415 | wxUniversalRepaintProc, (XtPointer) this); |
dfe1eee3 | 416 | |
621793f4 JS |
417 | if (GetMDIParentFrame()) |
418 | { | |
419 | wxMDIParentFrame* parentFrame = GetMDIParentFrame(); | |
dfe1eee3 | 420 | |
621793f4 JS |
421 | if (parentFrame->GetActiveChild() == this) |
422 | parentFrame->SetActiveChild((wxMDIChildFrame*) NULL); | |
423 | wxMDIClientWindow* clientWindow = parentFrame->GetClientWindow(); | |
dfe1eee3 | 424 | |
621793f4 | 425 | // Remove page if still there |
fdfd5d49 MB |
426 | { |
427 | int i = clientWindow->FindPage(this); | |
428 | ||
429 | if (i != -1) | |
430 | { | |
431 | clientWindow->RemovePage(i); | |
432 | clientWindow->Refresh(); | |
433 | } | |
434 | } | |
dfe1eee3 | 435 | |
621793f4 JS |
436 | // Set the selection to the first remaining page |
437 | if (clientWindow->GetPageCount() > 0) | |
438 | { | |
439 | wxMDIChildFrame* child = (wxMDIChildFrame*) clientWindow->GetPage(0); | |
440 | parentFrame->SetActiveChild(child); | |
441 | parentFrame->SetChildMenuBar(child); | |
442 | } | |
443 | else | |
444 | { | |
445 | parentFrame->SetActiveChild((wxMDIChildFrame*) NULL); | |
446 | parentFrame->SetChildMenuBar((wxMDIChildFrame*) NULL); | |
447 | } | |
448 | } | |
4bb6408c JS |
449 | } |
450 | ||
621793f4 | 451 | #if 0 |
0d57be45 JS |
452 | // Implementation: intercept and act upon raise and lower commands. |
453 | void wxMDIChildFrame::OnRaise() | |
454 | { | |
455 | wxMDIParentFrame* parentFrame = (wxMDIParentFrame*) GetParent() ; | |
456 | wxMDIChildFrame* oldActiveChild = parentFrame->GetActiveChild(); | |
457 | parentFrame->SetActiveChild(this); | |
dfe1eee3 | 458 | |
0d57be45 JS |
459 | if (oldActiveChild) |
460 | { | |
96be256b | 461 | wxActivateEvent event(wxEVT_ACTIVATE, false, oldActiveChild->GetId()); |
0d57be45 JS |
462 | event.SetEventObject( oldActiveChild ); |
463 | oldActiveChild->GetEventHandler()->ProcessEvent(event); | |
464 | } | |
dfe1eee3 | 465 | |
96be256b | 466 | wxActivateEvent event(wxEVT_ACTIVATE, true, this->GetId()); |
0d57be45 JS |
467 | event.SetEventObject( this ); |
468 | this->GetEventHandler()->ProcessEvent(event); | |
469 | } | |
470 | ||
471 | void wxMDIChildFrame::OnLower() | |
472 | { | |
473 | wxMDIParentFrame* parentFrame = (wxMDIParentFrame*) GetParent() ; | |
474 | wxMDIChildFrame* oldActiveChild = parentFrame->GetActiveChild(); | |
dfe1eee3 | 475 | |
0d57be45 JS |
476 | if (oldActiveChild == this) |
477 | { | |
96be256b | 478 | wxActivateEvent event(wxEVT_ACTIVATE, false, oldActiveChild->GetId()); |
0d57be45 JS |
479 | event.SetEventObject( oldActiveChild ); |
480 | oldActiveChild->GetEventHandler()->ProcessEvent(event); | |
481 | } | |
482 | // TODO: unfortunately we don't now know which is the top-most child, | |
483 | // so make the active child NULL. | |
484 | parentFrame->SetActiveChild((wxMDIChildFrame*) NULL); | |
485 | } | |
621793f4 | 486 | #endif |
0d57be45 | 487 | |
4bb6408c | 488 | // Set the client size (i.e. leave the calculation of borders etc. |
77ffb593 | 489 | // to wxWidgets) |
9a05fd8d | 490 | void wxMDIChildFrame::DoSetClientSize(int width, int height) |
4bb6408c | 491 | { |
bfc6fde4 | 492 | wxWindow::DoSetClientSize(width, height); |
8704bf74 JS |
493 | } |
494 | ||
449f38b5 | 495 | void wxMDIChildFrame::DoGetClientSize(int* width, int* height) const |
8704bf74 | 496 | { |
449f38b5 | 497 | wxWindow::DoGetSize(width, height); |
8704bf74 JS |
498 | } |
499 | ||
bfc6fde4 | 500 | void wxMDIChildFrame::DoSetSize(int x, int y, int width, int height, int sizeFlags) |
8704bf74 | 501 | { |
bfc6fde4 | 502 | wxWindow::DoSetSize(x, y, width, height, sizeFlags); |
8704bf74 JS |
503 | } |
504 | ||
449f38b5 | 505 | void wxMDIChildFrame::DoGetSize(int* width, int* height) const |
8704bf74 | 506 | { |
449f38b5 | 507 | wxWindow::DoGetSize(width, height); |
4bb6408c JS |
508 | } |
509 | ||
449f38b5 | 510 | void wxMDIChildFrame::DoGetPosition(int *x, int *y) const |
4bb6408c | 511 | { |
449f38b5 | 512 | wxWindow::DoGetPosition(x, y); |
8704bf74 JS |
513 | } |
514 | ||
515 | bool wxMDIChildFrame::Show(bool show) | |
516 | { | |
798a4529 | 517 | SetVisibleStatus( show ); |
621793f4 | 518 | return wxWindow::Show(show); |
4bb6408c JS |
519 | } |
520 | ||
621793f4 | 521 | void wxMDIChildFrame::SetMenuBar(wxMenuBar *menuBar) |
4bb6408c | 522 | { |
621793f4 JS |
523 | // Don't create the underlying menubar yet; need to recreate |
524 | // it every time the child is activated. | |
525 | m_frameMenuBar = menuBar; | |
dfe1eee3 | 526 | |
621793f4 JS |
527 | // We make the assumption that if you're setting the menubar, |
528 | // this is the currently active child. | |
529 | GetMDIParentFrame()->SetChildMenuBar(this); | |
8704bf74 JS |
530 | } |
531 | ||
532 | // Set icon | |
533 | void wxMDIChildFrame::SetIcon(const wxIcon& icon) | |
534 | { | |
f618020a MB |
535 | m_icons = wxIconBundle( icon ); |
536 | ||
537 | if (icon.Ok()) | |
4bb6408c | 538 | { |
dfe1eee3 | 539 | // Not appropriate since there are no icons in |
2d120f83 | 540 | // a tabbed window |
4bb6408c | 541 | } |
8704bf74 JS |
542 | } |
543 | ||
f618020a MB |
544 | void wxMDIChildFrame::SetIcons(const wxIconBundle& icons) |
545 | { | |
546 | m_icons = icons; | |
547 | } | |
548 | ||
8704bf74 JS |
549 | void wxMDIChildFrame::SetTitle(const wxString& title) |
550 | { | |
798a4529 | 551 | wxTopLevelWindow::SetTitle( title ); |
7fe7d506 | 552 | wxMDIClientWindow* clientWindow = GetMDIParentFrame()->GetClientWindow(); |
fdfd5d49 MB |
553 | |
554 | // Remove page if still there | |
555 | { | |
556 | int i = clientWindow->FindPage(this); | |
557 | ||
558 | if (i != -1) | |
559 | clientWindow->SetPageText(i, title); | |
560 | } | |
4bb6408c JS |
561 | } |
562 | ||
563 | // MDI operations | |
564 | void wxMDIChildFrame::Maximize() | |
565 | { | |
621793f4 | 566 | // TODO |
8704bf74 JS |
567 | } |
568 | ||
af111fc3 | 569 | void wxMDIChildFrame::Iconize(bool WXUNUSED(iconize)) |
8704bf74 | 570 | { |
2d120f83 | 571 | // TODO |
8704bf74 JS |
572 | } |
573 | ||
574 | bool wxMDIChildFrame::IsIconized() const | |
575 | { | |
96be256b | 576 | return false; |
4bb6408c JS |
577 | } |
578 | ||
6f63ec3f JS |
579 | // Is it maximized? Always maximized under Motif, using the |
580 | // tabbed MDI implementation. | |
581 | bool wxMDIChildFrame::IsMaximized(void) const | |
582 | { | |
96be256b | 583 | return true; |
6f63ec3f JS |
584 | } |
585 | ||
4bb6408c JS |
586 | void wxMDIChildFrame::Restore() |
587 | { | |
621793f4 | 588 | // TODO |
4bb6408c JS |
589 | } |
590 | ||
591 | void wxMDIChildFrame::Activate() | |
592 | { | |
621793f4 JS |
593 | // TODO |
594 | } | |
595 | ||
596 | void wxMDIChildFrame::CaptureMouse() | |
597 | { | |
2d120f83 | 598 | wxWindow::CaptureMouse(); |
621793f4 JS |
599 | } |
600 | ||
601 | void wxMDIChildFrame::ReleaseMouse() | |
602 | { | |
2d120f83 | 603 | wxWindow::ReleaseMouse(); |
621793f4 JS |
604 | } |
605 | ||
606 | void wxMDIChildFrame::Raise() | |
607 | { | |
2d120f83 | 608 | wxWindow::Raise(); |
621793f4 JS |
609 | } |
610 | ||
611 | void wxMDIChildFrame::Lower(void) | |
612 | { | |
2d120f83 | 613 | wxWindow::Raise(); |
621793f4 JS |
614 | } |
615 | ||
024f89f9 | 616 | void wxMDIChildFrame::DoSetSizeHints(int WXUNUSED(minW), int WXUNUSED(minH), int WXUNUSED(maxW), int WXUNUSED(maxH), int WXUNUSED(incW), int WXUNUSED(incH)) |
621793f4 | 617 | { |
4bb6408c JS |
618 | } |
619 | ||
620 | // Client window | |
621 | ||
622 | wxMDIClientWindow::wxMDIClientWindow() | |
623 | { | |
624 | } | |
625 | ||
626 | wxMDIClientWindow::~wxMDIClientWindow() | |
627 | { | |
621793f4 | 628 | // By the time this destructor is called, the child frames will have been |
2d120f83 | 629 | // deleted and removed from the notebook/client window. |
8704bf74 | 630 | DestroyChildren(); |
dfe1eee3 | 631 | |
8704bf74 | 632 | m_mainWidget = (WXWidget) 0; |
4bb6408c JS |
633 | } |
634 | ||
635 | bool wxMDIClientWindow::CreateClient(wxMDIParentFrame *parent, long style) | |
636 | { | |
af111fc3 JS |
637 | SetWindowStyleFlag(style); |
638 | ||
7fe7d506 JS |
639 | bool success = wxNotebook::Create(parent, wxID_NOTEBOOK_CLIENT_AREA, wxPoint(0, 0), wxSize(100, 100), 0); |
640 | if (success) | |
641 | { | |
96be256b | 642 | return true; |
7fe7d506 JS |
643 | } |
644 | else | |
96be256b | 645 | return false; |
8704bf74 JS |
646 | } |
647 | ||
fdfd5d49 MB |
648 | int wxMDIClientWindow::FindPage(const wxNotebookPage* page) |
649 | { | |
650 | for (int i = GetPageCount() - 1; i >= 0; --i) | |
651 | { | |
652 | if (GetPage(i) == page) | |
653 | return i; | |
654 | } | |
655 | ||
656 | return -1; | |
657 | } | |
658 | ||
bfc6fde4 | 659 | void wxMDIClientWindow::DoSetSize(int x, int y, int width, int height, int sizeFlags) |
8704bf74 | 660 | { |
bfc6fde4 | 661 | wxWindow::DoSetSize(x, y, width, height, sizeFlags); |
8704bf74 | 662 | } |
4bb6408c | 663 | |
bfc6fde4 | 664 | void wxMDIClientWindow::DoSetClientSize(int width, int height) |
8704bf74 | 665 | { |
bfc6fde4 | 666 | wxWindow::DoSetClientSize(width, height); |
8704bf74 JS |
667 | } |
668 | ||
449f38b5 | 669 | void wxMDIClientWindow::DoGetClientSize(int *width, int *height) const |
8704bf74 | 670 | { |
449f38b5 | 671 | wxWindow::DoGetClientSize(width, height); |
8704bf74 JS |
672 | } |
673 | ||
449f38b5 | 674 | void wxMDIClientWindow::DoGetSize(int *width, int *height) const |
8704bf74 | 675 | { |
449f38b5 | 676 | wxWindow::DoGetSize(width, height); |
8704bf74 JS |
677 | } |
678 | ||
449f38b5 | 679 | void wxMDIClientWindow::DoGetPosition(int *x, int *y) const |
8704bf74 | 680 | { |
449f38b5 | 681 | wxWindow::DoGetPosition(x, y); |
4bb6408c JS |
682 | } |
683 | ||
45f22d48 | 684 | void wxMDIClientWindow::OnScroll(wxScrollEvent& event) |
4bb6408c | 685 | { |
45f22d48 JS |
686 | // Default(); // Default processing: OBSOLETE FUNCTION |
687 | event.Skip(); | |
4bb6408c JS |
688 | } |
689 | ||
621793f4 JS |
690 | void wxMDIClientWindow::OnPageChanged(wxNotebookEvent& event) |
691 | { | |
692 | // Notify child that it has been activated | |
693 | if (event.GetOldSelection() != -1) | |
694 | { | |
695 | wxMDIChildFrame* oldChild = (wxMDIChildFrame*) GetPage(event.GetOldSelection()); | |
696 | if (oldChild) | |
697 | { | |
96be256b | 698 | wxActivateEvent event(wxEVT_ACTIVATE, false, oldChild->GetId()); |
621793f4 JS |
699 | event.SetEventObject( oldChild ); |
700 | oldChild->GetEventHandler()->ProcessEvent(event); | |
701 | } | |
702 | } | |
7fe7d506 | 703 | if (event.GetSelection() != -1) |
621793f4 | 704 | { |
2d120f83 JS |
705 | wxMDIChildFrame* activeChild = (wxMDIChildFrame*) GetPage(event.GetSelection()); |
706 | if (activeChild) | |
621793f4 | 707 | { |
96be256b | 708 | wxActivateEvent event(wxEVT_ACTIVATE, true, activeChild->GetId()); |
2d120f83 JS |
709 | event.SetEventObject( activeChild ); |
710 | activeChild->GetEventHandler()->ProcessEvent(event); | |
dfe1eee3 | 711 | |
2d120f83 JS |
712 | if (activeChild->GetMDIParentFrame()) |
713 | { | |
714 | activeChild->GetMDIParentFrame()->SetActiveChild(activeChild); | |
715 | activeChild->GetMDIParentFrame()->SetChildMenuBar(activeChild); | |
716 | } | |
621793f4 JS |
717 | } |
718 | } | |
719 | event.Skip(); | |
720 | } |