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