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