1 /////////////////////////////////////////////////////////////////////////////
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart and Markus Holzem
9 // Licence: wxWindows license
10 /////////////////////////////////////////////////////////////////////////////
12 // For compilers that support precompilation, includes "wx/wx.h".
13 #include "wx/wxprec.h"
24 #include <wx/toolbar.h>
27 #include "mondrian.xpm"
28 #include "bitmaps/new.xpm"
29 #include "bitmaps/open.xpm"
30 #include "bitmaps/save.xpm"
31 #include "bitmaps/copy.xpm"
32 #include "bitmaps/cut.xpm"
33 #include "bitmaps/paste.xpm"
34 #include "bitmaps/print.xpm"
35 #include "bitmaps/help.xpm"
41 MyFrame
*frame
= NULL
;
46 // For drawing lines in a canvas
52 // Initialise this in OnInit, not statically
53 bool MyApp::OnInit(void)
55 // Create the main frame window
57 frame
= new MyFrame(NULL
, -1, "MDI Demo", wxPoint(0, 0), wxSize(500, 400),
58 wxDEFAULT_FRAME
| wxHSCROLL
| wxVSCROLL
);
60 // Give it an icon (this is ignored in MDI mode: uses resources)
62 frame
->SetIcon(wxIcon("mdi_icn"));
64 frame
->SetIcon(wxIcon( mondrian_xpm
));
68 wxMenu
*file_menu
= new wxMenu
;
70 file_menu
->Append(MDI_NEW_WINDOW
, "&New window");
71 file_menu
->Append(MDI_QUIT
, "&Exit");
73 wxMenu
*help_menu
= new wxMenu
;
74 help_menu
->Append(MDI_ABOUT
, "&About");
76 wxMenuBar
*menu_bar
= new wxMenuBar
;
78 menu_bar
->Append(file_menu
, "&File");
79 menu_bar
->Append(help_menu
, "&Help");
81 // Associate the menu bar with the frame
82 frame
->SetMenuBar(menu_bar
);
84 frame
->CreateStatusBar();
93 BEGIN_EVENT_TABLE(MyFrame
, wxMDIParentFrame
)
94 EVT_MENU(MDI_ABOUT
, MyFrame::OnAbout
)
95 EVT_MENU(MDI_NEW_WINDOW
, MyFrame::OnNewWindow
)
96 EVT_SIZE(MyFrame::OnSize
)
97 EVT_MENU(MDI_QUIT
, MyFrame::OnQuit
)
100 // Define my frame constructor
101 MyFrame::MyFrame(wxWindow
*parent
, const wxWindowID id
, const wxString
& title
, const wxPoint
& pos
, const wxSize
& size
,
103 wxMDIParentFrame(parent
, id
, title
, pos
, size
, style
)
105 textWindow
= new wxTextCtrl(this, -1, "", wxDefaultPosition
, wxDefaultSize
,
106 wxTE_MULTILINE
|wxSUNKEN_BORDER
);
107 textWindow
->SetValue("A help window");
109 CreateToolBar(wxNO_BORDER
|wxTB_FLAT
|wxTB_HORIZONTAL
);
110 InitToolBar(GetToolBar());
114 wxAcceleratorEntry entries
[3];
115 entries
[0].Set(wxACCEL_CTRL
, (int) 'N', MDI_NEW_WINDOW
);
116 entries
[1].Set(wxACCEL_CTRL
, (int) 'X', MDI_QUIT
);
117 entries
[2].Set(wxACCEL_CTRL
, (int) 'A', MDI_ABOUT
);
118 wxAcceleratorTable
accel(3, entries
);
119 SetAcceleratorTable(accel
);
123 void MyFrame::OnQuit(wxCommandEvent
& WXUNUSED(event
) )
128 void MyFrame::OnAbout(wxCommandEvent
& WXUNUSED(event
) )
130 (void)wxMessageBox("wxWindows 2.0 MDI Demo\nAuthor: Julian Smart (c) 1997\nUsage: mdi.exe", "About MDI Demo");
133 void MyFrame::OnNewWindow(wxCommandEvent
& WXUNUSED(event
) )
135 // Make another frame, containing a canvas
136 MyChild
*subframe
= new MyChild(frame
, "Canvas Frame", wxPoint(-1, -1), wxSize(-1, -1),
140 title
.Printf("Canvas Frame %d", winNumber
);
141 subframe
->SetTitle(title
);
144 // Give it an icon (this is ignored in MDI mode: uses resources)
146 subframe
->SetIcon(wxIcon("chrt_icn"));
149 // Give it a status line
150 subframe
->CreateStatusBar();
153 wxMenu
*file_menu
= new wxMenu
;
155 file_menu
->Append(MDI_NEW_WINDOW
, "&New window");
156 file_menu
->Append(MDI_CHILD_QUIT
, "&Close child");
157 file_menu
->Append(MDI_QUIT
, "&Exit");
159 wxMenu
*option_menu
= new wxMenu
;
162 option_menu
->Append(MDI_REFRESH
, "&Refresh picture");
164 wxMenu
*help_menu
= new wxMenu
;
165 help_menu
->Append(MDI_ABOUT
, "&About");
167 wxMenuBar
*menu_bar
= new wxMenuBar
;
169 menu_bar
->Append(file_menu
, "&File");
170 menu_bar
->Append(option_menu
, "&Options");
171 menu_bar
->Append(help_menu
, "&Help");
173 // Associate the menu bar with the frame
174 subframe
->SetMenuBar(menu_bar
);
177 subframe
->GetClientSize(&width
, &height
);
178 MyCanvas
*canvas
= new MyCanvas(subframe
, wxPoint(0, 0), wxSize(width
, height
));
179 canvas
->SetCursor(wxCursor(wxCURSOR_PENCIL
));
180 subframe
->canvas
= canvas
;
182 // Give it scrollbars
183 canvas
->SetScrollbars(20, 20, 50, 50);
185 subframe
->Show(TRUE
);
188 BEGIN_EVENT_TABLE(MyCanvas
, wxScrolledWindow
)
189 EVT_MOUSE_EVENTS(MyCanvas::OnEvent
)
192 // Define a constructor for my canvas
193 MyCanvas::MyCanvas(wxWindow
*parent
, const wxPoint
& pos
, const wxSize
& size
):
194 wxScrolledWindow(parent
, -1, pos
, size
, wxSUNKEN_BORDER
)
198 // Define the repainting behaviour
199 void MyCanvas::OnDraw(wxDC
& dc
)
201 dc
.SetFont(*wxSWISS_FONT
);
202 dc
.SetPen(*wxGREEN_PEN
);
203 dc
.DrawLine(0, 0, 200, 200);
204 dc
.DrawLine(200, 0, 0, 200);
206 dc
.SetBrush(*wxCYAN_BRUSH
);
207 dc
.SetPen(*wxRED_PEN
);
208 dc
.DrawRectangle(100, 100, 100, 50);
209 dc
.DrawRoundedRectangle(150, 150, 100, 50, 20);
211 dc
.DrawEllipse(250, 250, 100, 50);
212 dc
.DrawSpline(50, 200, 50, 100, 200, 10);
213 dc
.DrawLine(50, 230, 200, 230);
214 dc
.DrawText("This is a test string", 50, 230);
217 points
[0].x
= 200; points
[0].y
= 300;
218 points
[1].x
= 100; points
[1].y
= 400;
219 points
[2].x
= 300; points
[2].y
= 400;
221 dc
.DrawPolygon(3, points
);
224 // This implements a tiny doodling program! Drag the mouse using
226 void MyCanvas::OnEvent(wxMouseEvent
& event
)
231 wxPoint
pt(event
.GetLogicalPosition(dc
));
233 if (xpos
> -1 && ypos
> -1 && event
.Dragging())
235 dc
.SetPen(*wxBLACK_PEN
);
236 dc
.DrawLine(xpos
, ypos
, pt
.x
, pt
.y
);
242 // Define the behaviour for the frame closing
243 // - must delete all frames except for the main one.
244 bool MyFrame::OnClose(void)
246 // Must delete children
247 wxNode
*node
= my_children
.First();
250 MyChild
*child
= (MyChild
*)node
->Data();
251 wxNode
*next
= node
->Next();
259 void MyFrame::OnSize(wxSizeEvent
& WXUNUSED(event
) )
262 GetClientSize(&w
, &h
);
264 textWindow
->SetSize(0, 0, 200, h
);
265 GetClientWindow()->SetSize(200, 0, w
- 200, h
);
268 // Note that MDI_NEW_WINDOW and MDI_ABOUT commands get passed
269 // to the parent window for processing, so no need to
270 // duplicate event handlers here.
272 BEGIN_EVENT_TABLE(MyChild
, wxMDIChildFrame
)
273 EVT_MENU(MDI_CHILD_QUIT
, MyChild::OnQuit
)
276 MyChild::MyChild(wxMDIParentFrame
*parent
, const wxString
& title
, const wxPoint
& pos
, const wxSize
& size
,
278 wxMDIChildFrame(parent
, -1, title
, pos
, size
, style
)
281 my_children
.Append(this);
284 MyChild::~MyChild(void)
286 my_children
.DeleteObject(this);
289 void MyChild::OnQuit(wxCommandEvent
& WXUNUSED(event
))
294 void MyChild::OnActivate(wxActivateEvent
& event
)
296 if (event
.GetActive() && canvas
)
300 bool MyChild::OnClose(void)
305 void MyFrame::InitToolBar(wxToolBar
* toolBar
)
307 wxBitmap
* bitmaps
[8];
310 bitmaps
[0] = new wxBitmap("icon1", wxBITMAP_TYPE_RESOURCE
);
311 bitmaps
[1] = new wxBitmap("icon2", wxBITMAP_TYPE_RESOURCE
);
312 bitmaps
[2] = new wxBitmap("icon3", wxBITMAP_TYPE_RESOURCE
);
313 bitmaps
[3] = new wxBitmap("icon4", wxBITMAP_TYPE_RESOURCE
);
314 bitmaps
[4] = new wxBitmap("icon5", wxBITMAP_TYPE_RESOURCE
);
315 bitmaps
[5] = new wxBitmap("icon6", wxBITMAP_TYPE_RESOURCE
);
316 bitmaps
[6] = new wxBitmap("icon7", wxBITMAP_TYPE_RESOURCE
);
317 bitmaps
[7] = new wxBitmap("icon8", wxBITMAP_TYPE_RESOURCE
);
319 bitmaps
[0] = new wxBitmap( new_xpm
);
320 bitmaps
[1] = new wxBitmap( open_xpm
);
321 bitmaps
[2] = new wxBitmap( save_xpm
);
322 bitmaps
[3] = new wxBitmap( copy_xpm
);
323 bitmaps
[4] = new wxBitmap( cut_xpm
);
324 bitmaps
[5] = new wxBitmap( paste_xpm
);
325 bitmaps
[6] = new wxBitmap( print_xpm
);
326 bitmaps
[7] = new wxBitmap( help_xpm
);
336 toolBar
->AddTool(0, *(bitmaps
[0]), wxNullBitmap
, FALSE
, currentX
, -1, NULL
, "New file");
337 currentX
+= width
+ 5;
338 toolBar
->AddTool(1, *bitmaps
[1], wxNullBitmap
, FALSE
, currentX
, -1, NULL
, "Open file");
339 currentX
+= width
+ 5;
340 toolBar
->AddTool(2, *bitmaps
[2], wxNullBitmap
, FALSE
, currentX
, -1, NULL
, "Save file");
341 currentX
+= width
+ 5;
342 toolBar
->AddSeparator();
343 toolBar
->AddTool(3, *bitmaps
[3], wxNullBitmap
, FALSE
, currentX
, -1, NULL
, "Copy");
344 currentX
+= width
+ 5;
345 toolBar
->AddTool(4, *bitmaps
[4], wxNullBitmap
, FALSE
, currentX
, -1, NULL
, "Cut");
346 currentX
+= width
+ 5;
347 toolBar
->AddTool(5, *bitmaps
[5], wxNullBitmap
, FALSE
, currentX
, -1, NULL
, "Paste");
348 currentX
+= width
+ 5;
349 toolBar
->AddSeparator();
350 toolBar
->AddTool(6, *bitmaps
[6], wxNullBitmap
, FALSE
, currentX
, -1, NULL
, "Print");
351 currentX
+= width
+ 5;
352 toolBar
->AddSeparator();
353 toolBar
->AddTool(7, *bitmaps
[7], wxNullBitmap
, TRUE
, currentX
, -1, NULL
, "Help");
358 for (i
= 0; i
< 8; i
++)