]>
Commit | Line | Data |
---|---|---|
c801d85f KB |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: mdi.cpp | |
3 | // Purpose: MDI sample | |
4 | // Author: Julian Smart | |
5 | // Modified by: | |
6 | // Created: 04/01/98 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) Julian Smart and Markus Holzem | |
c52d95b4 | 9 | // Licence: wxWindows license |
c801d85f KB |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
c52d95b4 VZ |
12 | // =========================================================================== |
13 | // declarations | |
14 | // =========================================================================== | |
15 | ||
16 | // --------------------------------------------------------------------------- | |
17 | // headers | |
18 | // --------------------------------------------------------------------------- | |
19 | ||
c801d85f KB |
20 | // For compilers that support precompilation, includes "wx/wx.h". |
21 | #include "wx/wxprec.h" | |
22 | ||
23 | #ifdef __BORLANDC__ | |
c52d95b4 | 24 | #pragma hdrstop |
c801d85f KB |
25 | #endif |
26 | ||
27 | #ifndef WX_PRECOMP | |
c52d95b4 VZ |
28 | #include "wx/wx.h" |
29 | #include "wx/mdi.h" | |
c801d85f KB |
30 | #endif |
31 | ||
012f2cb2 | 32 | #include "wx/toolbar.h" |
c801d85f | 33 | |
618f2efa | 34 | #if defined(__WXGTK__) || defined(__WXX11__) || defined(__WXMOTIF__) || defined(__WXMAC__) |
c52d95b4 | 35 | #include "mondrian.xpm" |
716b7364 RR |
36 | #endif |
37 | ||
d04d32c4 CE |
38 | #include "bitmaps/new.xpm" |
39 | #include "bitmaps/open.xpm" | |
40 | #include "bitmaps/save.xpm" | |
41 | #include "bitmaps/copy.xpm" | |
42 | #include "bitmaps/cut.xpm" | |
43 | #include "bitmaps/paste.xpm" | |
44 | #include "bitmaps/print.xpm" | |
45 | #include "bitmaps/help.xpm" | |
46 | ||
47 | ||
c801d85f KB |
48 | #include "mdi.h" |
49 | ||
c52d95b4 VZ |
50 | IMPLEMENT_APP(MyApp) |
51 | ||
52 | // --------------------------------------------------------------------------- | |
53 | // global variables | |
54 | // --------------------------------------------------------------------------- | |
55 | ||
c67daf87 | 56 | MyFrame *frame = (MyFrame *) NULL; |
c801d85f KB |
57 | wxList my_children; |
58 | ||
c801d85f | 59 | // For drawing lines in a canvas |
c52d95b4 VZ |
60 | static long xpos = -1; |
61 | static long ypos = -1; | |
62 | ||
63 | static int gs_nFrames = 0; | |
64 | ||
65 | // --------------------------------------------------------------------------- | |
66 | // event tables | |
67 | // --------------------------------------------------------------------------- | |
68 | ||
69 | BEGIN_EVENT_TABLE(MyFrame, wxMDIParentFrame) | |
70 | EVT_MENU(MDI_ABOUT, MyFrame::OnAbout) | |
71 | EVT_MENU(MDI_NEW_WINDOW, MyFrame::OnNewWindow) | |
72 | EVT_MENU(MDI_QUIT, MyFrame::OnQuit) | |
73 | ||
74 | EVT_CLOSE(MyFrame::OnClose) | |
75 | ||
76 | EVT_SIZE(MyFrame::OnSize) | |
77 | END_EVENT_TABLE() | |
78 | ||
79 | // Note that MDI_NEW_WINDOW and MDI_ABOUT commands get passed | |
80 | // to the parent window for processing, so no need to | |
81 | // duplicate event handlers here. | |
82 | BEGIN_EVENT_TABLE(MyChild, wxMDIChildFrame) | |
83 | EVT_MENU(MDI_CHILD_QUIT, MyChild::OnQuit) | |
84 | EVT_MENU(MDI_REFRESH, MyChild::OnRefresh) | |
f6bcfd97 | 85 | EVT_MENU(MDI_CHANGE_TITLE, MyChild::OnChangeTitle) |
3d8dea7e VZ |
86 | EVT_MENU(MDI_CHANGE_POSITION, MyChild::OnChangePosition) |
87 | EVT_MENU(MDI_CHANGE_SIZE, MyChild::OnChangeSize) | |
88 | ||
3d8dea7e VZ |
89 | EVT_SIZE(MyChild::OnSize) |
90 | EVT_MOVE(MyChild::OnMove) | |
c52d95b4 VZ |
91 | |
92 | EVT_CLOSE(MyChild::OnClose) | |
93 | END_EVENT_TABLE() | |
94 | ||
95 | BEGIN_EVENT_TABLE(MyCanvas, wxScrolledWindow) | |
96 | EVT_MOUSE_EVENTS(MyCanvas::OnEvent) | |
97 | END_EVENT_TABLE() | |
98 | ||
99 | // =========================================================================== | |
100 | // implementation | |
101 | // =========================================================================== | |
c801d85f | 102 | |
c52d95b4 VZ |
103 | // --------------------------------------------------------------------------- |
104 | // MyApp | |
105 | // --------------------------------------------------------------------------- | |
c801d85f KB |
106 | |
107 | // Initialise this in OnInit, not statically | |
c52d95b4 | 108 | bool MyApp::OnInit() |
c801d85f | 109 | { |
c52d95b4 | 110 | // Create the main frame window |
c801d85f | 111 | |
c52d95b4 VZ |
112 | frame = new MyFrame((wxFrame *)NULL, -1, "MDI Demo", |
113 | wxPoint(-1, -1), wxSize(500, 400), | |
114 | wxDEFAULT_FRAME_STYLE | wxHSCROLL | wxVSCROLL); | |
df61c009 JS |
115 | #ifdef __WXMSW__ |
116 | #if 0 | |
117 | // Experimental: change the window menu | |
118 | wxMenu* windowMenu = new wxMenu; | |
119 | windowMenu->Append(5000, "My menu item!"); | |
120 | frame->SetWindowMenu(windowMenu); | |
121 | #endif | |
122 | #endif | |
c801d85f | 123 | |
c52d95b4 | 124 | // Give it an icon |
2049ba38 | 125 | #ifdef __WXMSW__ |
c52d95b4 | 126 | frame->SetIcon(wxIcon("mdi_icn")); |
52cbfcf0 | 127 | #else |
c52d95b4 | 128 | frame->SetIcon(wxIcon( mondrian_xpm )); |
c801d85f | 129 | #endif |
c801d85f | 130 | |
c52d95b4 VZ |
131 | // Make a menubar |
132 | wxMenu *file_menu = new wxMenu; | |
c801d85f | 133 | |
f6bcfd97 BP |
134 | file_menu->Append(MDI_NEW_WINDOW, "&New window\tCtrl-N", "Create a new child window"); |
135 | file_menu->Append(MDI_QUIT, "&Exit\tAlt-X", "Quit the program"); | |
c801d85f | 136 | |
c52d95b4 | 137 | wxMenu *help_menu = new wxMenu; |
f6bcfd97 | 138 | help_menu->Append(MDI_ABOUT, "&About\tF1"); |
c801d85f | 139 | |
c52d95b4 | 140 | wxMenuBar *menu_bar = new wxMenuBar; |
c801d85f | 141 | |
c52d95b4 VZ |
142 | menu_bar->Append(file_menu, "&File"); |
143 | menu_bar->Append(help_menu, "&Help"); | |
c801d85f | 144 | |
c52d95b4 VZ |
145 | // Associate the menu bar with the frame |
146 | frame->SetMenuBar(menu_bar); | |
c801d85f | 147 | |
c52d95b4 | 148 | frame->CreateStatusBar(); |
c801d85f | 149 | |
c52d95b4 | 150 | frame->Show(TRUE); |
c801d85f | 151 | |
c52d95b4 | 152 | SetTopWindow(frame); |
c801d85f | 153 | |
c52d95b4 | 154 | return TRUE; |
c801d85f KB |
155 | } |
156 | ||
c52d95b4 VZ |
157 | // --------------------------------------------------------------------------- |
158 | // MyFrame | |
159 | // --------------------------------------------------------------------------- | |
c801d85f KB |
160 | |
161 | // Define my frame constructor | |
c52d95b4 VZ |
162 | MyFrame::MyFrame(wxWindow *parent, |
163 | const wxWindowID id, | |
164 | const wxString& title, | |
165 | const wxPoint& pos, | |
166 | const wxSize& size, | |
167 | const long style) | |
3ebcfb76 VZ |
168 | : wxMDIParentFrame(parent, id, title, pos, size, |
169 | style | wxNO_FULL_REPAINT_ON_RESIZE) | |
c801d85f | 170 | { |
c52d95b4 VZ |
171 | textWindow = new wxTextCtrl(this, -1, "A help window", |
172 | wxDefaultPosition, wxDefaultSize, | |
173 | wxTE_MULTILINE | wxSUNKEN_BORDER); | |
c801d85f | 174 | |
fa762db4 | 175 | CreateToolBar(wxNO_BORDER | wxTB_FLAT | wxTB_HORIZONTAL); |
81d66cf3 | 176 | InitToolBar(GetToolBar()); |
57a7b7c1 | 177 | |
57a7b7c1 JS |
178 | // Accelerators |
179 | wxAcceleratorEntry entries[3]; | |
180 | entries[0].Set(wxACCEL_CTRL, (int) 'N', MDI_NEW_WINDOW); | |
181 | entries[1].Set(wxACCEL_CTRL, (int) 'X', MDI_QUIT); | |
182 | entries[2].Set(wxACCEL_CTRL, (int) 'A', MDI_ABOUT); | |
183 | wxAcceleratorTable accel(3, entries); | |
184 | SetAcceleratorTable(accel); | |
c801d85f KB |
185 | } |
186 | ||
c52d95b4 VZ |
187 | void MyFrame::OnClose(wxCloseEvent& event) |
188 | { | |
189 | if ( event.CanVeto() && (gs_nFrames > 0) ) | |
190 | { | |
191 | wxString msg; | |
ddb6bc71 | 192 | msg.Printf(_T("%d windows still open, close anyhow?"), gs_nFrames); |
c52d95b4 VZ |
193 | if ( wxMessageBox(msg, "Please confirm", |
194 | wxICON_QUESTION | wxYES_NO) != wxYES ) | |
195 | { | |
196 | event.Veto(); | |
197 | ||
198 | return; | |
199 | } | |
200 | } | |
201 | ||
202 | event.Skip(); | |
203 | } | |
204 | ||
205 | void MyFrame::OnQuit(wxCommandEvent& WXUNUSED(event)) | |
c801d85f | 206 | { |
c52d95b4 | 207 | Close(); |
c801d85f KB |
208 | } |
209 | ||
e3e65dac | 210 | void MyFrame::OnAbout(wxCommandEvent& WXUNUSED(event) ) |
c801d85f | 211 | { |
c52d95b4 VZ |
212 | (void)wxMessageBox("wxWindows 2.0 MDI Demo\n" |
213 | "Author: Julian Smart (c) 1997\n" | |
214 | "Usage: mdi.exe", "About MDI Demo"); | |
c801d85f KB |
215 | } |
216 | ||
e3e65dac | 217 | void MyFrame::OnNewWindow(wxCommandEvent& WXUNUSED(event) ) |
c801d85f | 218 | { |
c52d95b4 VZ |
219 | // Make another frame, containing a canvas |
220 | MyChild *subframe = new MyChild(frame, "Canvas Frame", | |
221 | wxPoint(-1, -1), wxSize(-1, -1), | |
222 | wxDEFAULT_FRAME_STYLE); | |
c801d85f | 223 | |
c52d95b4 | 224 | wxString title; |
ddb6bc71 | 225 | title.Printf(_T("Canvas Frame %d"), ++gs_nFrames); |
c801d85f | 226 | |
c52d95b4 VZ |
227 | subframe->SetTitle(title); |
228 | ||
229 | // Give it an icon | |
2049ba38 | 230 | #ifdef __WXMSW__ |
c52d95b4 | 231 | subframe->SetIcon(wxIcon("chrt_icn")); |
8704bf74 | 232 | #else |
c52d95b4 | 233 | subframe->SetIcon(wxIcon( mondrian_xpm )); |
c801d85f KB |
234 | #endif |
235 | ||
c52d95b4 VZ |
236 | // Make a menubar |
237 | wxMenu *file_menu = new wxMenu; | |
238 | ||
fa762db4 | 239 | file_menu->Append(MDI_NEW_WINDOW, "&New window"); |
c52d95b4 | 240 | file_menu->Append(MDI_CHILD_QUIT, "&Close child", "Close this window"); |
fa762db4 | 241 | file_menu->Append(MDI_QUIT, "&Exit"); |
c801d85f | 242 | |
c52d95b4 | 243 | wxMenu *option_menu = new wxMenu; |
c801d85f | 244 | |
fa762db4 | 245 | option_menu->Append(MDI_REFRESH, "&Refresh picture"); |
f6bcfd97 | 246 | option_menu->Append(MDI_CHANGE_TITLE, "Change &title...\tCtrl-T"); |
fa762db4 VZ |
247 | option_menu->AppendSeparator(); |
248 | option_menu->Append(MDI_CHANGE_POSITION, "Move frame\tCtrl-M"); | |
249 | option_menu->Append(MDI_CHANGE_SIZE, "Resize frame\tCtrl-S"); | |
c801d85f | 250 | |
c52d95b4 | 251 | wxMenu *help_menu = new wxMenu; |
fa762db4 | 252 | help_menu->Append(MDI_ABOUT, "&About"); |
c801d85f | 253 | |
c52d95b4 | 254 | wxMenuBar *menu_bar = new wxMenuBar; |
c801d85f | 255 | |
c52d95b4 | 256 | menu_bar->Append(file_menu, "&File"); |
fa762db4 | 257 | menu_bar->Append(option_menu, "&Child"); |
c52d95b4 | 258 | menu_bar->Append(help_menu, "&Help"); |
c801d85f | 259 | |
c52d95b4 VZ |
260 | // Associate the menu bar with the frame |
261 | subframe->SetMenuBar(menu_bar); | |
c801d85f | 262 | |
c41ea66a VZ |
263 | subframe->CreateStatusBar(); |
264 | subframe->SetStatusText(title); | |
265 | ||
c52d95b4 VZ |
266 | int width, height; |
267 | subframe->GetClientSize(&width, &height); | |
268 | MyCanvas *canvas = new MyCanvas(subframe, wxPoint(0, 0), wxSize(width, height)); | |
269 | canvas->SetCursor(wxCursor(wxCURSOR_PENCIL)); | |
270 | subframe->canvas = canvas; | |
c801d85f | 271 | |
c52d95b4 VZ |
272 | // Give it scrollbars |
273 | canvas->SetScrollbars(20, 20, 50, 50); | |
c801d85f | 274 | |
c52d95b4 | 275 | subframe->Show(TRUE); |
c801d85f KB |
276 | } |
277 | ||
b9f933ab | 278 | void MyFrame::OnSize(wxSizeEvent& event) |
c52d95b4 VZ |
279 | { |
280 | int w, h; | |
281 | GetClientSize(&w, &h); | |
282 | ||
283 | textWindow->SetSize(0, 0, 200, h); | |
284 | GetClientWindow()->SetSize(200, 0, w - 200, h); | |
a9c824e9 JS |
285 | |
286 | // FIXME: On wxX11, we need the MDI frame to process this | |
287 | // event, but on other platforms this should not | |
288 | // be done. | |
2b5f62a0 | 289 | #ifdef __WXUNIVERSAL__ |
b9f933ab | 290 | event.Skip(); |
a9c824e9 | 291 | #endif |
c52d95b4 VZ |
292 | } |
293 | ||
294 | void MyFrame::InitToolBar(wxToolBar* toolBar) | |
295 | { | |
296 | wxBitmap* bitmaps[8]; | |
297 | ||
c52d95b4 VZ |
298 | bitmaps[0] = new wxBitmap( new_xpm ); |
299 | bitmaps[1] = new wxBitmap( open_xpm ); | |
300 | bitmaps[2] = new wxBitmap( save_xpm ); | |
301 | bitmaps[3] = new wxBitmap( copy_xpm ); | |
302 | bitmaps[4] = new wxBitmap( cut_xpm ); | |
303 | bitmaps[5] = new wxBitmap( paste_xpm ); | |
304 | bitmaps[6] = new wxBitmap( print_xpm ); | |
305 | bitmaps[7] = new wxBitmap( help_xpm ); | |
c52d95b4 | 306 | |
c52d95b4 | 307 | int width = 24; |
c52d95b4 VZ |
308 | int currentX = 5; |
309 | ||
310 | toolBar->AddTool( MDI_NEW_WINDOW, *(bitmaps[0]), wxNullBitmap, FALSE, currentX, -1, (wxObject *) NULL, "New file"); | |
311 | currentX += width + 5; | |
312 | toolBar->AddTool(1, *bitmaps[1], wxNullBitmap, FALSE, currentX, -1, (wxObject *) NULL, "Open file"); | |
313 | currentX += width + 5; | |
314 | toolBar->AddTool(2, *bitmaps[2], wxNullBitmap, FALSE, currentX, -1, (wxObject *) NULL, "Save file"); | |
315 | currentX += width + 5; | |
316 | toolBar->AddSeparator(); | |
317 | toolBar->AddTool(3, *bitmaps[3], wxNullBitmap, FALSE, currentX, -1, (wxObject *) NULL, "Copy"); | |
318 | currentX += width + 5; | |
319 | toolBar->AddTool(4, *bitmaps[4], wxNullBitmap, FALSE, currentX, -1, (wxObject *) NULL, "Cut"); | |
320 | currentX += width + 5; | |
321 | toolBar->AddTool(5, *bitmaps[5], wxNullBitmap, FALSE, currentX, -1, (wxObject *) NULL, "Paste"); | |
322 | currentX += width + 5; | |
323 | toolBar->AddSeparator(); | |
324 | toolBar->AddTool(6, *bitmaps[6], wxNullBitmap, FALSE, currentX, -1, (wxObject *) NULL, "Print"); | |
325 | currentX += width + 5; | |
326 | toolBar->AddSeparator(); | |
327 | toolBar->AddTool(7, *bitmaps[7], wxNullBitmap, TRUE, currentX, -1, (wxObject *) NULL, "Help"); | |
328 | ||
329 | toolBar->Realize(); | |
330 | ||
331 | int i; | |
332 | for (i = 0; i < 8; i++) | |
333 | delete bitmaps[i]; | |
334 | } | |
335 | ||
336 | // --------------------------------------------------------------------------- | |
337 | // MyCanvas | |
338 | // --------------------------------------------------------------------------- | |
c801d85f KB |
339 | |
340 | // Define a constructor for my canvas | |
c52d95b4 VZ |
341 | MyCanvas::MyCanvas(wxWindow *parent, const wxPoint& pos, const wxSize& size) |
342 | : wxScrolledWindow(parent, -1, pos, size, | |
3ebcfb76 VZ |
343 | wxSUNKEN_BORDER | |
344 | wxNO_FULL_REPAINT_ON_RESIZE | | |
345 | wxVSCROLL | wxHSCROLL) | |
c801d85f | 346 | { |
02800301 | 347 | SetBackgroundColour(wxColour("WHITE")); |
c52d95b4 VZ |
348 | |
349 | m_dirty = FALSE; | |
c801d85f KB |
350 | } |
351 | ||
352 | // Define the repainting behaviour | |
353 | void MyCanvas::OnDraw(wxDC& dc) | |
354 | { | |
c52d95b4 VZ |
355 | dc.SetFont(*wxSWISS_FONT); |
356 | dc.SetPen(*wxGREEN_PEN); | |
357 | dc.DrawLine(0, 0, 200, 200); | |
358 | dc.DrawLine(200, 0, 0, 200); | |
359 | ||
360 | dc.SetBrush(*wxCYAN_BRUSH); | |
361 | dc.SetPen(*wxRED_PEN); | |
362 | dc.DrawRectangle(100, 100, 100, 50); | |
363 | dc.DrawRoundedRectangle(150, 150, 100, 50, 20); | |
364 | ||
365 | dc.DrawEllipse(250, 250, 100, 50); | |
c41ea66a | 366 | #if wxUSE_SPLINES |
c52d95b4 | 367 | dc.DrawSpline(50, 200, 50, 100, 200, 10); |
c41ea66a | 368 | #endif // wxUSE_SPLINES |
c52d95b4 VZ |
369 | dc.DrawLine(50, 230, 200, 230); |
370 | dc.DrawText("This is a test string", 50, 230); | |
371 | ||
372 | wxPoint points[3]; | |
373 | points[0].x = 200; points[0].y = 300; | |
374 | points[1].x = 100; points[1].y = 400; | |
375 | points[2].x = 300; points[2].y = 400; | |
376 | ||
377 | dc.DrawPolygon(3, points); | |
c801d85f KB |
378 | } |
379 | ||
c52d95b4 VZ |
380 | // This implements a tiny doodling program! Drag the mouse using the left |
381 | // button. | |
c801d85f KB |
382 | void MyCanvas::OnEvent(wxMouseEvent& event) |
383 | { | |
c52d95b4 VZ |
384 | wxClientDC dc(this); |
385 | PrepareDC(dc); | |
c801d85f | 386 | |
c52d95b4 | 387 | wxPoint pt(event.GetLogicalPosition(dc)); |
c801d85f | 388 | |
c52d95b4 VZ |
389 | if (xpos > -1 && ypos > -1 && event.Dragging()) |
390 | { | |
391 | dc.SetPen(*wxBLACK_PEN); | |
392 | dc.DrawLine(xpos, ypos, pt.x, pt.y); | |
c801d85f | 393 | |
c52d95b4 VZ |
394 | m_dirty = TRUE; |
395 | } | |
c801d85f | 396 | |
c52d95b4 VZ |
397 | xpos = pt.x; |
398 | ypos = pt.y; | |
399 | } | |
400 | ||
401 | // --------------------------------------------------------------------------- | |
402 | // MyChild | |
403 | // --------------------------------------------------------------------------- | |
404 | ||
405 | MyChild::MyChild(wxMDIParentFrame *parent, const wxString& title, | |
406 | const wxPoint& pos, const wxSize& size, | |
407 | const long style) | |
3ebcfb76 VZ |
408 | : wxMDIChildFrame(parent, -1, title, pos, size, |
409 | style | wxNO_FULL_REPAINT_ON_RESIZE) | |
c801d85f | 410 | { |
c52d95b4 VZ |
411 | canvas = (MyCanvas *) NULL; |
412 | my_children.Append(this); | |
3ebcfb76 VZ |
413 | |
414 | // this should work for MDI frames as well as for normal ones | |
415 | SetSizeHints(100, 100); | |
c801d85f KB |
416 | } |
417 | ||
c52d95b4 | 418 | MyChild::~MyChild() |
c801d85f | 419 | { |
c52d95b4 | 420 | my_children.DeleteObject(this); |
c801d85f KB |
421 | } |
422 | ||
33d0b396 | 423 | void MyChild::OnQuit(wxCommandEvent& WXUNUSED(event)) |
c801d85f | 424 | { |
c52d95b4 VZ |
425 | Close(TRUE); |
426 | } | |
427 | ||
f6bcfd97 BP |
428 | void MyChild::OnRefresh(wxCommandEvent& WXUNUSED(event)) |
429 | { | |
430 | if ( canvas ) | |
431 | canvas->Refresh(); | |
432 | } | |
433 | ||
fa762db4 VZ |
434 | void MyChild::OnChangePosition(wxCommandEvent& WXUNUSED(event)) |
435 | { | |
436 | Move(10, 10); | |
437 | } | |
438 | ||
439 | void MyChild::OnChangeSize(wxCommandEvent& WXUNUSED(event)) | |
440 | { | |
441 | SetClientSize(100, 100); | |
442 | } | |
443 | ||
f6bcfd97 | 444 | void MyChild::OnChangeTitle(wxCommandEvent& WXUNUSED(event)) |
c52d95b4 | 445 | { |
2b5f62a0 | 446 | //#if wxUSE_TEXTDLG |
f6bcfd97 BP |
447 | static wxString s_title = _T("Canvas Frame"); |
448 | ||
449 | wxString title = wxGetTextFromUser(_T("Enter the new title for MDI child"), | |
450 | _T("MDI sample question"), | |
451 | s_title, | |
fa762db4 | 452 | GetParent()->GetParent()); |
f6bcfd97 BP |
453 | if ( !title ) |
454 | return; | |
455 | ||
456 | s_title = title; | |
457 | SetTitle(s_title); | |
2b5f62a0 | 458 | //#endif |
c801d85f KB |
459 | } |
460 | ||
461 | void MyChild::OnActivate(wxActivateEvent& event) | |
462 | { | |
c52d95b4 VZ |
463 | if ( event.GetActive() && canvas ) |
464 | canvas->SetFocus(); | |
c801d85f KB |
465 | } |
466 | ||
fa762db4 VZ |
467 | void MyChild::OnMove(wxMoveEvent& event) |
468 | { | |
469 | // VZ: here everything is totally wrong under MSW, the positions are | |
470 | // different and both wrong (pos2 is off by 2 pixels for me which seems | |
471 | // to be the width of the MDI canvas border) | |
472 | wxPoint pos1 = event.GetPosition(), | |
473 | pos2 = GetPosition(); | |
4693b20c | 474 | wxLogStatus(wxT("position from event: (%d, %d), from frame (%d, %d)"), |
fa762db4 VZ |
475 | pos1.x, pos1.y, pos2.x, pos2.y); |
476 | ||
477 | event.Skip(); | |
478 | } | |
479 | ||
480 | void MyChild::OnSize(wxSizeEvent& event) | |
481 | { | |
482 | // VZ: under MSW the size event carries the client size (quite | |
483 | // unexpectedly) *except* for the very first one which has the full | |
484 | // size... what should it really be? TODO: check under wxGTK | |
485 | wxSize size1 = event.GetSize(), | |
486 | size2 = GetSize(), | |
487 | size3 = GetClientSize(); | |
4693b20c | 488 | wxLogStatus(wxT("size from event: %dx%d, from frame %dx%d, client %dx%d"), |
fa762db4 VZ |
489 | size1.x, size1.y, size2.x, size2.y, size3.x, size3.y); |
490 | ||
491 | event.Skip(); | |
492 | } | |
493 | ||
c52d95b4 | 494 | void MyChild::OnClose(wxCloseEvent& event) |
c801d85f | 495 | { |
c52d95b4 VZ |
496 | if ( canvas && canvas->IsDirty() ) |
497 | { | |
498 | if ( wxMessageBox("Really close?", "Please confirm", | |
499 | wxICON_QUESTION | wxYES_NO) != wxYES ) | |
500 | { | |
501 | event.Veto(); | |
c801d85f | 502 | |
c52d95b4 VZ |
503 | return; |
504 | } | |
505 | } | |
c801d85f | 506 | |
c52d95b4 VZ |
507 | gs_nFrames--; |
508 | ||
509 | event.Skip(); | |
c801d85f KB |
510 | } |
511 | ||
c52d95b4 | 512 |