1 /////////////////////////////////////////////////////////////////////////////
4 // Author: Chris Elliott
7 // Licence: wxWindows license
8 /////////////////////////////////////////////////////////////////////////////
10 // ===========================================================================
12 // ===========================================================================
14 // ---------------------------------------------------------------------------
16 // ---------------------------------------------------------------------------
18 // For compilers that support precompilation, includes "wx/wx.h".
19 #include "wx/wxprec.h"
30 #include "wx/toolbar.h"
33 #include "mondrian.xpm"
35 #include "bitmaps/new.xpm"
36 #include "bitmaps/save.xpm"
37 #include "bitmaps/help.xpm"
38 #include "SVGlogo24.xpm"
42 // Define a new application
43 class MyApp
: public wxApp
50 class MyFrame
: public wxMDIParentFrame
57 MyFrame(wxWindow
*parent
, const wxWindowID id
, const wxString
& title
,
58 const wxPoint
& pos
, const wxSize
& size
, const long style
);
60 void InitToolBar(wxToolBar
* toolBar
);
62 void OnSize(wxSizeEvent
& event
);
63 void OnAbout(wxCommandEvent
& event
);
64 void OnNewWindow(wxCommandEvent
& event
);
65 void OnQuit(wxCommandEvent
& event
);
66 void OnClose(wxCloseEvent
& event
);
67 void FileSavePicture (wxCommandEvent
& WXUNUSED(event
) ) ;
73 class MyCanvas
: public wxScrolledWindow
79 MyCanvas(wxWindow
*parent
, const wxPoint
& pos
, const wxSize
& size
);
80 virtual void OnDraw(wxDC
& dc
);
85 class MyChild
: public wxMDIChildFrame
91 //////////////////// Methods
93 MyChild(wxMDIParentFrame
*parent
, const wxString
& title
, const wxPoint
& pos
, const wxSize
& size
, const long style
);
96 void OnActivate(wxActivateEvent
& event
);
97 void OnQuit(wxCommandEvent
& event
);
98 void OnClose(wxCloseEvent
& event
);
99 bool OnSave(wxString filename
) ;
101 DECLARE_EVENT_TABLE()
118 // ---------------------------------------------------------------------------
120 // ---------------------------------------------------------------------------
122 MyFrame
*frame
= (MyFrame
*) NULL
;
124 // ---------------------------------------------------------------------------
126 // ---------------------------------------------------------------------------
128 BEGIN_EVENT_TABLE(MyFrame
, wxMDIParentFrame
)
129 EVT_MENU(MDI_ABOUT
, MyFrame::OnAbout
)
130 EVT_MENU(MDI_NEW_WINDOW
, MyFrame::OnNewWindow
)
131 EVT_MENU(MDI_QUIT
, MyFrame::OnQuit
)
132 EVT_MENU (MDI_SAVE
, MyFrame::FileSavePicture
)
133 EVT_CLOSE(MyFrame::OnClose
)
135 EVT_SIZE(MyFrame::OnSize
)
138 // ===========================================================================
140 // ===========================================================================
142 // ---------------------------------------------------------------------------
144 // ---------------------------------------------------------------------------
146 // Initialise this in OnInit, not statically
149 // Create the main frame window
151 frame
= new MyFrame((wxFrame
*)NULL
, -1, wxT("SVG Demo"),
152 wxPoint(-1, -1), wxSize(500, 400),
153 wxDEFAULT_FRAME_STYLE
| wxHSCROLL
| wxVSCROLL
);
157 wxMenu
*file_menu
= new wxMenu
;
159 file_menu
->Append(MDI_NEW_WINDOW
, wxT("&New test\tCtrl+N"));
160 file_menu
->Append(MDI_QUIT
, wxT("&Exit\tAlt+X"));
162 wxMenu
*help_menu
= new wxMenu
;
163 help_menu
->Append(MDI_ABOUT
, wxT("&About"));
165 wxMenuBar
*menu_bar
= new wxMenuBar
;
167 menu_bar
->Append(file_menu
, wxT("&File"));
168 menu_bar
->Append(help_menu
, wxT("&Help"));
170 // Associate the menu bar with the frame
171 frame
->SetMenuBar(menu_bar
);
174 frame
->CreateStatusBar();
175 #endif // wxUSE_STATUSBAR
185 // ---------------------------------------------------------------------------
187 // ---------------------------------------------------------------------------
189 // Define my frame constructor
190 MyFrame::MyFrame(wxWindow
*parent
, const wxWindowID id
, const wxString
& title
,
191 const wxPoint
& pos
, const wxSize
& size
, const long style
)
192 : wxMDIParentFrame(parent
, id
, title
, pos
, size
, style
)
197 SetIcon(wxICON(mondrian
));
199 CreateToolBar(wxNO_BORDER
| wxTB_FLAT
| wxTB_HORIZONTAL
);
200 InitToolBar(GetToolBar());
205 void MyFrame::OnClose(wxCloseEvent
& event
)
207 if ( !event
.CanVeto() )
212 if ( m_children
.GetCount () < 1 )
217 // now try the children
218 wxObjectList::compatibility_iterator pNode
= m_children
.GetFirst ();
219 wxObjectList::compatibility_iterator pNext
;
223 pNext
= pNode
-> GetNext ();
224 pChild
= (MyChild
*) pNode
-> GetData ();
225 if (pChild
-> Close ())
227 m_children
.Erase(pNode
) ;
240 void MyFrame::OnQuit(wxCommandEvent
& WXUNUSED(event
))
246 void MyFrame::OnAbout(wxCommandEvent
& WXUNUSED(event
) )
248 (void)wxMessageBox(wxT("wxWidgets 2.0 SVG 1.0 Test\n")
249 wxT("Author: Chris Elliott (c) 2002\n")
250 wxT("Usage: svg.exe \nClick File | New to show tests\n\n"), wxT("About SVG Test"));
254 void MyFrame::OnNewWindow(wxCommandEvent
& WXUNUSED(event
) )
256 // Make another frame, containing a canvas
259 m_children
.Append (new MyChild(frame
, wxT("SVG Frame"),
260 wxPoint(-1, -1), wxSize(-1, -1),
261 wxDEFAULT_FRAME_STYLE
) ) ;
263 subframe
= (MyChild
*) m_children
.GetLast() -> GetData ();
265 title
.Printf(wxT("SVG Test Window %d"), nWinCreated
);
266 // counts number of children previously, even if now closed
269 // Give it a title and icon
270 subframe
->SetTitle(title
);
271 subframe
->SetIcon(wxICON(mondrian
));
274 wxMenu
*file_menu
= new wxMenu
;
276 file_menu
->Append(MDI_NEW_WINDOW
, wxT("&Another test\tCtrl+N"));
277 file_menu
->Append(MDI_SAVE
, wxT("&Save\tCtrl+S"), wxT("Save in SVG format"));
278 file_menu
->Append(MDI_CHILD_QUIT
, wxT("&Close child\tCtrl+F4"));
279 file_menu
->Append(MDI_QUIT
, wxT("&Exit\tAlt+X"));
281 wxMenu
*help_menu
= new wxMenu
;
282 help_menu
->Append(MDI_ABOUT
, wxT("&About"));
284 wxMenuBar
*menu_bar
= new wxMenuBar
;
286 menu_bar
->Append(file_menu
, wxT("&File"));
287 menu_bar
->Append(help_menu
, wxT("&Help"));
289 // Associate the menu bar with the frame
290 subframe
->SetMenuBar(menu_bar
);
292 subframe
->Show(true);
296 void MyFrame::OnSize(wxSizeEvent
& event
)
299 GetClientSize(&w
, &h
);
301 GetClientWindow()->SetSize(0, 0, w
, h
);
306 void MyFrame::InitToolBar(wxToolBar
* toolBar
)
308 const int maxBitmaps
= 3 ;
309 wxBitmap
* bitmaps
[maxBitmaps
];
311 bitmaps
[0] = new wxBitmap( new_xpm
);
312 bitmaps
[1] = new wxBitmap( save_xpm
);
313 bitmaps
[2] = new wxBitmap( help_xpm
);
315 toolBar
->AddTool(MDI_NEW_WINDOW
, wxEmptyString
, *(bitmaps
[0]), wxS("New SVG test window"));
316 toolBar
->AddTool(MDI_SAVE
, wxEmptyString
, *bitmaps
[1], wxS("Save test in SVG format"));
317 toolBar
->AddSeparator();
318 toolBar
->AddTool(MDI_ABOUT
, wxEmptyString
, *bitmaps
[2], wxS("Help"));
323 for (i
= 0; i
< maxBitmaps
; i
++)
328 void MyFrame::FileSavePicture (wxCommandEvent
& WXUNUSED(event
) )
331 MyChild
* pChild
= (MyChild
*)GetActiveChild ();
337 wxFileDialog
dialog(this, wxT("Save Picture as"), wxEmptyString
, pChild
->GetTitle(),
338 wxT("SVG vector picture files (*.svg)|*.svg"),
339 wxFD_SAVE
|wxFD_OVERWRITE_PROMPT
);
341 if (dialog
.ShowModal() == wxID_OK
)
343 if (!pChild
-> OnSave ( dialog
.GetPath() ))
349 #endif // wxUSE_FILEDLG
353 // Note that MDI_NEW_WINDOW and MDI_ABOUT commands get passed
354 // to the parent window for processing, so no need to
355 // duplicate event handlers here.
356 BEGIN_EVENT_TABLE(MyChild
, wxMDIChildFrame
)
357 EVT_MENU(MDI_CHILD_QUIT
, MyChild::OnQuit
)
358 EVT_CLOSE(MyChild::OnClose
)
361 BEGIN_EVENT_TABLE(MyCanvas
, wxScrolledWindow
)
365 // ---------------------------------------------------------------------------
367 // ---------------------------------------------------------------------------
369 // Define a constructor for my canvas
370 MyCanvas::MyCanvas(wxWindow
*parent
, const wxPoint
& pos
, const wxSize
& size
)
371 : wxScrolledWindow(parent
, -1, pos
, size
,
372 wxSUNKEN_BORDER
|wxVSCROLL
|wxHSCROLL
)
374 m_child
= (MyChild
*) parent
;
375 SetBackgroundColour(wxColour(_T("WHITE")));
376 m_index
= m_child
->m_frame
->nWinCreated
% 7 ;
380 // Define the repainting behaviour
381 void MyCanvas::OnDraw(wxDC
& dc
)
386 #endif // wxUSE_STATUSBAR
393 dc
.SetFont(*wxSWISS_FONT
);
394 dc
.SetPen(*wxGREEN_PEN
);
401 // draw lines to make a cross
402 dc
.DrawLine(0, 0, 200, 200);
403 dc
.DrawLine(200, 0, 0, 200);
404 // draw point colored line and spline
409 dc
.DrawPoint (25,15) ;
410 dc
.DrawLine(50, 30, 200, 30);
411 dc
.DrawSpline(50, 200, 50, 100, 200, 10);
413 s
= wxT("Green Cross, Cyan Line and spline");
414 #endif // wxUSE_STATUSBAR
418 // draw standard shapes
419 dc
.SetBrush(*wxCYAN_BRUSH
);
420 dc
.SetPen(*wxRED_PEN
);
421 dc
.DrawRectangle(10, 10, 100, 70);
422 wB
= wxBrush (_T("DARK ORCHID"), wxBRUSHSTYLE_TRANSPARENT
);
424 dc
.DrawRoundedRectangle(50, 50, 100, 70, 20);
425 dc
.SetBrush (wxBrush(_T("GOLDENROD")) );
426 dc
.DrawEllipse(100, 100, 100, 50);
428 points
[0].x
= 100; points
[0].y
= 200;
429 points
[1].x
= 70; points
[1].y
= 260;
430 points
[2].x
= 160; points
[2].y
= 230;
431 points
[3].x
= 40; points
[3].y
= 230;
432 points
[4].x
= 130; points
[4].y
= 260;
433 points
[5].x
= 100; points
[5].y
= 200;
435 dc
.DrawPolygon(5, points
);
436 dc
.DrawLines (6, points
, 160);
438 s
= wxT("Blue rectangle, red edge, clear rounded rectangle, gold ellipse, gold and clear stars");
439 #endif // wxUSE_STATUSBAR
443 // draw text in Arial or similar font
444 dc
.DrawLine(50,25,50,35);
445 dc
.DrawLine(45,30,55,30);
446 dc
.DrawText(wxT("This is a Swiss-style string"), 50, 30);
447 wC
= dc
.GetTextForeground() ;
448 dc
.SetTextForeground (_T("FIREBRICK"));
450 // no effect in msw ??
451 dc
.SetTextBackground (_T("WHEAT"));
452 dc
.DrawText(wxT("This is a Red string"), 50, 200);
453 dc
.DrawRotatedText(wxT("This is a 45 deg string"), 50, 200, 45);
454 dc
.DrawRotatedText(wxT("This is a 90 deg string"), 50, 200, 90);
455 wF
= wxFont ( 18, wxROMAN
, wxITALIC
, wxBOLD
, false, wxT("Times New Roman"));
457 dc
.SetTextForeground (wC
) ;
458 dc
.DrawText(wxT("This is a Times-style string"), 50, 60);
460 s
= wxT("Swiss, Times text; red text, rotated and colored orange");
461 #endif // wxUSE_STATUSBAR
465 // four arcs start and end points, center
466 dc
.SetBrush(*wxGREEN_BRUSH
);
467 dc
.DrawArc ( 200,300, 370,230, 300,300 );
468 dc
.SetBrush(*wxBLUE_BRUSH
);
469 dc
.DrawArc ( 270-50, 270-86, 270-86, 270-50, 270,270 );
470 dc
.SetDeviceOrigin(-10,-10);
471 dc
.DrawArc ( 270-50, 270-86, 270-86, 270-50, 270,270 );
472 dc
.SetDeviceOrigin(0,0);
474 wP
.SetColour (_T("CADET BLUE"));
476 dc
.DrawArc ( 75,125, 110, 40, 75, 75 );
478 wP
.SetColour (_T("SALMON"));
480 dc
.SetBrush(*wxRED_BRUSH
);
481 //top left corner, width and height, start and end angle
482 // 315 same center and x-radius as last pie-arc, half Y radius
483 dc
.DrawEllipticArc(25,50,100,50,180.0,45.0) ;
489 dc
.SetBrush (wxBrush (_T("SALMON"))) ;
490 dc
.DrawEllipticArc(300, 0,200,100, 0.0,145.0) ;
492 dc
.DrawEllipticArc(300, 50,200,100,90.0,145.0) ;
493 dc
.DrawEllipticArc(300,100,200,100,90.0,345.0) ;
496 s
= wxT("This is an arc test page");
497 #endif // wxUSE_STATUSBAR
501 dc
.DrawCheckMark ( 30,30,25,25);
502 dc
.SetBrush (wxBrush (_T("SALMON"),wxBRUSHSTYLE_TRANSPARENT
));
503 dc
.DrawCheckMark ( 80,50,75,75);
504 dc
.DrawRectangle ( 80,50,75,75);
506 s
= wxT("Two check marks");
507 #endif // wxUSE_STATUSBAR
511 wF
= wxFont ( 18, wxROMAN
, wxITALIC
, wxBOLD
, false, wxT("Times New Roman"));
513 dc
.DrawLine(0, 0, 200, 200);
514 dc
.DrawLine(200, 0, 0, 200);
515 dc
.DrawText(wxT("This is an 18pt string"), 50, 60);
517 // rescale and draw in blue
520 dc
.SetUserScale (2.0,0.5);
521 dc
.SetDeviceOrigin(200,0);
522 dc
.DrawLine(0, 0, 200, 200);
523 dc
.DrawLine(200, 0, 0, 200);
524 dc
.DrawText(wxT("This is an 18pt string 2 x 0.5 UserScaled"), 50, 60);
525 dc
.SetUserScale (2.0,2.0);
526 dc
.SetDeviceOrigin(200,200);
527 dc
.DrawText(wxT("This is an 18pt string 2 x 2 UserScaled"), 50, 60);
531 dc
.SetUserScale (1.0,1.0);
532 dc
.SetDeviceOrigin(0,10);
533 dc
.SetMapMode (wxMM_METRIC
) ; //svg ignores this
534 dc
.DrawLine(0, 0, 200, 200);
535 dc
.DrawLine(200, 0, 0, 200);
536 dc
.DrawText(wxT("This is an 18pt string in MapMode"), 50, 60);
538 s
= wxT("Scaling test page");
539 #endif // wxUSE_STATUSBAR
543 dc
.DrawIcon( wxIcon(mondrian_xpm
), 10, 10 );
544 dc
.DrawBitmap ( wxBitmap(svgbitmap_xpm
), 50,15);
546 s
= wxT("Icon and Bitmap ");
547 #endif // wxUSE_STATUSBAR
552 m_child
->SetStatusText(s
);
553 #endif // wxUSE_STATUSBAR
559 // ---------------------------------------------------------------------------
561 // ---------------------------------------------------------------------------
563 MyChild::MyChild(wxMDIParentFrame
*parent
, const wxString
& title
,
564 const wxPoint
& pos
, const wxSize
& size
,
566 : wxMDIChildFrame(parent
, -1, title
, pos
, size
, style
)
569 m_frame
= (MyFrame
*) parent
;
572 SetStatusText(title
);
573 #endif // wxUSE_STATUSBAR
576 GetClientSize ( &w
, &h
);
577 m_canvas
= new MyCanvas(this, wxPoint(0, 0), wxSize (w
,h
) );
578 // Give it scrollbars
579 m_canvas
->SetScrollbars(20, 20, 50, 50);
586 m_frame
->m_children
.DeleteObject(this);
590 void MyChild::OnQuit(wxCommandEvent
& WXUNUSED(event
))
596 bool MyChild::OnSave(wxString filename
)
598 wxSVGFileDC
svgDC (filename
, 600, 650) ;
599 m_canvas
->OnDraw (svgDC
);
605 void MyChild::OnActivate(wxActivateEvent
& event
)
607 if ( event
.GetActive() && m_canvas
)
608 m_canvas
->SetFocus();
612 void MyChild::OnClose(wxCloseEvent
& event
)