1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: shows and tests wxDC features
4 // Author: Robert Roebling
8 // Copyright: (c) Robert Roebling
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
20 #pragma implementation "drawing.cpp"
21 #pragma interface "drawing.cpp"
24 // For compilers that support precompilation, includes "wx/wx.h".
25 #include "wx/wxprec.h"
31 // for all others, include the necessary headers (this file is usually all you
32 // need because it includes almost all "standard" wxWindows headers
37 #include "wx/colordlg.h"
39 // ----------------------------------------------------------------------------
41 // ----------------------------------------------------------------------------
42 // the application icon
43 #if defined(__WXGTK__) || defined(__WXMOTIF__)
44 #include "mondrian.xpm"
47 // ----------------------------------------------------------------------------
49 // ----------------------------------------------------------------------------
51 // Define a new application type, each program should derive a class from wxApp
52 class MyApp
: public wxApp
55 // override base class virtuals
56 // ----------------------------
58 // this one is called on application startup and is a good place for the app
59 // initialization (doing it here and not in the ctor allows to have an error
60 // return: if OnInit() returns false, the application terminates)
61 virtual bool OnInit();
66 // Define a new frame type: this is going to be our main frame
67 class MyFrame
: public wxFrame
71 MyFrame(const wxString
& title
, const wxPoint
& pos
, const wxSize
& size
);
73 // event handlers (these functions should _not_ be virtual)
74 void OnQuit(wxCommandEvent
& event
);
75 void OnAbout(wxCommandEvent
& event
);
76 void OnOption(wxCommandEvent
&event
);
78 wxColour
SelectColour();
79 void PrepareDC(wxDC
& dc
);
89 wxColour m_colourForeground
, // these are _text_ colours
91 wxBrush m_backgroundBrush
;
95 // any class wishing to process wxWindows events must use this macro
99 // define a scrollable canvas for drawing onto
100 class MyCanvas
: public wxScrolledWindow
103 MyCanvas( MyFrame
*parent
);
105 void DrawTestLines( int x
, int y
, int width
, wxDC
&dc
);
106 void OnPaint(wxPaintEvent
&event
);
107 void OnMouseMove(wxMouseEvent
&event
);
113 DECLARE_EVENT_TABLE()
116 // ----------------------------------------------------------------------------
118 // ----------------------------------------------------------------------------
120 // IDs for the controls and the menu commands
129 MapMode_Text
= MenuOption_First
,
135 UserScale_StretchHoriz
,
136 UserScale_ShrinkHoriz
,
137 UserScale_StretchVertic
,
138 UserScale_ShrinkVertic
,
144 LogicalOrigin_MoveDown
,
145 LogicalOrigin_MoveUp
,
146 LogicalOrigin_MoveLeft
,
147 LogicalOrigin_MoveRight
,
149 Colour_TextForeground
,
150 Colour_TextBackground
,
152 Colour_BackgroundMode
,
154 MenuOption_Last
= Colour_BackgroundMode
157 // ----------------------------------------------------------------------------
158 // event tables and other macros for wxWindows
159 // ----------------------------------------------------------------------------
162 // Create a new application object: this macro will allow wxWindows to create
163 // the application object during program execution (it's better than using a
164 // static object for many reasons) and also declares the accessor function
165 // wxGetApp() which will return the reference of the right type (i.e. MyApp and
169 // ============================================================================
171 // ============================================================================
173 // ----------------------------------------------------------------------------
174 // the application class
175 // ----------------------------------------------------------------------------
177 // `Main program' equivalent: the program execution "starts" here
180 // Create the main application window
181 MyFrame
*frame
= new MyFrame("Drawing sample",
182 wxPoint(50, 50), wxSize(550, 340));
184 // Show it and tell the application that it's our main window
188 // success: wxApp::OnRun() will be called which will enter the main message
189 // loop and the application will run. If we returned FALSE here, the
190 // application would exit immediately.
194 // ----------------------------------------------------------------------------
196 // ----------------------------------------------------------------------------
198 // the event tables connect the wxWindows events with the functions (event
199 // handlers) which process them.
200 BEGIN_EVENT_TABLE(MyCanvas
, wxScrolledWindow
)
201 EVT_PAINT (MyCanvas::OnPaint
)
202 EVT_MOTION (MyCanvas::OnMouseMove
)
205 MyCanvas::MyCanvas( MyFrame
*parent
)
206 : wxScrolledWindow( parent
)
211 void MyCanvas::DrawTestLines( int x
, int y
, int width
, wxDC
&dc
)
213 dc
.SetPen( wxPen( "black", width
, wxSOLID
) );
214 dc
.SetBrush( *wxRED_BRUSH
);
215 dc
.DrawRectangle( x
+10, y
+10, 400, 190 );
217 dc
.SetPen( wxPen( "black", width
, wxSOLID
) );
218 dc
.DrawLine( x
+20, y
+20, 390, y
+20 );
219 dc
.SetPen( wxPen( "black", width
, wxDOT
) );
220 dc
.DrawLine( x
+20, y
+30, 390, y
+30 );
221 dc
.SetPen( wxPen( "black", width
, wxSHORT_DASH
) );
222 dc
.DrawLine( x
+20, y
+40, 390, y
+40 );
223 dc
.SetPen( wxPen( "black", width
, wxLONG_DASH
) );
224 dc
.DrawLine( x
+20, y
+50, 390, y
+50 );
225 dc
.SetPen( wxPen( "black", width
, wxDOT_DASH
) );
226 dc
.DrawLine( x
+20, y
+60, 390, y
+60 );
228 dc
.SetPen( wxPen( "black", width
, wxBDIAGONAL_HATCH
) );
229 dc
.DrawLine( x
+20, y
+70, 390, y
+70 );
230 dc
.SetPen( wxPen( "black", width
, wxCROSSDIAG_HATCH
) );
231 dc
.DrawLine( x
+20, y
+80, 390, y
+80 );
232 dc
.SetPen( wxPen( "black", width
, wxFDIAGONAL_HATCH
) );
233 dc
.DrawLine( x
+20, y
+90, 390, y
+90 );
234 dc
.SetPen( wxPen( "black", width
, wxCROSS_HATCH
) );
235 dc
.DrawLine( x
+20, y
+100, 390, y
+100 );
236 dc
.SetPen( wxPen( "black", width
, wxHORIZONTAL_HATCH
) );
237 dc
.DrawLine( x
+20, y
+110, 390, y
+110 );
238 dc
.SetPen( wxPen( "black", width
, wxVERTICAL_HATCH
) );
239 dc
.DrawLine( x
+20, y
+120, 390, y
+120 );
241 wxPen
ud( "black", width
, wxUSER_DASH
);
244 ud
.SetDashes( 1, dash1
);
245 dc
.DrawLine( x
+20, y
+140, 390, y
+140 );
247 ud
.SetDashes( 1, dash1
);
248 dc
.DrawLine( x
+20, y
+150, 390, y
+150 );
250 ud
.SetDashes( 1, dash1
);
251 dc
.DrawLine( x
+20, y
+160, 390, y
+160 );
253 ud
.SetDashes( 1, dash1
);
254 dc
.DrawLine( x
+20, y
+170, 390, y
+170 );
258 void MyCanvas::OnPaint(wxPaintEvent
&WXUNUSED(event
))
262 m_owner
->PrepareDC(dc
);
264 dc
.SetBackgroundMode( m_owner
->m_backgroundMode
);
265 if ( m_owner
->m_backgroundBrush
.Ok() )
266 dc
.SetBackground( m_owner
->m_backgroundBrush
);
267 if ( m_owner
->m_colourForeground
.Ok() )
268 dc
.SetTextForeground( m_owner
->m_colourForeground
);
269 if ( m_owner
->m_colourBackground
.Ok() )
270 dc
.SetTextBackground( m_owner
->m_colourBackground
);
273 dc
.DrawCircle(0, 0, 10);
274 #if !(defined __WXGTK__) && !(defined __WXMOTIF__)
275 // not implemented in wxGTK or wxMOTIF :-(
276 dc
.FloodFill(0, 0, wxColour(255, 0, 0));
279 dc
.DrawText( "This is text", 110, 10 );
281 dc
.SetFont( wxFont( 18, wxSWISS
, wxNORMAL
, wxNORMAL
) );
283 dc
.DrawText( "This is Swiss 18pt text.", 110, 40 );
288 dc
.GetTextExtent( "This is Swiss 18pt text.", &length
, &height
, &descent
);
290 text
.Printf( "Dimensions are length %ld, height %ld, descent %ld", length
, height
, descent
);
291 dc
.DrawText( text
, 110, 80 );
293 dc
.DrawRectangle( 100, 40, 4, height
);
295 text
.Printf( "CharHeight() returns: %d", dc
.GetCharHeight() );
296 dc
.DrawText( text
, 110, 120 );
299 dc
.DrawIcon( wxICON(mondrian
), 310, 40 );
301 DrawTestLines( 0, 200, 0, dc
);
303 DrawTestLines( 0, 400, 1, dc
);
305 DrawTestLines( 0, 600, 2, dc
);
307 DrawTestLines( 0, 800, 6, dc
);
311 void MyCanvas::OnMouseMove(wxMouseEvent
&event
)
315 m_owner
->PrepareDC(dc
);
317 wxPoint pos
= event
.GetPosition();
318 long x
= dc
.DeviceToLogicalX( pos
.x
);
319 long y
= dc
.DeviceToLogicalY( pos
.y
);
321 str
.Printf( "Current mouse position: %d,%d", (int)x
, (int)y
);
322 m_owner
->SetStatusText( str
);
325 // ----------------------------------------------------------------------------
327 // ----------------------------------------------------------------------------
329 // the event tables connect the wxWindows events with the functions (event
330 // handlers) which process them. It can be also done at run-time, but for the
331 // simple menu events like this the static method is much simpler.
332 BEGIN_EVENT_TABLE(MyFrame
, wxFrame
)
333 EVT_MENU (Minimal_Quit
, MyFrame::OnQuit
)
334 EVT_MENU (Minimal_About
, MyFrame::OnAbout
)
335 EVT_MENU_RANGE(MenuOption_First
, MenuOption_Last
, MyFrame::OnOption
)
339 MyFrame::MyFrame(const wxString
& title
, const wxPoint
& pos
, const wxSize
& size
)
340 : wxFrame((wxFrame
*)NULL
, -1, title
, pos
, size
)
342 // set the frame icon
343 SetIcon(wxICON(mondrian
));
345 wxMenu
*menuFile
= new wxMenu
;
346 menuFile
->Append(Minimal_About
, "&About...\tCtrl-A", "Show about dialog");
347 menuFile
->AppendSeparator();
348 menuFile
->Append(Minimal_Quit
, "E&xit\tAlt-X", "Quit this program");
350 wxMenu
*menuMapMode
= new wxMenu
;
351 menuMapMode
->Append( MapMode_Text
, "&TEXT map mode" );
352 menuMapMode
->Append( MapMode_Lometric
, "&LOMETRIC map mode" );
353 menuMapMode
->Append( MapMode_Twips
, "T&WIPS map mode" );
354 menuMapMode
->Append( MapMode_Points
, "&POINTS map mode" );
355 menuMapMode
->Append( MapMode_Metric
, "&METRIC map mode" );
357 wxMenu
*menuUserScale
= new wxMenu
;
358 menuUserScale
->Append( UserScale_StretchHoriz
, "Stretch horizontally\tCtrl-H" );
359 menuUserScale
->Append( UserScale_ShrinkHoriz
, "Shrink horizontally\tCtrl-G" );
360 menuUserScale
->Append( UserScale_StretchVertic
, "Stretch vertically\tCtrl-V" );
361 menuUserScale
->Append( UserScale_ShrinkVertic
, "Shrink vertically\tCtrl-W" );
362 menuUserScale
->AppendSeparator();
363 menuUserScale
->Append( UserScale_Restore
, "Restore to normal\tCtrl-0" );
365 wxMenu
*menuAxis
= new wxMenu
;
366 menuAxis
->Append( AxisMirror_Horiz
, "Mirror horizontally\tCtrl-M", "", TRUE
);
367 menuAxis
->Append( AxisMirror_Vertic
, "Mirror vertically\tCtrl-N", "", TRUE
);
369 wxMenu
*menuLogical
= new wxMenu
;
370 menuLogical
->Append( LogicalOrigin_MoveDown
, "Move &down\tCtrl-D" );
371 menuLogical
->Append( LogicalOrigin_MoveUp
, "Move &up\tCtrl-U" );
372 menuLogical
->Append( LogicalOrigin_MoveLeft
, "Move &right\tCtrl-L" );
373 menuLogical
->Append( LogicalOrigin_MoveRight
, "Move &left\tCtrl-R" );
375 wxMenu
*menuColour
= new wxMenu
;
376 menuColour
->Append( Colour_TextForeground
, "Text foreground..." );
377 menuColour
->Append( Colour_TextBackground
, "Text background..." );
378 menuColour
->Append( Colour_Background
, "Background colour..." );
379 menuColour
->Append( Colour_BackgroundMode
, "Opaque/transparent\tCtrl-B", "", TRUE
);
381 // now append the freshly created menu to the menu bar...
382 wxMenuBar
*menuBar
= new wxMenuBar
;
383 menuBar
->Append(menuFile
, "&File");
384 menuBar
->Append(menuMapMode
, "&MapMode");
385 menuBar
->Append(menuUserScale
, "&UserScale");
386 menuBar
->Append(menuAxis
, "&Axis");
387 menuBar
->Append(menuLogical
, "&LogicalOrigin");
388 menuBar
->Append(menuColour
, "&Colours");
390 // ... and attach this menu bar to the frame
393 // create a status bar just for fun (by default with 1 pane only)
395 SetStatusText("Welcome to wxWindows!");
397 m_mapMode
= wxMM_TEXT
;
400 m_xLogicalOrigin
= 0;
401 m_yLogicalOrigin
= 0;
403 m_yAxisReversed
= FALSE
;
404 m_backgroundMode
= wxSOLID
;
406 m_canvas
= new MyCanvas( this );
407 m_canvas
->SetScrollbars( 10, 10, 100, 200 );
412 void MyFrame::OnQuit(wxCommandEvent
& WXUNUSED(event
))
414 // TRUE is to force the frame to close
418 void MyFrame::OnAbout(wxCommandEvent
& WXUNUSED(event
))
421 msg
.Printf( _T("This is the about dialog of the drawing sample.\n")
422 _T("Copyright (c) Robert Roebling 1999")
425 wxMessageBox(msg
, "About Drawing", wxOK
| wxICON_INFORMATION
, this);
428 void MyFrame::OnOption(wxCommandEvent
&event
)
430 switch (event
.GetInt())
433 m_mapMode
= wxMM_TEXT
;
435 case MapMode_Lometric
:
436 m_mapMode
= wxMM_LOMETRIC
;
439 m_mapMode
= wxMM_TWIPS
;
442 m_mapMode
= wxMM_POINTS
;
445 m_mapMode
= wxMM_METRIC
;
448 case LogicalOrigin_MoveDown
:
449 m_yLogicalOrigin
+= 10;
451 case LogicalOrigin_MoveUp
:
452 m_yLogicalOrigin
-= 10;
454 case LogicalOrigin_MoveLeft
:
455 m_xLogicalOrigin
+= 10;
457 case LogicalOrigin_MoveRight
:
458 m_xLogicalOrigin
-= 10;
461 case UserScale_StretchHoriz
:
462 m_xUserScale
*= 1.10;
464 case UserScale_ShrinkHoriz
:
465 m_xUserScale
/= 1.10;
467 case UserScale_StretchVertic
:
468 m_yUserScale
*= 1.10;
470 case UserScale_ShrinkVertic
:
471 m_yUserScale
/= 1.10;
473 case UserScale_Restore
:
478 case AxisMirror_Vertic
:
479 m_yAxisReversed
= !m_yAxisReversed
;
481 case AxisMirror_Horiz
:
482 m_xAxisReversed
= !m_xAxisReversed
;
485 case Colour_TextForeground
:
486 m_colourForeground
= SelectColour();
488 case Colour_TextBackground
:
489 m_colourBackground
= SelectColour();
491 case Colour_Background
:
493 wxColour col
= SelectColour();
496 m_backgroundBrush
.SetColour(col
);
500 case Colour_BackgroundMode
:
501 m_backgroundMode
= m_backgroundMode
== wxSOLID
? wxTRANSPARENT
513 void MyFrame::PrepareDC(wxDC
& dc
)
515 dc
.SetMapMode( m_mapMode
);
516 dc
.SetUserScale( m_xUserScale
, m_yUserScale
);
517 dc
.SetLogicalOrigin( m_xLogicalOrigin
, m_yLogicalOrigin
);
518 dc
.SetAxisOrientation( !m_xAxisReversed
, m_yAxisReversed
);
521 wxColour
MyFrame::SelectColour()
525 wxColourDialog
dialog(this, &data
);
527 if ( dialog
.ShowModal() == wxID_OK
)
529 col
= dialog
.GetColourData().GetColour();