]>
Commit | Line | Data |
---|---|---|
aba99005 | 1 | ///////////////////////////////////////////////////////////////////////////// |
b11729f1 | 2 | // Name: samples/drawing/drawing.cpp |
0f0c61d0 | 3 | // Purpose: shows and tests wxDC features |
aba99005 RR |
4 | // Author: Robert Roebling |
5 | // Modified by: | |
6 | // Created: 04/01/98 | |
aba99005 RR |
7 | // Copyright: (c) Robert Roebling |
8 | // Licence: wxWindows licence | |
9 | ///////////////////////////////////////////////////////////////////////////// | |
10 | ||
11 | // ============================================================================ | |
12 | // declarations | |
13 | // ============================================================================ | |
14 | ||
15 | // ---------------------------------------------------------------------------- | |
16 | // headers | |
17 | // ---------------------------------------------------------------------------- | |
568708e2 | 18 | |
aba99005 RR |
19 | // For compilers that support precompilation, includes "wx/wx.h". |
20 | #include "wx/wxprec.h" | |
21 | ||
22 | #ifdef __BORLANDC__ | |
23 | #pragma hdrstop | |
24 | #endif | |
25 | ||
26 | // for all others, include the necessary headers (this file is usually all you | |
be5a51fb | 27 | // need because it includes almost all "standard" wxWidgets headers |
aba99005 RR |
28 | #ifndef WX_PRECOMP |
29 | #include "wx/wx.h" | |
30 | #endif | |
31 | ||
0f0c61d0 | 32 | #include "wx/colordlg.h" |
107a1787 | 33 | #include "wx/image.h" |
389d906b | 34 | #include "wx/artprov.h" |
888dde65 | 35 | #include "wx/dcgraph.h" |
8a021e00 | 36 | #include "wx/overlay.h" |
795b5a8b | 37 | #include "wx/graphics.h" |
e0ac7d94 | 38 | #include "wx/filename.h" |
8c6b0819 | 39 | #include "wx/metafile.h" |
f31a4cb2 | 40 | |
8a021e00 SC |
41 | #define TEST_CAIRO_EVERYWHERE 0 |
42 | ||
aba99005 | 43 | // ---------------------------------------------------------------------------- |
795b5a8b | 44 | // resources |
aba99005 | 45 | // ---------------------------------------------------------------------------- |
568708e2 | 46 | |
aba99005 | 47 | // the application icon |
e7092398 | 48 | #ifndef wxHAS_IMAGES_IN_RESOURCES |
3cb332c1 | 49 | #include "../sample.xpm" |
aba99005 RR |
50 | #endif |
51 | ||
568708e2 VZ |
52 | // ---------------------------------------------------------------------------- |
53 | // global variables | |
54 | // ---------------------------------------------------------------------------- | |
55 | ||
f6bcfd97 BP |
56 | static wxBitmap *gs_bmpNoMask = NULL, |
57 | *gs_bmpWithColMask = NULL, | |
58 | *gs_bmpMask = NULL, | |
59 | *gs_bmpWithMask = NULL, | |
60 | *gs_bmp4 = NULL, | |
61 | *gs_bmp4_mono = NULL, | |
62 | *gs_bmp36 = NULL; | |
568708e2 | 63 | |
aba99005 RR |
64 | // ---------------------------------------------------------------------------- |
65 | // private classes | |
66 | // ---------------------------------------------------------------------------- | |
67 | ||
68 | // Define a new application type, each program should derive a class from wxApp | |
69 | class MyApp : public wxApp | |
70 | { | |
71 | public: | |
72 | // override base class virtuals | |
73 | // ---------------------------- | |
74 | ||
75 | // this one is called on application startup and is a good place for the app | |
76 | // initialization (doing it here and not in the ctor allows to have an error | |
77 | // return: if OnInit() returns false, the application terminates) | |
78 | virtual bool OnInit(); | |
568708e2 | 79 | |
f6bcfd97 BP |
80 | virtual int OnExit() { DeleteBitmaps(); return 0; } |
81 | ||
568708e2 | 82 | protected: |
f6bcfd97 BP |
83 | void DeleteBitmaps(); |
84 | ||
568708e2 | 85 | bool LoadImages(); |
aba99005 RR |
86 | }; |
87 | ||
b62c3631 RR |
88 | class MyCanvas; |
89 | ||
aba99005 RR |
90 | // Define a new frame type: this is going to be our main frame |
91 | class MyFrame : public wxFrame | |
92 | { | |
93 | public: | |
94 | // ctor(s) | |
95 | MyFrame(const wxString& title, const wxPoint& pos, const wxSize& size); | |
96 | ||
97 | // event handlers (these functions should _not_ be virtual) | |
98 | void OnQuit(wxCommandEvent& event); | |
99 | void OnAbout(wxCommandEvent& event); | |
204dd9a7 | 100 | void OnClip(wxCommandEvent& event); |
f31a4cb2 SC |
101 | #if wxUSE_GRAPHICS_CONTEXT |
102 | void OnGraphicContext(wxCommandEvent& event); | |
103 | #endif | |
8c6b0819 VZ |
104 | void OnCopy(wxCommandEvent& event); |
105 | void OnSave(wxCommandEvent& event); | |
568708e2 | 106 | void OnShow(wxCommandEvent &event); |
aba99005 | 107 | void OnOption(wxCommandEvent &event); |
aba99005 | 108 | |
960a83cc | 109 | #if wxUSE_COLOURDLG |
220af862 | 110 | wxColour SelectColour(); |
960a83cc | 111 | #endif // wxUSE_COLOURDLG |
220af862 | 112 | void PrepareDC(wxDC& dc); |
0f0c61d0 | 113 | |
b62c3631 | 114 | int m_backgroundMode; |
1edc9f45 | 115 | int m_textureBackground; |
89efaf2b | 116 | wxMappingMode m_mapMode; |
b62c3631 RR |
117 | double m_xUserScale; |
118 | double m_yUserScale; | |
119 | int m_xLogicalOrigin; | |
120 | int m_yLogicalOrigin; | |
121 | bool m_xAxisReversed, | |
122 | m_yAxisReversed; | |
123 | wxColour m_colourForeground, // these are _text_ colours | |
124 | m_colourBackground; | |
125 | wxBrush m_backgroundBrush; | |
126 | MyCanvas *m_canvas; | |
aba99005 RR |
127 | |
128 | private: | |
be5a51fb | 129 | // any class wishing to process wxWidgets events must use this macro |
aba99005 RR |
130 | DECLARE_EVENT_TABLE() |
131 | }; | |
132 | ||
b62c3631 RR |
133 | // define a scrollable canvas for drawing onto |
134 | class MyCanvas: public wxScrolledWindow | |
135 | { | |
136 | public: | |
137 | MyCanvas( MyFrame *parent ); | |
1e7fd311 | 138 | |
b62c3631 | 139 | void OnPaint(wxPaintEvent &event); |
bf0c00c6 | 140 | void OnMouseMove(wxMouseEvent &event); |
8a021e00 SC |
141 | void OnMouseDown(wxMouseEvent &event); |
142 | void OnMouseUp(wxMouseEvent &event); | |
4786aabd | 143 | |
f65e33a3 | 144 | void ToShow(int show) { m_show = show; Refresh(); } |
568708e2 | 145 | |
204dd9a7 VZ |
146 | // set or remove the clipping region |
147 | void Clip(bool clip) { m_clip = clip; Refresh(); } | |
f31a4cb2 SC |
148 | #if wxUSE_GRAPHICS_CONTEXT |
149 | void UseGraphicContext(bool use) { m_useContext = use; Refresh(); } | |
150 | #endif | |
5707e433 | 151 | void Draw(wxDC& dc); |
204dd9a7 | 152 | |
b62c3631 | 153 | protected: |
e3b81044 VZ |
154 | enum DrawMode |
155 | { | |
156 | Draw_Normal, | |
157 | Draw_Stretch | |
158 | }; | |
159 | ||
568708e2 | 160 | void DrawTestLines( int x, int y, int width, wxDC &dc ); |
6386110d VZ |
161 | void DrawTestPoly(wxDC& dc); |
162 | void DrawTestBrushes(wxDC& dc); | |
568708e2 | 163 | void DrawText(wxDC& dc); |
e3b81044 | 164 | void DrawImages(wxDC& dc, DrawMode mode); |
81278df2 | 165 | void DrawWithLogicalOps(wxDC& dc); |
f31a4cb2 SC |
166 | #if wxUSE_GRAPHICS_CONTEXT |
167 | void DrawAlpha(wxDC& dc); | |
7a5c82b1 | 168 | void DrawGraphics(wxGraphicsContext* gc); |
f31a4cb2 | 169 | #endif |
bc3cedfa | 170 | void DrawRegions(wxDC& dc); |
f6bcfd97 | 171 | void DrawCircles(wxDC& dc); |
b11729f1 | 172 | void DrawSplines(wxDC& dc); |
568708e2 | 173 | void DrawDefault(wxDC& dc); |
213ad8e7 | 174 | void DrawGradients(wxDC& dc); |
4786aabd | 175 | |
4cbcae16 | 176 | void DrawRegionsHelper(wxDC& dc, wxCoord x, bool firstTime); |
8e0e4b1b | 177 | |
b62c3631 | 178 | private: |
568708e2 VZ |
179 | MyFrame *m_owner; |
180 | ||
f65e33a3 | 181 | int m_show; |
0e09f76e RR |
182 | wxBitmap m_smile_bmp; |
183 | wxIcon m_std_icon; | |
204dd9a7 | 184 | bool m_clip; |
8a021e00 SC |
185 | wxOverlay m_overlay; |
186 | bool m_rubberBand; | |
187 | wxPoint m_anchorpoint; | |
188 | wxPoint m_currentpoint; | |
f31a4cb2 SC |
189 | #if wxUSE_GRAPHICS_CONTEXT |
190 | bool m_useContext ; | |
191 | #endif | |
568708e2 | 192 | |
b62c3631 RR |
193 | DECLARE_EVENT_TABLE() |
194 | }; | |
195 | ||
aba99005 RR |
196 | // ---------------------------------------------------------------------------- |
197 | // constants | |
198 | // ---------------------------------------------------------------------------- | |
199 | ||
200 | // IDs for the controls and the menu commands | |
201 | enum | |
202 | { | |
203 | // menu items | |
b11729f1 WS |
204 | File_Quit = wxID_EXIT, |
205 | File_About = wxID_ABOUT, | |
568708e2 | 206 | |
b11729f1 | 207 | MenuShow_First = wxID_HIGHEST, |
568708e2 VZ |
208 | File_ShowDefault = MenuShow_First, |
209 | File_ShowText, | |
210 | File_ShowLines, | |
6386110d | 211 | File_ShowBrushes, |
568708e2 VZ |
212 | File_ShowPolygons, |
213 | File_ShowMask, | |
e3b81044 | 214 | File_ShowMaskStretch, |
81278df2 | 215 | File_ShowOps, |
bc3cedfa | 216 | File_ShowRegions, |
f6bcfd97 | 217 | File_ShowCircles, |
b11729f1 | 218 | File_ShowSplines, |
f31a4cb2 SC |
219 | #if wxUSE_GRAPHICS_CONTEXT |
220 | File_ShowAlpha, | |
7a5c82b1 | 221 | File_ShowGraphics, |
f31a4cb2 | 222 | #endif |
213ad8e7 VZ |
223 | File_ShowGradients, |
224 | MenuShow_Last = File_ShowGradients, | |
0f0c61d0 | 225 | |
204dd9a7 | 226 | File_Clip, |
f31a4cb2 SC |
227 | #if wxUSE_GRAPHICS_CONTEXT |
228 | File_GraphicContext, | |
229 | #endif | |
8c6b0819 VZ |
230 | File_Copy, |
231 | File_Save, | |
204dd9a7 | 232 | |
0f0c61d0 VZ |
233 | MenuOption_First, |
234 | ||
235 | MapMode_Text = MenuOption_First, | |
aba99005 RR |
236 | MapMode_Lometric, |
237 | MapMode_Twips, | |
238 | MapMode_Points, | |
239 | MapMode_Metric, | |
0f0c61d0 | 240 | |
aba99005 RR |
241 | UserScale_StretchHoriz, |
242 | UserScale_ShrinkHoriz, | |
243 | UserScale_StretchVertic, | |
244 | UserScale_ShrinkVertic, | |
0f0c61d0 VZ |
245 | UserScale_Restore, |
246 | ||
aba99005 RR |
247 | AxisMirror_Horiz, |
248 | AxisMirror_Vertic, | |
0f0c61d0 | 249 | |
aba99005 RR |
250 | LogicalOrigin_MoveDown, |
251 | LogicalOrigin_MoveUp, | |
252 | LogicalOrigin_MoveLeft, | |
253 | LogicalOrigin_MoveRight, | |
fb576291 VZ |
254 | LogicalOrigin_Set, |
255 | LogicalOrigin_Restore, | |
0f0c61d0 | 256 | |
960a83cc | 257 | #if wxUSE_COLOURDLG |
0f0c61d0 VZ |
258 | Colour_TextForeground, |
259 | Colour_TextBackground, | |
260 | Colour_Background, | |
960a83cc | 261 | #endif // wxUSE_COLOURDLG |
0f0c61d0 | 262 | Colour_BackgroundMode, |
1edc9f45 | 263 | Colour_TextureBackgound, |
0f0c61d0 | 264 | |
1edc9f45 | 265 | MenuOption_Last = Colour_TextureBackgound |
aba99005 RR |
266 | }; |
267 | ||
268 | // ---------------------------------------------------------------------------- | |
be5a51fb | 269 | // event tables and other macros for wxWidgets |
aba99005 RR |
270 | // ---------------------------------------------------------------------------- |
271 | ||
aba99005 | 272 | |
be5a51fb | 273 | // Create a new application object: this macro will allow wxWidgets to create |
aba99005 RR |
274 | // the application object during program execution (it's better than using a |
275 | // static object for many reasons) and also declares the accessor function | |
276 | // wxGetApp() which will return the reference of the right type (i.e. MyApp and | |
277 | // not wxApp) | |
278 | IMPLEMENT_APP(MyApp) | |
279 | ||
280 | // ============================================================================ | |
281 | // implementation | |
282 | // ============================================================================ | |
283 | ||
284 | // ---------------------------------------------------------------------------- | |
285 | // the application class | |
286 | // ---------------------------------------------------------------------------- | |
287 | ||
568708e2 VZ |
288 | bool MyApp::LoadImages() |
289 | { | |
f6bcfd97 BP |
290 | gs_bmpNoMask = new wxBitmap; |
291 | gs_bmpWithColMask = new wxBitmap; | |
292 | gs_bmpMask = new wxBitmap; | |
293 | gs_bmpWithMask = new wxBitmap; | |
294 | gs_bmp4 = new wxBitmap; | |
295 | gs_bmp4_mono = new wxBitmap; | |
296 | gs_bmp36 = new wxBitmap; | |
297 | ||
568708e2 | 298 | wxPathList pathList; |
e0ac7d94 VZ |
299 | // special hack for Unix in-tree sample build, don't do this in real |
300 | // programs, use wxStandardPaths instead | |
301 | pathList.Add(wxFileName(argv[0]).GetPath()); | |
9a83f860 VZ |
302 | pathList.Add(wxT(".")); |
303 | pathList.Add(wxT("..")); | |
304 | pathList.Add(wxT("../..")); | |
568708e2 | 305 | |
9a83f860 | 306 | wxString path = pathList.FindValidPath(wxT("pat4.bmp")); |
568708e2 | 307 | if ( !path ) |
9da8feef | 308 | return false; |
f6bcfd97 | 309 | |
e1208c31 | 310 | /* 4 colour bitmap */ |
f6bcfd97 | 311 | gs_bmp4->LoadFile(path, wxBITMAP_TYPE_BMP); |
e1208c31 | 312 | /* turn into mono-bitmap */ |
f6bcfd97 BP |
313 | gs_bmp4_mono->LoadFile(path, wxBITMAP_TYPE_BMP); |
314 | wxMask* mask4 = new wxMask(*gs_bmp4_mono, *wxBLACK); | |
315 | gs_bmp4_mono->SetMask(mask4); | |
568708e2 | 316 | |
9a83f860 | 317 | path = pathList.FindValidPath(wxT("pat36.bmp")); |
568708e2 | 318 | if ( !path ) |
9da8feef | 319 | return false; |
f6bcfd97 BP |
320 | gs_bmp36->LoadFile(path, wxBITMAP_TYPE_BMP); |
321 | wxMask* mask36 = new wxMask(*gs_bmp36, *wxBLACK); | |
322 | gs_bmp36->SetMask(mask36); | |
568708e2 | 323 | |
9a83f860 | 324 | path = pathList.FindValidPath(wxT("image.bmp")); |
568708e2 | 325 | if ( !path ) |
9da8feef | 326 | return false; |
f6bcfd97 BP |
327 | gs_bmpNoMask->LoadFile(path, wxBITMAP_TYPE_BMP); |
328 | gs_bmpWithMask->LoadFile(path, wxBITMAP_TYPE_BMP); | |
329 | gs_bmpWithColMask->LoadFile(path, wxBITMAP_TYPE_BMP); | |
568708e2 | 330 | |
9a83f860 | 331 | path = pathList.FindValidPath(wxT("mask.bmp")); |
568708e2 | 332 | if ( !path ) |
9da8feef | 333 | return false; |
f6bcfd97 | 334 | gs_bmpMask->LoadFile(path, wxBITMAP_TYPE_BMP); |
b9de1315 | 335 | |
f6bcfd97 BP |
336 | wxMask *mask = new wxMask(*gs_bmpMask, *wxBLACK); |
337 | gs_bmpWithMask->SetMask(mask); | |
568708e2 | 338 | |
f6bcfd97 BP |
339 | mask = new wxMask(*gs_bmpWithColMask, *wxWHITE); |
340 | gs_bmpWithColMask->SetMask(mask); | |
568708e2 | 341 | |
9da8feef | 342 | return true; |
568708e2 VZ |
343 | } |
344 | ||
aba99005 RR |
345 | // `Main program' equivalent: the program execution "starts" here |
346 | bool MyApp::OnInit() | |
347 | { | |
45e6e6f8 VZ |
348 | if ( !wxApp::OnInit() ) |
349 | return false; | |
350 | ||
aba99005 | 351 | // Create the main application window |
9a83f860 | 352 | MyFrame *frame = new MyFrame(wxT("Drawing sample"), |
5db56cd2 | 353 | wxDefaultPosition, wxSize(550, 840)); |
aba99005 | 354 | |
18f42b94 | 355 | // Show it |
9da8feef | 356 | frame->Show(true); |
aba99005 | 357 | |
568708e2 VZ |
358 | if ( !LoadImages() ) |
359 | { | |
4693b20c MB |
360 | wxLogError(wxT("Can't load one of the bitmap files needed ") |
361 | wxT("for this sample from the current or parent ") | |
362 | wxT("directory, please copy them there.")); | |
568708e2 | 363 | |
e0ac7d94 VZ |
364 | // still continue, the sample can be used without images too if they're |
365 | // missing for whatever reason | |
568708e2 | 366 | } |
8c6b0819 VZ |
367 | #if wxUSE_LIBPNG |
368 | wxImage::AddHandler( new wxPNGHandler ); | |
369 | #endif | |
568708e2 | 370 | |
9da8feef | 371 | return true; |
aba99005 RR |
372 | } |
373 | ||
f6bcfd97 BP |
374 | void MyApp::DeleteBitmaps() |
375 | { | |
5276b0a5 VZ |
376 | wxDELETE(gs_bmpNoMask); |
377 | wxDELETE(gs_bmpWithColMask); | |
378 | wxDELETE(gs_bmpMask); | |
379 | wxDELETE(gs_bmpWithMask); | |
380 | wxDELETE(gs_bmp4); | |
381 | wxDELETE(gs_bmp4_mono); | |
382 | wxDELETE(gs_bmp36); | |
f6bcfd97 BP |
383 | } |
384 | ||
aba99005 | 385 | // ---------------------------------------------------------------------------- |
b62c3631 | 386 | // MyCanvas |
aba99005 RR |
387 | // ---------------------------------------------------------------------------- |
388 | ||
be5a51fb | 389 | // the event tables connect the wxWidgets events with the functions (event |
b62c3631 RR |
390 | // handlers) which process them. |
391 | BEGIN_EVENT_TABLE(MyCanvas, wxScrolledWindow) | |
392 | EVT_PAINT (MyCanvas::OnPaint) | |
bf0c00c6 | 393 | EVT_MOTION (MyCanvas::OnMouseMove) |
8a021e00 SC |
394 | EVT_LEFT_DOWN (MyCanvas::OnMouseDown) |
395 | EVT_LEFT_UP (MyCanvas::OnMouseUp) | |
b62c3631 RR |
396 | END_EVENT_TABLE() |
397 | ||
c4218a74 | 398 | #include "smile.xpm" |
0e09f76e | 399 | |
c4218a74 | 400 | MyCanvas::MyCanvas(MyFrame *parent) |
9da8feef | 401 | : wxScrolledWindow(parent, wxID_ANY, wxDefaultPosition, wxDefaultSize, |
c4218a74 | 402 | wxHSCROLL | wxVSCROLL | wxNO_FULL_REPAINT_ON_RESIZE) |
b62c3631 | 403 | { |
b97fa7cf | 404 | m_owner = parent; |
f65e33a3 | 405 | m_show = File_ShowDefault; |
0e09f76e | 406 | m_smile_bmp = wxBitmap(smile_xpm); |
389d906b | 407 | m_std_icon = wxArtProvider::GetIcon(wxART_INFORMATION); |
9da8feef | 408 | m_clip = false; |
8a021e00 | 409 | m_rubberBand = false; |
f31a4cb2 SC |
410 | #if wxUSE_GRAPHICS_CONTEXT |
411 | m_useContext = false; | |
412 | #endif | |
b97fa7cf VZ |
413 | } |
414 | ||
6386110d | 415 | void MyCanvas::DrawTestBrushes(wxDC& dc) |
b97fa7cf | 416 | { |
6386110d VZ |
417 | static const wxCoord WIDTH = 200; |
418 | static const wxCoord HEIGHT = 80; | |
419 | ||
420 | wxCoord x = 10, | |
421 | y = 10; | |
422 | ||
de914436 | 423 | dc.SetBrush(*wxGREEN_BRUSH); |
6386110d | 424 | dc.DrawRectangle(x, y, WIDTH, HEIGHT); |
9a83f860 | 425 | dc.DrawText(wxT("Solid green"), x + 10, y + 10); |
6386110d VZ |
426 | |
427 | y += HEIGHT; | |
0856cb25 | 428 | dc.SetBrush(wxBrush(*wxRED, wxBRUSHSTYLE_CROSSDIAG_HATCH)); |
6386110d | 429 | dc.DrawRectangle(x, y, WIDTH, HEIGHT); |
1910265f VZ |
430 | dc.DrawText(wxT("Diagonally hatched red"), x + 10, y + 10); |
431 | ||
432 | y += HEIGHT; | |
0856cb25 | 433 | dc.SetBrush(wxBrush(*wxBLUE, wxBRUSHSTYLE_CROSS_HATCH)); |
1910265f VZ |
434 | dc.DrawRectangle(x, y, WIDTH, HEIGHT); |
435 | dc.DrawText(wxT("Cross hatched blue"), x + 10, y + 10); | |
436 | ||
437 | y += HEIGHT; | |
0856cb25 | 438 | dc.SetBrush(wxBrush(*wxCYAN, wxBRUSHSTYLE_VERTICAL_HATCH)); |
1910265f VZ |
439 | dc.DrawRectangle(x, y, WIDTH, HEIGHT); |
440 | dc.DrawText(wxT("Vertically hatched cyan"), x + 10, y + 10); | |
441 | ||
442 | y += HEIGHT; | |
0856cb25 | 443 | dc.SetBrush(wxBrush(*wxBLACK, wxBRUSHSTYLE_HORIZONTAL_HATCH)); |
1910265f VZ |
444 | dc.DrawRectangle(x, y, WIDTH, HEIGHT); |
445 | dc.DrawText(wxT("Horizontally hatched black"), x + 10, y + 10); | |
6386110d VZ |
446 | |
447 | y += HEIGHT; | |
448 | dc.SetBrush(wxBrush(*gs_bmpMask)); | |
449 | dc.DrawRectangle(x, y, WIDTH, HEIGHT); | |
9a83f860 | 450 | dc.DrawText(wxT("Stipple mono"), x + 10, y + 10); |
6386110d VZ |
451 | |
452 | y += HEIGHT; | |
453 | dc.SetBrush(wxBrush(*gs_bmpNoMask)); | |
454 | dc.DrawRectangle(x, y, WIDTH, HEIGHT); | |
9a83f860 | 455 | dc.DrawText(wxT("Stipple colour"), x + 10, y + 10); |
6386110d | 456 | } |
b97fa7cf | 457 | |
6386110d VZ |
458 | void MyCanvas::DrawTestPoly(wxDC& dc) |
459 | { | |
0856cb25 | 460 | wxBrush brushHatch(*wxRED, wxBRUSHSTYLE_FDIAGONAL_HATCH); |
6386110d VZ |
461 | dc.SetBrush(brushHatch); |
462 | ||
463 | wxPoint star[5]; | |
464 | star[0] = wxPoint(100, 60); | |
465 | star[1] = wxPoint(60, 150); | |
466 | star[2] = wxPoint(160, 100); | |
467 | star[3] = wxPoint(40, 100); | |
468 | star[4] = wxPoint(140, 150); | |
469 | ||
9a83f860 VZ |
470 | dc.DrawText(wxT("You should see two (irregular) stars below, the left one ") |
471 | wxT("hatched"), 10, 10); | |
472 | dc.DrawText(wxT("except for the central region and the right ") | |
473 | wxT("one entirely hatched"), 10, 30); | |
474 | dc.DrawText(wxT("The third star only has a hatched outline"), 10, 50); | |
163dc80e VZ |
475 | |
476 | dc.DrawPolygon(WXSIZEOF(star), star, 0, 30); | |
477 | dc.DrawPolygon(WXSIZEOF(star), star, 160, 30, wxWINDING_RULE); | |
478 | ||
479 | wxPoint star2[10]; | |
480 | star2[0] = wxPoint(0, 100); | |
481 | star2[1] = wxPoint(-59, -81); | |
482 | star2[2] = wxPoint(95, 31); | |
483 | star2[3] = wxPoint(-95, 31); | |
484 | star2[4] = wxPoint(59, -81); | |
485 | star2[5] = wxPoint(0, 80); | |
486 | star2[6] = wxPoint(-47, -64); | |
487 | star2[7] = wxPoint(76, 24); | |
488 | star2[8] = wxPoint(-76, 24); | |
489 | star2[9] = wxPoint(47, -64); | |
490 | int count[2] = {5, 5}; | |
491 | ||
492 | dc.DrawPolyPolygon(WXSIZEOF(count), count, star2, 450, 150); | |
b62c3631 RR |
493 | } |
494 | ||
1e7fd311 | 495 | void MyCanvas::DrawTestLines( int x, int y, int width, wxDC &dc ) |
b62c3631 | 496 | { |
de914436 | 497 | dc.SetPen( wxPen( *wxBLACK, width ) ); |
1e7fd311 | 498 | dc.SetBrush( *wxRED_BRUSH ); |
4693b20c | 499 | dc.DrawText(wxString::Format(wxT("Testing lines of width %d"), width), x + 10, y - 10); |
9a8c7620 | 500 | dc.DrawRectangle( x+10, y+10, 100, 190 ); |
4786aabd | 501 | |
9a83f860 | 502 | dc.DrawText(wxT("Solid/dot/short dash/long dash/dot dash"), x + 150, y + 10); |
de914436 | 503 | dc.SetPen( wxPen( *wxBLACK, width ) ); |
696e1ea0 | 504 | dc.DrawLine( x+20, y+20, 100, y+20 ); |
0856cb25 | 505 | dc.SetPen( wxPen( *wxBLACK, width, wxPENSTYLE_DOT) ); |
696e1ea0 | 506 | dc.DrawLine( x+20, y+30, 100, y+30 ); |
0856cb25 | 507 | dc.SetPen( wxPen( *wxBLACK, width, wxPENSTYLE_SHORT_DASH) ); |
696e1ea0 | 508 | dc.DrawLine( x+20, y+40, 100, y+40 ); |
0856cb25 | 509 | dc.SetPen( wxPen( *wxBLACK, width, wxPENSTYLE_LONG_DASH) ); |
696e1ea0 | 510 | dc.DrawLine( x+20, y+50, 100, y+50 ); |
0856cb25 | 511 | dc.SetPen( wxPen( *wxBLACK, width, wxPENSTYLE_DOT_DASH) ); |
696e1ea0 | 512 | dc.DrawLine( x+20, y+60, 100, y+60 ); |
1e7fd311 | 513 | |
9a83f860 | 514 | dc.DrawText(wxT("Misc hatches"), x + 150, y + 70); |
0856cb25 | 515 | dc.SetPen( wxPen( *wxBLACK, width, wxPENSTYLE_BDIAGONAL_HATCH) ); |
696e1ea0 | 516 | dc.DrawLine( x+20, y+70, 100, y+70 ); |
0856cb25 | 517 | dc.SetPen( wxPen( *wxBLACK, width, wxPENSTYLE_CROSSDIAG_HATCH) ); |
696e1ea0 | 518 | dc.DrawLine( x+20, y+80, 100, y+80 ); |
0856cb25 | 519 | dc.SetPen( wxPen( *wxBLACK, width, wxPENSTYLE_FDIAGONAL_HATCH) ); |
696e1ea0 | 520 | dc.DrawLine( x+20, y+90, 100, y+90 ); |
0856cb25 | 521 | dc.SetPen( wxPen( *wxBLACK, width, wxPENSTYLE_CROSS_HATCH) ); |
696e1ea0 | 522 | dc.DrawLine( x+20, y+100, 100, y+100 ); |
0856cb25 | 523 | dc.SetPen( wxPen( *wxBLACK, width, wxPENSTYLE_HORIZONTAL_HATCH) ); |
696e1ea0 | 524 | dc.DrawLine( x+20, y+110, 100, y+110 ); |
0856cb25 | 525 | dc.SetPen( wxPen( *wxBLACK, width, wxPENSTYLE_VERTICAL_HATCH) ); |
696e1ea0 | 526 | dc.DrawLine( x+20, y+120, 100, y+120 ); |
1e7fd311 | 527 | |
9a83f860 | 528 | dc.DrawText(wxT("User dash"), x + 150, y + 140); |
0856cb25 | 529 | wxPen ud( *wxBLACK, width, wxPENSTYLE_USER_DASH ); |
e2a5251d VZ |
530 | wxDash dash1[6]; |
531 | dash1[0] = 8; // Long dash <---------+ | |
532 | dash1[1] = 2; // Short gap | | |
533 | dash1[2] = 3; // Short dash | | |
534 | dash1[3] = 2; // Short gap | | |
535 | dash1[4] = 3; // Short dash | | |
536 | dash1[5] = 2; // Short gap and repeat + | |
537 | ud.SetDashes( 6, dash1 ); | |
538 | dc.SetPen( ud ); | |
696e1ea0 | 539 | dc.DrawLine( x+20, y+140, 100, y+140 ); |
e2a5251d VZ |
540 | dash1[0] = 5; // Make first dash shorter |
541 | ud.SetDashes( 6, dash1 ); | |
542 | dc.SetPen( ud ); | |
696e1ea0 | 543 | dc.DrawLine( x+20, y+150, 100, y+150 ); |
e2a5251d VZ |
544 | dash1[2] = 5; // Make second dash longer |
545 | ud.SetDashes( 6, dash1 ); | |
546 | dc.SetPen( ud ); | |
696e1ea0 | 547 | dc.DrawLine( x+20, y+160, 100, y+160 ); |
e2a5251d VZ |
548 | dash1[4] = 5; // Make third dash longer |
549 | ud.SetDashes( 6, dash1 ); | |
550 | dc.SetPen( ud ); | |
696e1ea0 | 551 | dc.DrawLine( x+20, y+170, 100, y+170 ); |
b62c3631 RR |
552 | } |
553 | ||
568708e2 | 554 | void MyCanvas::DrawDefault(wxDC& dc) |
b62c3631 | 555 | { |
d9a1b218 PC |
556 | // Draw circle centered at the origin, then flood fill it with a different |
557 | // color. Done with a wxMemoryDC because Blit (used by generic | |
558 | // wxDoFloodFill) from a window that is being painted gives unpredictable | |
559 | // results on wxGTK | |
560 | { | |
561 | wxImage img(21, 21, false); | |
562 | img.Clear(1); | |
563 | wxBitmap bmp(img); | |
564 | { | |
565 | wxMemoryDC mdc(bmp); | |
566 | mdc.SetBrush(dc.GetBrush()); | |
567 | mdc.SetPen(dc.GetPen()); | |
568 | mdc.DrawCircle(10, 10, 10); | |
569 | wxColour c; | |
570 | if (mdc.GetPixel(11, 11, &c)) | |
571 | { | |
572 | mdc.SetBrush(wxColour(128, 128, 0)); | |
573 | mdc.FloodFill(11, 11, c, wxFLOOD_SURFACE); | |
574 | } | |
575 | } | |
576 | bmp.SetMask(new wxMask(bmp, wxColour(1, 1, 1))); | |
577 | dc.DrawBitmap(bmp, -10, -10, true); | |
578 | } | |
11fdee42 | 579 | |
cd9da200 VZ |
580 | dc.DrawCheckMark(5, 80, 15, 15); |
581 | dc.DrawCheckMark(25, 80, 30, 30); | |
582 | dc.DrawCheckMark(60, 80, 60, 60); | |
583 | ||
0e09f76e | 584 | // this is the test for "blitting bitmap into DC damages selected brush" bug |
0e09f76e | 585 | wxCoord rectSize = m_std_icon.GetWidth() + 10; |
cd9da200 | 586 | wxCoord x = 100; |
11f26ea0 VZ |
587 | dc.SetPen(*wxTRANSPARENT_PEN); |
588 | dc.SetBrush( *wxGREEN_BRUSH ); | |
cd9da200 | 589 | dc.DrawRectangle(x, 10, rectSize, rectSize); |
9da8feef | 590 | dc.DrawBitmap(m_std_icon, x + 5, 15, true); |
cd9da200 VZ |
591 | x += rectSize + 10; |
592 | dc.DrawRectangle(x, 10, rectSize, rectSize); | |
0e09f76e | 593 | dc.DrawIcon(m_std_icon, x + 5, 15); |
cd9da200 VZ |
594 | x += rectSize + 10; |
595 | dc.DrawRectangle(x, 10, rectSize, rectSize); | |
11f26ea0 VZ |
596 | |
597 | // test for "transparent" bitmap drawing (it intersects with the last | |
598 | // rectangle above) | |
599 | //dc.SetBrush( *wxTRANSPARENT_BRUSH ); | |
d6f0a4b3 | 600 | |
a1b806b9 | 601 | if (m_smile_bmp.IsOk()) |
9da8feef | 602 | dc.DrawBitmap(m_smile_bmp, x + rectSize - 20, rectSize - 10, true); |
107a1787 | 603 | |
ff7c6c9c | 604 | dc.SetBrush( *wxBLACK_BRUSH ); |
107a1787 RR |
605 | dc.DrawRectangle( 0, 160, 1000, 300 ); |
606 | ||
607 | // draw lines | |
608 | wxBitmap bitmap(20,70); | |
609 | wxMemoryDC memdc; | |
610 | memdc.SelectObject( bitmap ); | |
611 | memdc.SetBrush( *wxBLACK_BRUSH ); | |
612 | memdc.SetPen( *wxWHITE_PEN ); | |
613 | memdc.DrawRectangle(0,0,20,70); | |
614 | memdc.DrawLine( 10,0,10,70 ); | |
81278df2 | 615 | |
d4aa3a4b | 616 | // to the right |
4c45f240 | 617 | wxPen pen = *wxRED_PEN; |
4c45f240 | 618 | memdc.SetPen(pen); |
107a1787 RR |
619 | memdc.DrawLine( 10, 5,10, 5 ); |
620 | memdc.DrawLine( 10,10,11,10 ); | |
621 | memdc.DrawLine( 10,15,12,15 ); | |
622 | memdc.DrawLine( 10,20,13,20 ); | |
81278df2 | 623 | |
d4aa3a4b RR |
624 | /* |
625 | memdc.SetPen(*wxRED_PEN); | |
107a1787 RR |
626 | memdc.DrawLine( 12, 5,12, 5 ); |
627 | memdc.DrawLine( 12,10,13,10 ); | |
628 | memdc.DrawLine( 12,15,14,15 ); | |
629 | memdc.DrawLine( 12,20,15,20 ); | |
d4aa3a4b | 630 | */ |
81278df2 | 631 | |
107a1787 RR |
632 | // same to the left |
633 | memdc.DrawLine( 10,25,10,25 ); | |
634 | memdc.DrawLine( 10,30, 9,30 ); | |
635 | memdc.DrawLine( 10,35, 8,35 ); | |
636 | memdc.DrawLine( 10,40, 7,40 ); | |
637 | ||
638 | // XOR draw lines | |
d4aa3a4b | 639 | dc.SetPen(*wxWHITE_PEN); |
107a1787 RR |
640 | memdc.SetLogicalFunction( wxINVERT ); |
641 | memdc.SetPen( *wxWHITE_PEN ); | |
642 | memdc.DrawLine( 10,50,10,50 ); | |
643 | memdc.DrawLine( 10,55,11,55 ); | |
644 | memdc.DrawLine( 10,60,12,60 ); | |
645 | memdc.DrawLine( 10,65,13,65 ); | |
81278df2 | 646 | |
107a1787 RR |
647 | memdc.DrawLine( 12,50,12,50 ); |
648 | memdc.DrawLine( 12,55,13,55 ); | |
649 | memdc.DrawLine( 12,60,14,60 ); | |
650 | memdc.DrawLine( 12,65,15,65 ); | |
81278df2 | 651 | |
107a1787 RR |
652 | memdc.SelectObject( wxNullBitmap ); |
653 | dc.DrawBitmap( bitmap, 10, 170 ); | |
389d906b | 654 | wxImage image = bitmap.ConvertToImage(); |
107a1787 | 655 | image.Rescale( 60,210 ); |
389d906b | 656 | bitmap = wxBitmap(image); |
107a1787 | 657 | dc.DrawBitmap( bitmap, 50, 170 ); |
81278df2 | 658 | |
b9de1315 | 659 | // test the rectangle outline drawing - there should be one pixel between |
ff7c6c9c RR |
660 | // the rect and the lines |
661 | dc.SetPen(*wxWHITE_PEN); | |
662 | dc.SetBrush( *wxTRANSPARENT_BRUSH ); | |
ff7c6c9c | 663 | dc.DrawRectangle(150, 170, 49, 29); |
107a1787 | 664 | dc.DrawRectangle(200, 170, 49, 29); |
ff7c6c9c | 665 | dc.SetPen(*wxWHITE_PEN); |
107a1787 RR |
666 | dc.DrawLine(250, 210, 250, 170); |
667 | dc.DrawLine(260, 200, 150, 200); | |
b9de1315 VZ |
668 | |
669 | // test the rectangle filled drawing - there should be one pixel between | |
ff7c6c9c RR |
670 | // the rect and the lines |
671 | dc.SetPen(*wxTRANSPARENT_PEN); | |
672 | dc.SetBrush( *wxWHITE_BRUSH ); | |
673 | dc.DrawRectangle(300, 170, 49, 29); | |
568708e2 | 674 | dc.DrawRectangle(350, 170, 49, 29); |
ff7c6c9c | 675 | dc.SetPen(*wxWHITE_PEN); |
b9de1315 VZ |
676 | dc.DrawLine(400, 170, 400, 210); |
677 | dc.DrawLine(300, 200, 410, 200); | |
678 | ||
3d2d8da1 RR |
679 | // a few more tests of this kind |
680 | dc.SetPen(*wxRED_PEN); | |
681 | dc.SetBrush( *wxWHITE_BRUSH ); | |
682 | dc.DrawRectangle(300, 220, 1, 1); | |
683 | dc.DrawRectangle(310, 220, 2, 2); | |
684 | dc.DrawRectangle(320, 220, 3, 3); | |
685 | dc.DrawRectangle(330, 220, 4, 4); | |
686 | ||
687 | dc.SetPen(*wxTRANSPARENT_PEN); | |
688 | dc.SetBrush( *wxWHITE_BRUSH ); | |
689 | dc.DrawRectangle(300, 230, 1, 1); | |
690 | dc.DrawRectangle(310, 230, 2, 2); | |
691 | dc.DrawRectangle(320, 230, 3, 3); | |
692 | dc.DrawRectangle(330, 230, 4, 4); | |
693 | ||
b9de1315 VZ |
694 | // and now for filled rect with outline |
695 | dc.SetPen(*wxRED_PEN); | |
696 | dc.SetBrush( *wxWHITE_BRUSH ); | |
697 | dc.DrawRectangle(500, 170, 49, 29); | |
698 | dc.DrawRectangle(550, 170, 49, 29); | |
699 | dc.SetPen(*wxWHITE_PEN); | |
700 | dc.DrawLine(600, 170, 600, 210); | |
701 | dc.DrawLine(500, 200, 610, 200); | |
702 | ||
703 | // test the rectangle outline drawing - there should be one pixel between | |
ff7c6c9c RR |
704 | // the rect and the lines |
705 | dc.SetPen(*wxWHITE_PEN); | |
706 | dc.SetBrush( *wxTRANSPARENT_BRUSH ); | |
ff7c6c9c | 707 | dc.DrawRoundedRectangle(150, 270, 49, 29, 6); |
107a1787 | 708 | dc.DrawRoundedRectangle(200, 270, 49, 29, 6); |
ff7c6c9c | 709 | dc.SetPen(*wxWHITE_PEN); |
107a1787 RR |
710 | dc.DrawLine(250, 270, 250, 310); |
711 | dc.DrawLine(150, 300, 260, 300); | |
b9de1315 VZ |
712 | |
713 | // test the rectangle filled drawing - there should be one pixel between | |
ff7c6c9c RR |
714 | // the rect and the lines |
715 | dc.SetPen(*wxTRANSPARENT_PEN); | |
716 | dc.SetBrush( *wxWHITE_BRUSH ); | |
717 | dc.DrawRoundedRectangle(300, 270, 49, 29, 6); | |
718 | dc.DrawRoundedRectangle(350, 270, 49, 29, 6); | |
719 | dc.SetPen(*wxWHITE_PEN); | |
b9de1315 VZ |
720 | dc.DrawLine(400, 270, 400, 310); |
721 | dc.DrawLine(300, 300, 410, 300); | |
ff7c6c9c | 722 | |
b14c14ff JS |
723 | // Added by JACS to demonstrate bizarre behaviour. |
724 | // With a size of 70, we get a missing red RHS, | |
3103e8a9 | 725 | // and the height is too small, so we get yellow |
b14c14ff JS |
726 | // showing. With a size of 40, it draws as expected: |
727 | // it just shows a white rectangle with red outline. | |
728 | int totalWidth = 70; | |
729 | int totalHeight = 70; | |
730 | wxBitmap bitmap2(totalWidth, totalHeight); | |
731 | ||
732 | wxMemoryDC memdc2; | |
733 | memdc2.SelectObject(bitmap2); | |
734 | ||
de914436 | 735 | memdc2.SetBackground(*wxYELLOW_BRUSH); |
d6f0a4b3 | 736 | memdc2.Clear(); |
b14c14ff | 737 | |
b14c14ff JS |
738 | // Now draw a white rectangle with red outline. It should |
739 | // entirely eclipse the yellow background. | |
740 | memdc2.SetPen(*wxRED_PEN); | |
741 | memdc2.SetBrush(*wxWHITE_BRUSH); | |
742 | ||
743 | memdc2.DrawRectangle(0, 0, totalWidth, totalHeight); | |
744 | ||
b14c14ff JS |
745 | memdc2.SetPen(wxNullPen); |
746 | memdc2.SetBrush(wxNullBrush); | |
cd9da200 | 747 | memdc2.SelectObject(wxNullBitmap); |
b14c14ff JS |
748 | |
749 | dc.DrawBitmap(bitmap2, 500, 270); | |
d6f0a4b3 JS |
750 | |
751 | // Repeat, but draw directly on dc | |
752 | // Draw a yellow rectangle filling the bitmap | |
753 | ||
754 | x = 600; int y = 270; | |
de914436 PC |
755 | dc.SetPen(*wxYELLOW_PEN); |
756 | dc.SetBrush(*wxYELLOW_BRUSH); | |
d6f0a4b3 JS |
757 | dc.DrawRectangle(x, y, totalWidth, totalHeight); |
758 | ||
759 | // Now draw a white rectangle with red outline. It should | |
760 | // entirely eclipse the yellow background. | |
761 | dc.SetPen(*wxRED_PEN); | |
762 | dc.SetBrush(*wxWHITE_BRUSH); | |
763 | ||
764 | dc.DrawRectangle(x, y, totalWidth, totalHeight); | |
568708e2 VZ |
765 | } |
766 | ||
767 | void MyCanvas::DrawText(wxDC& dc) | |
768 | { | |
9a8c7620 | 769 | // set underlined font for testing |
9da8feef | 770 | dc.SetFont( wxFont(12, wxMODERN, wxNORMAL, wxNORMAL, true) ); |
9a83f860 VZ |
771 | dc.DrawText( wxT("This is text"), 110, 10 ); |
772 | dc.DrawRotatedText( wxT("That is text"), 20, 10, -45 ); | |
9a8c7620 | 773 | |
4770df95 VZ |
774 | // use wxSWISS_FONT and not wxNORMAL_FONT as the latter can't be rotated |
775 | // under Win9x (it is not TrueType) | |
776 | dc.SetFont( *wxSWISS_FONT ); | |
b62c3631 | 777 | |
696e1ea0 | 778 | wxString text; |
f6bcfd97 | 779 | dc.SetBackgroundMode(wxTRANSPARENT); |
696e1ea0 VZ |
780 | |
781 | for ( int n = -180; n < 180; n += 30 ) | |
782 | { | |
4693b20c | 783 | text.Printf(wxT(" %d rotated text"), n); |
696e1ea0 VZ |
784 | dc.DrawRotatedText(text , 400, 400, n); |
785 | } | |
95724b1a | 786 | |
196c87f4 | 787 | dc.SetFont( wxFont( 18, wxSWISS, wxNORMAL, wxNORMAL ) ); |
c45a644e | 788 | |
9a83f860 | 789 | dc.DrawText( wxT("This is Swiss 18pt text."), 110, 40 ); |
c45a644e | 790 | |
6f207e66 VS |
791 | wxCoord length; |
792 | wxCoord height; | |
793 | wxCoord descent; | |
9a83f860 | 794 | dc.GetTextExtent( wxT("This is Swiss 18pt text."), &length, &height, &descent ); |
e22fa4d7 | 795 | text.Printf( wxT("Dimensions are length %d, height %d, descent %d"), length, height, descent ); |
c45a644e RR |
796 | dc.DrawText( text, 110, 80 ); |
797 | ||
4693b20c | 798 | text.Printf( wxT("CharHeight() returns: %d"), dc.GetCharHeight() ); |
c45a644e RR |
799 | dc.DrawText( text, 110, 120 ); |
800 | ||
568708e2 | 801 | dc.DrawRectangle( 100, 40, 4, height ); |
f6bcfd97 BP |
802 | |
803 | // test the logical function effect | |
804 | wxCoord y = 150; | |
805 | dc.SetLogicalFunction(wxINVERT); | |
e928566f | 806 | // text drawing should ignore logical function |
9a83f860 | 807 | dc.DrawText( wxT("There should be a text below"), 110, 150 ); |
f6bcfd97 BP |
808 | dc.DrawRectangle( 110, y, 100, height ); |
809 | ||
f6bcfd97 | 810 | y += height; |
9a83f860 | 811 | dc.DrawText( wxT("Visible text"), 110, y ); |
f6bcfd97 | 812 | dc.DrawRectangle( 110, y, 100, height ); |
9a83f860 | 813 | dc.DrawText( wxT("Visible text"), 110, y ); |
f6bcfd97 BP |
814 | dc.DrawRectangle( 110, y, 100, height ); |
815 | dc.SetLogicalFunction(wxCOPY); | |
816 | ||
817 | y += height; | |
818 | dc.DrawRectangle( 110, y, 100, height ); | |
9a83f860 | 819 | dc.DrawText( wxT("Another visible text"), 110, y ); |
a5bb4514 VZ |
820 | |
821 | y += height; | |
822 | dc.DrawText("And\nmore\ntext on\nmultiple\nlines", 110, y); | |
568708e2 VZ |
823 | } |
824 | ||
81278df2 | 825 | static const struct |
568708e2 | 826 | { |
81278df2 | 827 | const wxChar *name; |
89efaf2b | 828 | wxRasterOperationMode rop; |
81278df2 VZ |
829 | } rasterOperations[] = |
830 | { | |
4693b20c MB |
831 | { wxT("wxAND"), wxAND }, |
832 | { wxT("wxAND_INVERT"), wxAND_INVERT }, | |
833 | { wxT("wxAND_REVERSE"), wxAND_REVERSE }, | |
834 | { wxT("wxCLEAR"), wxCLEAR }, | |
835 | { wxT("wxCOPY"), wxCOPY }, | |
836 | { wxT("wxEQUIV"), wxEQUIV }, | |
837 | { wxT("wxINVERT"), wxINVERT }, | |
838 | { wxT("wxNAND"), wxNAND }, | |
839 | { wxT("wxNO_OP"), wxNO_OP }, | |
840 | { wxT("wxOR"), wxOR }, | |
841 | { wxT("wxOR_INVERT"), wxOR_INVERT }, | |
842 | { wxT("wxOR_REVERSE"), wxOR_REVERSE }, | |
843 | { wxT("wxSET"), wxSET }, | |
844 | { wxT("wxSRC_INVERT"), wxSRC_INVERT }, | |
845 | { wxT("wxXOR"), wxXOR }, | |
81278df2 | 846 | }; |
568708e2 | 847 | |
e3b81044 | 848 | void MyCanvas::DrawImages(wxDC& dc, DrawMode mode) |
81278df2 | 849 | { |
9a83f860 | 850 | dc.DrawText(wxT("original image"), 0, 0); |
f6bcfd97 | 851 | dc.DrawBitmap(*gs_bmpNoMask, 0, 20, 0); |
9a83f860 | 852 | dc.DrawText(wxT("with colour mask"), 0, 100); |
9da8feef | 853 | dc.DrawBitmap(*gs_bmpWithColMask, 0, 120, true); |
9a83f860 | 854 | dc.DrawText(wxT("the mask image"), 0, 200); |
f6bcfd97 | 855 | dc.DrawBitmap(*gs_bmpMask, 0, 220, 0); |
9a83f860 | 856 | dc.DrawText(wxT("masked image"), 0, 300); |
9da8feef | 857 | dc.DrawBitmap(*gs_bmpWithMask, 0, 320, true); |
568708e2 | 858 | |
f6bcfd97 BP |
859 | int cx = gs_bmpWithColMask->GetWidth(), |
860 | cy = gs_bmpWithColMask->GetHeight(); | |
568708e2 VZ |
861 | |
862 | wxMemoryDC memDC; | |
863 | for ( size_t n = 0; n < WXSIZEOF(rasterOperations); n++ ) | |
864 | { | |
865 | wxCoord x = 120 + 150*(n%4), | |
866 | y = 20 + 100*(n/4); | |
4786aabd | 867 | |
568708e2 | 868 | dc.DrawText(rasterOperations[n].name, x, y - 20); |
f6bcfd97 | 869 | memDC.SelectObject(*gs_bmpWithColMask); |
e3b81044 VZ |
870 | if ( mode == Draw_Stretch ) |
871 | { | |
872 | dc.StretchBlit(x, y, cx, cy, &memDC, 0, 0, cx/2, cy/2, | |
873 | rasterOperations[n].rop, true); | |
874 | } | |
875 | else | |
876 | { | |
877 | dc.Blit(x, y, cx, cy, &memDC, 0, 0, rasterOperations[n].rop, true); | |
878 | } | |
568708e2 VZ |
879 | } |
880 | } | |
881 | ||
81278df2 VZ |
882 | void MyCanvas::DrawWithLogicalOps(wxDC& dc) |
883 | { | |
884 | static const wxCoord w = 60; | |
885 | static const wxCoord h = 60; | |
886 | ||
887 | // reuse the text colour here | |
de914436 | 888 | dc.SetPen(wxPen(m_owner->m_colourForeground)); |
11f26ea0 | 889 | dc.SetBrush(*wxTRANSPARENT_BRUSH); |
81278df2 | 890 | |
5888ef1e VZ |
891 | size_t n; |
892 | for ( n = 0; n < WXSIZEOF(rasterOperations); n++ ) | |
81278df2 VZ |
893 | { |
894 | wxCoord x = 20 + 150*(n%4), | |
895 | y = 20 + 100*(n/4); | |
896 | ||
897 | dc.DrawText(rasterOperations[n].name, x, y - 20); | |
898 | dc.SetLogicalFunction(rasterOperations[n].rop); | |
11f26ea0 | 899 | dc.DrawRectangle(x, y, w, h); |
81278df2 VZ |
900 | dc.DrawLine(x, y, x + w, y + h); |
901 | dc.DrawLine(x + w, y, x, y + h); | |
902 | } | |
c1d139da GRG |
903 | |
904 | // now some filled rectangles | |
de914436 | 905 | dc.SetBrush(wxBrush(m_owner->m_colourForeground)); |
c1d139da | 906 | |
5888ef1e | 907 | for ( n = 0; n < WXSIZEOF(rasterOperations); n++ ) |
c1d139da GRG |
908 | { |
909 | wxCoord x = 20 + 150*(n%4), | |
910 | y = 500 + 100*(n/4); | |
911 | ||
912 | dc.DrawText(rasterOperations[n].name, x, y - 20); | |
913 | dc.SetLogicalFunction(rasterOperations[n].rop); | |
914 | dc.DrawRectangle(x, y, w, h); | |
915 | } | |
81278df2 VZ |
916 | } |
917 | ||
f31a4cb2 | 918 | #if wxUSE_GRAPHICS_CONTEXT |
ad0b4329 | 919 | #ifdef __WXGTK20__ |
84e0e526 | 920 | void MyCanvas::DrawAlpha(wxDC& WXUNUSED(dummyDC)) |
ad0b4329 | 921 | #else |
f31a4cb2 | 922 | void MyCanvas::DrawAlpha(wxDC& dc) |
ad0b4329 | 923 | #endif |
f31a4cb2 | 924 | { |
ad0b4329 RR |
925 | #ifdef __WXGTK__ |
926 | wxGCDC dc( this ); | |
927 | PrepareDC( dc ); | |
928 | #endif | |
929 | ||
f31a4cb2 SC |
930 | wxDouble margin = 20 ; |
931 | wxDouble width = 180 ; | |
932 | wxDouble radius = 30 ; | |
e3b81044 | 933 | |
de914436 PC |
934 | dc.SetPen( wxPen( wxColour( 128, 0, 0 ), 12 )); |
935 | dc.SetBrush(*wxRED_BRUSH); | |
e3b81044 | 936 | |
f31a4cb2 | 937 | wxRect r(margin,margin+width*0.66,width,width) ; |
e3b81044 | 938 | |
f31a4cb2 | 939 | dc.DrawRoundedRectangle( r.x, r.y, r.width, r.width, radius ) ; |
e3b81044 | 940 | |
de914436 PC |
941 | dc.SetPen( wxPen( wxColour( 0, 0, 128 ), 12)); |
942 | dc.SetBrush(*wxBLUE_BRUSH); | |
e3b81044 | 943 | |
f31a4cb2 | 944 | r.Offset( width * 0.8 , - width * 0.66 ) ; |
e3b81044 | 945 | |
f31a4cb2 | 946 | dc.DrawRoundedRectangle( r.x, r.y, r.width, r.width, radius ) ; |
e3b81044 | 947 | |
de914436 PC |
948 | dc.SetPen( wxPen( wxColour( 128, 128, 0 ), 12)); |
949 | dc.SetBrush( wxBrush( wxColour( 192, 192, 0))); | |
f31a4cb2 SC |
950 | |
951 | r.Offset( width * 0.8 , width *0.5 ) ; | |
e3b81044 | 952 | |
f31a4cb2 | 953 | dc.DrawRoundedRectangle( r.x, r.y, r.width, r.width, radius ) ; |
e3b81044 | 954 | |
f31a4cb2 SC |
955 | dc.SetPen( *wxTRANSPARENT_PEN ) ; |
956 | dc.SetBrush( wxBrush( wxColour(255,255,128,128) ) ); | |
957 | dc.DrawRoundedRectangle( 0 , margin + width / 2 , width * 3 , 100 , radius) ; | |
e3b81044 | 958 | |
ad0b4329 RR |
959 | dc.SetTextForeground( wxColour(255,255,0,128) ); |
960 | dc.SetFont( wxFont( 40, wxFONTFAMILY_SWISS, wxFONTSTYLE_ITALIC, wxFONTWEIGHT_NORMAL ) ); | |
961 | dc.DrawText( wxT("Hello!"), 120, 80 ); | |
f31a4cb2 SC |
962 | } |
963 | ||
964 | #endif | |
965 | ||
7a5c82b1 SC |
966 | #if wxUSE_GRAPHICS_CONTEXT |
967 | ||
968 | const int BASE = 80.0; | |
969 | const int BASE2 = BASE/2; | |
970 | const int BASE4 = BASE/4; | |
971 | ||
972 | static inline double DegToRad(double deg) { return (deg * M_PI) / 180.0; } | |
973 | ||
974 | ||
975 | // modeled along Robin Dunn's GraphicsContext.py sample | |
976 | ||
977 | void MyCanvas::DrawGraphics(wxGraphicsContext* gc) | |
978 | { | |
979 | wxFont font = wxSystemSettings::GetFont(wxSYS_DEFAULT_GUI_FONT); | |
980 | gc->SetFont(font,*wxBLACK); | |
4ee4c7b9 | 981 | |
7a5c82b1 SC |
982 | // make a path that contains a circle and some lines, centered at 0,0 |
983 | wxGraphicsPath path = gc->CreatePath() ; | |
984 | path.AddCircle( 0, 0, BASE2 ); | |
985 | path.MoveToPoint(0, -BASE2); | |
986 | path.AddLineToPoint(0, BASE2); | |
987 | path.MoveToPoint(-BASE2, 0); | |
988 | path.AddLineToPoint(BASE2, 0); | |
989 | path.CloseSubpath(); | |
990 | path.AddRectangle(-BASE4, -BASE4/2, BASE2, BASE4); | |
4ee4c7b9 | 991 | |
7a5c82b1 | 992 | // Now use that path to demonstrate various capbilites of the grpahics context |
4ee4c7b9 | 993 | gc->PushState(); // save current translation/scale/other state |
7a5c82b1 SC |
994 | gc->Translate(60, 75); // reposition the context origin |
995 | ||
de914436 | 996 | gc->SetPen(wxPen("navy")); |
7a5c82b1 | 997 | gc->SetBrush(wxBrush("pink")); |
4ee4c7b9 | 998 | |
7a5c82b1 SC |
999 | for( int i = 0 ; i < 3 ; ++i ) |
1000 | { | |
1001 | wxString label; | |
1002 | switch( i ) | |
1003 | { | |
1004 | case 0 : | |
1005 | label = "StrokePath"; | |
1006 | break; | |
1007 | case 1 : | |
1008 | label = "FillPath"; | |
1009 | break; | |
1010 | case 2 : | |
1011 | label = "DrawPath"; | |
1012 | break; | |
1013 | } | |
1014 | wxDouble w, h; | |
1015 | gc->GetTextExtent(label, &w, &h, NULL, NULL); | |
1016 | gc->DrawText(label, -w/2, -BASE2-h-4); | |
1017 | switch( i ) | |
1018 | { | |
1019 | case 0 : | |
1020 | gc->StrokePath(path); | |
1021 | break; | |
1022 | case 1 : | |
1023 | gc->FillPath(path); | |
1024 | break; | |
1025 | case 2 : | |
1026 | gc->DrawPath(path); | |
1027 | break; | |
1028 | } | |
1029 | gc->Translate(2*BASE, 0); | |
1030 | } | |
4ee4c7b9 | 1031 | |
7a5c82b1 SC |
1032 | gc->PopState(); // restore saved state |
1033 | gc->PushState(); // save it again | |
1034 | gc->Translate(60, 200); // offset to the lower part of the window | |
4ee4c7b9 | 1035 | |
7a5c82b1 SC |
1036 | gc->DrawText("Scale", 0, -BASE2); |
1037 | gc->Translate(0, 20); | |
1038 | ||
1039 | gc->SetBrush(wxBrush(wxColour(178, 34, 34, 128)));// 128 == half transparent | |
1040 | for( int i = 0 ; i < 8 ; ++i ) | |
1041 | { | |
1042 | gc->Scale(1.08, 1.08); // increase scale by 8% | |
4ee4c7b9 | 1043 | gc->Translate(5,5); |
7a5c82b1 SC |
1044 | gc->DrawPath(path); |
1045 | } | |
1046 | ||
1047 | gc->PopState(); // restore saved state | |
1048 | gc->PushState(); // save it again | |
4ee4c7b9 VZ |
1049 | gc->Translate(400, 200); |
1050 | ||
7a5c82b1 SC |
1051 | gc->DrawText("Rotate", 0, -BASE2); |
1052 | ||
1053 | // Move the origin over to the next location | |
1054 | gc->Translate(0, 75); | |
1055 | ||
1056 | // draw our path again, rotating it about the central point, | |
1057 | // and changing colors as we go | |
1058 | for ( int angle = 0 ; angle < 360 ; angle += 30 ) | |
1059 | { | |
4ee4c7b9 | 1060 | gc->PushState(); // save this new current state so we can |
7a5c82b1 SC |
1061 | // pop back to it at the end of the loop |
1062 | wxImage::RGBValue val = wxImage::HSVtoRGB(wxImage::HSVValue(float(angle)/360, 1, 1)); | |
1063 | gc->SetBrush(wxBrush(wxColour(val.red, val.green, val.blue, 64))); | |
1064 | gc->SetPen(wxPen(wxColour(val.red, val.green, val.blue, 128))); | |
4ee4c7b9 | 1065 | |
7a5c82b1 SC |
1066 | // use translate to artfully reposition each drawn path |
1067 | gc->Translate(1.5 * BASE2 * cos(DegToRad(angle)), | |
1068 | 1.5 * BASE2 * sin(DegToRad(angle))); | |
4ee4c7b9 | 1069 | |
7a5c82b1 SC |
1070 | // use Rotate to rotate the path |
1071 | gc->Rotate(DegToRad(angle)); | |
1072 | ||
1073 | // now draw it | |
1074 | gc->DrawPath(path); | |
1075 | gc->PopState(); | |
1076 | } | |
1077 | gc->PopState(); | |
ce6b1014 VZ |
1078 | |
1079 | gc->PushState(); | |
1080 | gc->Translate(60, 400); | |
1081 | gc->DrawText("Scaled smiley inside a square", 0, 0); | |
1082 | gc->DrawRectangle(BASE2, BASE2, 100, 100); | |
1083 | gc->DrawBitmap(m_smile_bmp, BASE2, BASE2, 100, 100); | |
1084 | gc->PopState(); | |
7a5c82b1 | 1085 | } |
ce6b1014 | 1086 | #endif // wxUSE_GRAPHICS_CONTEXT |
7a5c82b1 | 1087 | |
f6bcfd97 BP |
1088 | void MyCanvas::DrawCircles(wxDC& dc) |
1089 | { | |
1090 | int x = 100, | |
1091 | y = 100, | |
1092 | r = 20; | |
1093 | ||
d9d2dcd8 RR |
1094 | dc.SetPen( *wxRED_PEN ); |
1095 | dc.SetBrush( *wxGREEN_BRUSH ); | |
1096 | ||
9a83f860 | 1097 | dc.DrawText(wxT("Some circles"), 0, y); |
d9d2dcd8 RR |
1098 | dc.DrawCircle(x, y, r); |
1099 | dc.DrawCircle(x + 2*r, y, r); | |
1100 | dc.DrawCircle(x + 4*r, y, r); | |
1101 | ||
1102 | y += 2*r; | |
9a83f860 | 1103 | dc.DrawText(wxT("And ellipses"), 0, y); |
d9d2dcd8 RR |
1104 | dc.DrawEllipse(x - r, y, 2*r, r); |
1105 | dc.DrawEllipse(x + r, y, 2*r, r); | |
1106 | dc.DrawEllipse(x + 3*r, y, 2*r, r); | |
1107 | ||
1108 | y += 2*r; | |
9a83f860 | 1109 | dc.DrawText(wxT("And arcs"), 0, y); |
d9d2dcd8 RR |
1110 | dc.DrawArc(x - r, y, x + r, y, x, y); |
1111 | dc.DrawArc(x + 4*r, y, x + 2*r, y, x + 3*r, y); | |
1112 | dc.DrawArc(x + 5*r, y, x + 5*r, y, x + 6*r, y); | |
1113 | ||
1114 | y += 2*r; | |
1115 | dc.DrawEllipticArc(x - r, y, 2*r, r, 0, 90); | |
1116 | dc.DrawEllipticArc(x + r, y, 2*r, r, 90, 180); | |
1117 | dc.DrawEllipticArc(x + 3*r, y, 2*r, r, 180, 270); | |
1118 | dc.DrawEllipticArc(x + 5*r, y, 2*r, r, 270, 360); | |
e3b81044 | 1119 | |
d9d2dcd8 | 1120 | // same as above, just transparent brush |
e3b81044 | 1121 | |
d9d2dcd8 RR |
1122 | dc.SetPen( *wxRED_PEN ); |
1123 | dc.SetBrush( *wxTRANSPARENT_BRUSH ); | |
1124 | ||
1125 | y += 2*r; | |
9a83f860 | 1126 | dc.DrawText(wxT("Some circles"), 0, y); |
f6bcfd97 BP |
1127 | dc.DrawCircle(x, y, r); |
1128 | dc.DrawCircle(x + 2*r, y, r); | |
1129 | dc.DrawCircle(x + 4*r, y, r); | |
1130 | ||
1131 | y += 2*r; | |
9a83f860 | 1132 | dc.DrawText(wxT("And ellipses"), 0, y); |
f6bcfd97 BP |
1133 | dc.DrawEllipse(x - r, y, 2*r, r); |
1134 | dc.DrawEllipse(x + r, y, 2*r, r); | |
1135 | dc.DrawEllipse(x + 3*r, y, 2*r, r); | |
1136 | ||
1137 | y += 2*r; | |
9a83f860 | 1138 | dc.DrawText(wxT("And arcs"), 0, y); |
f6bcfd97 BP |
1139 | dc.DrawArc(x - r, y, x + r, y, x, y); |
1140 | dc.DrawArc(x + 4*r, y, x + 2*r, y, x + 3*r, y); | |
1141 | dc.DrawArc(x + 5*r, y, x + 5*r, y, x + 6*r, y); | |
1142 | ||
1143 | y += 2*r; | |
1144 | dc.DrawEllipticArc(x - r, y, 2*r, r, 0, 90); | |
1145 | dc.DrawEllipticArc(x + r, y, 2*r, r, 90, 180); | |
1146 | dc.DrawEllipticArc(x + 3*r, y, 2*r, r, 180, 270); | |
1147 | dc.DrawEllipticArc(x + 5*r, y, 2*r, r, 270, 360); | |
e3b81044 | 1148 | |
f6bcfd97 BP |
1149 | } |
1150 | ||
b11729f1 WS |
1151 | void MyCanvas::DrawSplines(wxDC& dc) |
1152 | { | |
1153 | #if wxUSE_SPLINES | |
9a83f860 | 1154 | dc.DrawText(wxT("Some splines"), 10, 5); |
b11729f1 WS |
1155 | |
1156 | // values are hardcoded rather than randomly generated | |
1157 | // so the output can be compared between native | |
1158 | // implementations on platforms with different random | |
1159 | // generators | |
1160 | ||
1161 | const int R = 300; | |
1162 | const wxPoint center( R + 20, R + 20 ); | |
1163 | const int angles[7] = { 0, 10, 33, 77, 13, 145, 90 }; | |
1164 | const int radii[5] = { 100 , 59, 85, 33, 90 }; | |
1165 | const int n = 200; | |
1166 | wxPoint pts[n]; | |
1167 | ||
1168 | // background spline calculation | |
1169 | unsigned int radius_pos = 0; | |
1170 | unsigned int angle_pos = 0; | |
1171 | int angle = 0; | |
1172 | for ( int i = 0; i < n; i++ ) | |
1173 | { | |
1174 | angle += angles[ angle_pos ]; | |
1175 | int r = R * radii[ radius_pos ] / 100; | |
1176 | pts[ i ].x = center.x + (wxCoord)( r * cos( M_PI * angle / 180.0) ); | |
1177 | pts[ i ].y = center.y + (wxCoord)( r * sin( M_PI * angle / 180.0) ); | |
1178 | ||
1179 | angle_pos++; | |
1180 | if ( angle_pos >= WXSIZEOF(angles) ) angle_pos = 0; | |
1181 | ||
1182 | radius_pos++; | |
1183 | if ( radius_pos >= WXSIZEOF(radii) ) radius_pos = 0; | |
1184 | } | |
1185 | ||
1186 | // background spline drawing | |
1187 | dc.SetPen(*wxRED_PEN); | |
1188 | dc.DrawSpline(WXSIZEOF(pts), pts); | |
1189 | ||
1190 | // less detailed spline calculation | |
1191 | wxPoint letters[4][5]; | |
1192 | // w | |
1193 | letters[0][0] = wxPoint( 0,1); // O O | |
1194 | letters[0][1] = wxPoint( 1,3); // * * | |
1195 | letters[0][2] = wxPoint( 2,2); // * O * | |
1196 | letters[0][3] = wxPoint( 3,3); // * * * * | |
1197 | letters[0][4] = wxPoint( 4,1); // O O | |
1198 | // x1 | |
1199 | letters[1][0] = wxPoint( 5,1); // O*O | |
1200 | letters[1][1] = wxPoint( 6,1); // * | |
1201 | letters[1][2] = wxPoint( 7,2); // O | |
1202 | letters[1][3] = wxPoint( 8,3); // * | |
1203 | letters[1][4] = wxPoint( 9,3); // O*O | |
1204 | // x2 | |
1205 | letters[2][0] = wxPoint( 5,3); // O*O | |
1206 | letters[2][1] = wxPoint( 6,3); // * | |
1207 | letters[2][2] = wxPoint( 7,2); // O | |
1208 | letters[2][3] = wxPoint( 8,1); // * | |
1209 | letters[2][4] = wxPoint( 9,1); // O*O | |
1210 | // W | |
1211 | letters[3][0] = wxPoint(10,0); // O O | |
1212 | letters[3][1] = wxPoint(11,3); // * * | |
1213 | letters[3][2] = wxPoint(12,1); // * O * | |
1214 | letters[3][3] = wxPoint(13,3); // * * * * | |
1215 | letters[3][4] = wxPoint(14,0); // O O | |
1216 | ||
1217 | const int dx = 2 * R / letters[3][4].x; | |
1218 | const int h[4] = { -R/2, 0, R/4, R/2 }; | |
1219 | ||
1220 | for ( int m = 0; m < 4; m++ ) | |
1221 | { | |
1222 | for ( int n = 0; n < 5; n++ ) | |
1223 | { | |
1224 | letters[m][n].x = center.x - R + letters[m][n].x * dx; | |
1225 | letters[m][n].y = center.y + h[ letters[m][n].y ]; | |
1226 | } | |
1227 | ||
de914436 | 1228 | dc.SetPen( wxPen( *wxBLUE, 1, wxDOT) ); |
b11729f1 | 1229 | dc.DrawLines(5, letters[m]); |
de914436 | 1230 | dc.SetPen( wxPen( *wxBLACK, 4) ); |
b11729f1 WS |
1231 | dc.DrawSpline(5, letters[m]); |
1232 | } | |
1233 | ||
1234 | #else | |
9a83f860 | 1235 | dc.DrawText(wxT("Splines not supported."), 10, 5); |
b11729f1 WS |
1236 | #endif |
1237 | } | |
1238 | ||
213ad8e7 VZ |
1239 | void MyCanvas::DrawGradients(wxDC& dc) |
1240 | { | |
2c8f21f8 VZ |
1241 | static const int TEXT_HEIGHT = 15; |
1242 | ||
213ad8e7 | 1243 | // LHS: linear |
2c8f21f8 | 1244 | wxRect r(10, 10, 50, 50); |
9a83f860 | 1245 | dc.DrawText(wxT("wxRIGHT"), r.x, r.y); |
2c8f21f8 | 1246 | r.Offset(0, TEXT_HEIGHT); |
213ad8e7 VZ |
1247 | dc.GradientFillLinear(r, *wxWHITE, *wxBLUE, wxRIGHT); |
1248 | ||
2c8f21f8 | 1249 | r.Offset(0, r.height + 10); |
9a83f860 | 1250 | dc.DrawText(wxT("wxLEFT"), r.x, r.y); |
2c8f21f8 | 1251 | r.Offset(0, TEXT_HEIGHT); |
213ad8e7 VZ |
1252 | dc.GradientFillLinear(r, *wxWHITE, *wxBLUE, wxLEFT); |
1253 | ||
2c8f21f8 | 1254 | r.Offset(0, r.height + 10); |
9a83f860 | 1255 | dc.DrawText(wxT("wxDOWN"), r.x, r.y); |
2c8f21f8 | 1256 | r.Offset(0, TEXT_HEIGHT); |
213ad8e7 VZ |
1257 | dc.GradientFillLinear(r, *wxWHITE, *wxBLUE, wxDOWN); |
1258 | ||
2c8f21f8 | 1259 | r.Offset(0, r.height + 10); |
9a83f860 | 1260 | dc.DrawText(wxT("wxUP"), r.x, r.y); |
2c8f21f8 | 1261 | r.Offset(0, TEXT_HEIGHT); |
213ad8e7 VZ |
1262 | dc.GradientFillLinear(r, *wxWHITE, *wxBLUE, wxUP); |
1263 | ||
4ee4c7b9 | 1264 | wxRect gfr = wxRect(r); |
213ad8e7 VZ |
1265 | |
1266 | // RHS: concentric | |
2c8f21f8 | 1267 | r = wxRect(200, 10, 50, 50); |
9a83f860 | 1268 | dc.DrawText(wxT("Blue inside"), r.x, r.y); |
2c8f21f8 | 1269 | r.Offset(0, TEXT_HEIGHT); |
213ad8e7 VZ |
1270 | dc.GradientFillConcentric(r, *wxBLUE, *wxWHITE); |
1271 | ||
2c8f21f8 | 1272 | r.Offset(0, r.height + 10); |
9a83f860 | 1273 | dc.DrawText(wxT("White inside"), r.x, r.y); |
2c8f21f8 | 1274 | r.Offset(0, TEXT_HEIGHT); |
213ad8e7 VZ |
1275 | dc.GradientFillConcentric(r, *wxWHITE, *wxBLUE); |
1276 | ||
2c8f21f8 | 1277 | r.Offset(0, r.height + 10); |
9a83f860 | 1278 | dc.DrawText(wxT("Blue in top left corner"), r.x, r.y); |
2c8f21f8 | 1279 | r.Offset(0, TEXT_HEIGHT); |
213ad8e7 VZ |
1280 | dc.GradientFillConcentric(r, *wxBLUE, *wxWHITE, wxPoint(0, 0)); |
1281 | ||
2c8f21f8 | 1282 | r.Offset(0, r.height + 10); |
9a83f860 | 1283 | dc.DrawText(wxT("Blue in bottom right corner"), r.x, r.y); |
2c8f21f8 VZ |
1284 | r.Offset(0, TEXT_HEIGHT); |
1285 | dc.GradientFillConcentric(r, *wxBLUE, *wxWHITE, wxPoint(r.width, r.height)); | |
5f77ee3b VZ |
1286 | |
1287 | // check that the area filled by the gradient is exactly the interior of | |
1288 | // the rectangle | |
1289 | r.x = 350; | |
1290 | r.y = 30; | |
1291 | dc.DrawText("The interior should be filled but", r.x, r.y); | |
1292 | r.y += 15; | |
1293 | dc.DrawText(" the red border should remain visible:", r.x, r.y); | |
1294 | r.y += 15; | |
1295 | ||
1296 | r.width = | |
1297 | r.height = 50; | |
1298 | wxRect r2 = r; | |
1299 | r2.x += 60; | |
1300 | wxRect r3 = r; | |
1301 | r3.y += 60; | |
1302 | wxRect r4 = r2; | |
1303 | r4.y += 60; | |
ea92bb67 | 1304 | dc.SetPen(*wxRED_PEN); |
5f77ee3b VZ |
1305 | dc.DrawRectangle(r); |
1306 | r.Deflate(1); | |
ea92bb67 | 1307 | dc.GradientFillLinear(r, *wxGREEN, *wxBLACK, wxNORTH); |
5f77ee3b VZ |
1308 | dc.DrawRectangle(r2); |
1309 | r2.Deflate(1); | |
ea92bb67 | 1310 | dc.GradientFillLinear(r2, *wxBLACK, *wxGREEN, wxSOUTH); |
5f77ee3b VZ |
1311 | dc.DrawRectangle(r3); |
1312 | r3.Deflate(1); | |
ea92bb67 | 1313 | dc.GradientFillLinear(r3, *wxGREEN, *wxBLACK, wxEAST); |
5f77ee3b VZ |
1314 | dc.DrawRectangle(r4); |
1315 | r4.Deflate(1); | |
ea92bb67 | 1316 | dc.GradientFillLinear(r4, *wxBLACK, *wxGREEN, wxWEST); |
4ee4c7b9 VZ |
1317 | |
1318 | #if wxUSE_GRAPHICS_CONTEXT | |
1319 | if (m_useContext) | |
1320 | { | |
1321 | wxGCDC &gdc = (wxGCDC&)dc; | |
1322 | wxGraphicsContext *gc = gdc.GetGraphicsContext(); | |
1323 | wxGraphicsPath pth; | |
1324 | wxGraphicsGradientStops stops; | |
1325 | ||
1326 | gfr.Offset(0, gfr.height + 10); | |
1327 | dc.DrawText(wxT("Linear Gradient with Stops"), gfr.x, gfr.y); | |
1328 | gfr.Offset(0, TEXT_HEIGHT); | |
1329 | ||
ea92bb67 | 1330 | stops = wxGraphicsGradientStops(*wxRED, *wxBLUE); |
4ee4c7b9 | 1331 | stops.Add(wxColour(255,255,0), 0.33f); |
ea92bb67 | 1332 | stops.Add(*wxGREEN, 0.67f); |
4ee4c7b9 VZ |
1333 | |
1334 | gc->SetBrush(gc->CreateLinearGradientBrush(gfr.x, gfr.y, | |
1335 | gfr.x + gfr.width, gfr.y + gfr.height, | |
1336 | stops)); | |
1337 | pth = gc->CreatePath(); | |
1338 | pth.MoveToPoint(gfr.x,gfr.y); | |
1339 | pth.AddLineToPoint(gfr.x + gfr.width,gfr.y); | |
1340 | pth.AddLineToPoint(gfr.x + gfr.width,gfr.y+gfr.height); | |
1341 | pth.AddLineToPoint(gfr.x,gfr.y+gfr.height); | |
1342 | pth.CloseSubpath(); | |
1343 | gc->FillPath(pth); | |
1344 | ||
1345 | gfr.Offset(0, gfr.height + 10); | |
1346 | dc.DrawText(wxT("Radial Gradient with Stops"), gfr.x, gfr.y); | |
1347 | gfr.Offset(0, TEXT_HEIGHT); | |
1348 | ||
1349 | gc->SetBrush(gc->CreateRadialGradientBrush(gfr.x + gfr.width / 2, | |
1350 | gfr.y + gfr.height / 2, | |
1351 | gfr.x + gfr.width / 2, | |
1352 | gfr.y + gfr.height / 2, | |
1353 | gfr.width / 2, | |
1354 | stops)); | |
1355 | pth = gc->CreatePath(); | |
1356 | pth.MoveToPoint(gfr.x,gfr.y); | |
1357 | pth.AddLineToPoint(gfr.x + gfr.width,gfr.y); | |
1358 | pth.AddLineToPoint(gfr.x + gfr.width,gfr.y+gfr.height); | |
1359 | pth.AddLineToPoint(gfr.x,gfr.y+gfr.height); | |
1360 | pth.CloseSubpath(); | |
1361 | gc->FillPath(pth); | |
1362 | ||
1363 | gfr.Offset(0, gfr.height + 10); | |
1364 | dc.DrawText(wxT("Linear Gradient with Stops and Gaps"), gfr.x, gfr.y); | |
1365 | gfr.Offset(0, TEXT_HEIGHT); | |
1366 | ||
ea92bb67 | 1367 | stops = wxGraphicsGradientStops(*wxRED, *wxBLUE); |
4ee4c7b9 VZ |
1368 | stops.Add(wxColour(255,255,0), 0.33f); |
1369 | stops.Add(wxTransparentColour, 0.33f); | |
1370 | stops.Add(wxTransparentColour, 0.67f); | |
ea92bb67 | 1371 | stops.Add(*wxGREEN, 0.67f); |
4ee4c7b9 VZ |
1372 | |
1373 | gc->SetBrush(gc->CreateLinearGradientBrush(gfr.x, gfr.y + gfr.height, | |
1374 | gfr.x + gfr.width, gfr.y, | |
1375 | stops)); | |
1376 | pth = gc->CreatePath(); | |
1377 | pth.MoveToPoint(gfr.x,gfr.y); | |
1378 | pth.AddLineToPoint(gfr.x + gfr.width,gfr.y); | |
1379 | pth.AddLineToPoint(gfr.x + gfr.width,gfr.y+gfr.height); | |
1380 | pth.AddLineToPoint(gfr.x,gfr.y+gfr.height); | |
1381 | pth.CloseSubpath(); | |
1382 | gc->FillPath(pth); | |
1383 | ||
1384 | gfr.Offset(0, gfr.height + 10); | |
1385 | dc.DrawText(wxT("Radial Gradient with Stops and Gaps"), gfr.x, gfr.y); | |
1386 | gfr.Offset(0, TEXT_HEIGHT); | |
1387 | ||
1388 | gc->SetBrush(gc->CreateRadialGradientBrush(gfr.x + gfr.width / 2, | |
1389 | gfr.y + gfr.height / 2, | |
1390 | gfr.x + gfr.width / 2, | |
1391 | gfr.y + gfr.height / 2, | |
1392 | gfr.width / 2, | |
1393 | stops)); | |
1394 | pth = gc->CreatePath(); | |
1395 | pth.MoveToPoint(gfr.x,gfr.y); | |
1396 | pth.AddLineToPoint(gfr.x + gfr.width,gfr.y); | |
1397 | pth.AddLineToPoint(gfr.x + gfr.width,gfr.y+gfr.height); | |
1398 | pth.AddLineToPoint(gfr.x,gfr.y+gfr.height); | |
1399 | pth.CloseSubpath(); | |
1400 | gc->FillPath(pth); | |
1401 | ||
1402 | gfr.Offset(0, gfr.height + 10); | |
1403 | dc.DrawText(wxT("Gradients with Stops and Transparency"), gfr.x, gfr.y); | |
1404 | gfr.Offset(0, TEXT_HEIGHT); | |
1405 | ||
ea92bb67 PC |
1406 | stops = wxGraphicsGradientStops(*wxRED, wxTransparentColour); |
1407 | stops.Add(*wxRED, 0.33f); | |
4ee4c7b9 VZ |
1408 | stops.Add(wxTransparentColour, 0.33f); |
1409 | stops.Add(wxTransparentColour, 0.67f); | |
ea92bb67 PC |
1410 | stops.Add(*wxBLUE, 0.67f); |
1411 | stops.Add(*wxBLUE, 1.0f); | |
4ee4c7b9 VZ |
1412 | |
1413 | pth = gc->CreatePath(); | |
1414 | pth.MoveToPoint(gfr.x,gfr.y); | |
1415 | pth.AddLineToPoint(gfr.x + gfr.width,gfr.y); | |
1416 | pth.AddLineToPoint(gfr.x + gfr.width,gfr.y+gfr.height); | |
1417 | pth.AddLineToPoint(gfr.x,gfr.y+gfr.height); | |
1418 | pth.CloseSubpath(); | |
1419 | ||
1420 | gc->SetBrush(gc->CreateRadialGradientBrush(gfr.x + gfr.width / 2, | |
1421 | gfr.y + gfr.height / 2, | |
1422 | gfr.x + gfr.width / 2, | |
1423 | gfr.y + gfr.height / 2, | |
1424 | gfr.width / 2, | |
1425 | stops)); | |
1426 | gc->FillPath(pth); | |
1427 | ||
1428 | stops = wxGraphicsGradientStops(wxColour(255,0,0, 128), wxColour(0,0,255, 128)); | |
1429 | stops.Add(wxColour(255,255,0,128), 0.33f); | |
1430 | stops.Add(wxColour(0,255,0,128), 0.67f); | |
1431 | ||
1432 | gc->SetBrush(gc->CreateLinearGradientBrush(gfr.x, gfr.y, | |
1433 | gfr.x + gfr.width, gfr.y, | |
1434 | stops)); | |
1435 | gc->FillPath(pth); | |
1436 | } | |
1437 | #endif // wxUSE_GRAPHICS_CONTEXT | |
213ad8e7 VZ |
1438 | } |
1439 | ||
bc3cedfa RR |
1440 | void MyCanvas::DrawRegions(wxDC& dc) |
1441 | { | |
9a83f860 VZ |
1442 | dc.DrawText(wxT("You should see a red rect partly covered by a cyan one ") |
1443 | wxT("on the left"), 10, 5); | |
1444 | dc.DrawText(wxT("and 5 smileys from which 4 are partially clipped on the right"), | |
8e0e4b1b | 1445 | 10, 5 + dc.GetCharHeight()); |
9a83f860 VZ |
1446 | dc.DrawText(wxT("The second copy should be identical but right part of it ") |
1447 | wxT("should be offset by 10 pixels."), | |
4cbcae16 | 1448 | 10, 5 + 2*dc.GetCharHeight()); |
8e0e4b1b | 1449 | |
9da8feef WS |
1450 | DrawRegionsHelper(dc, 10, true); |
1451 | DrawRegionsHelper(dc, 350, false); | |
8e0e4b1b | 1452 | } |
c4218a74 | 1453 | |
4cbcae16 | 1454 | void MyCanvas::DrawRegionsHelper(wxDC& dc, wxCoord x, bool firstTime) |
8e0e4b1b | 1455 | { |
4cbcae16 VZ |
1456 | wxCoord y = 100; |
1457 | ||
8e0e4b1b | 1458 | dc.DestroyClippingRegion(); |
bc3cedfa RR |
1459 | dc.SetBrush( *wxWHITE_BRUSH ); |
1460 | dc.SetPen( *wxTRANSPARENT_PEN ); | |
4cbcae16 | 1461 | dc.DrawRectangle( x, y, 310, 310 ); |
c4218a74 | 1462 | |
4cbcae16 | 1463 | dc.SetClippingRegion( x + 10, y + 10, 100, 270 ); |
c4218a74 | 1464 | |
bc3cedfa | 1465 | dc.SetBrush( *wxRED_BRUSH ); |
4cbcae16 | 1466 | dc.DrawRectangle( x, y, 310, 310 ); |
c4218a74 | 1467 | |
4cbcae16 | 1468 | dc.SetClippingRegion( x + 10, y + 10, 100, 100 ); |
993f97ee | 1469 | |
993f97ee | 1470 | dc.SetBrush( *wxCYAN_BRUSH ); |
4cbcae16 VZ |
1471 | dc.DrawRectangle( x, y, 310, 310 ); |
1472 | ||
1473 | dc.DestroyClippingRegion(); | |
1474 | ||
1475 | wxRegion region(x + 110, y + 20, 100, 270); | |
8a28bf76 | 1476 | #if !defined(__WXMOTIF__) |
4cbcae16 VZ |
1477 | if ( !firstTime ) |
1478 | region.Offset(10, 10); | |
4cae9a20 | 1479 | #endif |
795b5a8b | 1480 | dc.SetDeviceClippingRegion(region); |
c4218a74 | 1481 | |
bc3cedfa | 1482 | dc.SetBrush( *wxGREY_BRUSH ); |
4cbcae16 | 1483 | dc.DrawRectangle( x, y, 310, 310 ); |
c4218a74 | 1484 | |
a1b806b9 | 1485 | if (m_smile_bmp.IsOk()) |
5d25c050 | 1486 | { |
9da8feef WS |
1487 | dc.DrawBitmap( m_smile_bmp, x + 150, y + 150, true ); |
1488 | dc.DrawBitmap( m_smile_bmp, x + 130, y + 10, true ); | |
1489 | dc.DrawBitmap( m_smile_bmp, x + 130, y + 280, true ); | |
1490 | dc.DrawBitmap( m_smile_bmp, x + 100, y + 70, true ); | |
1491 | dc.DrawBitmap( m_smile_bmp, x + 200, y + 70, true ); | |
5d25c050 | 1492 | } |
bc3cedfa RR |
1493 | } |
1494 | ||
568708e2 VZ |
1495 | void MyCanvas::OnPaint(wxPaintEvent &WXUNUSED(event)) |
1496 | { | |
f31a4cb2 | 1497 | wxPaintDC pdc(this); |
8c6b0819 VZ |
1498 | Draw(pdc); |
1499 | } | |
f31a4cb2 | 1500 | |
5707e433 | 1501 | void MyCanvas::Draw(wxDC& pdc) |
8c6b0819 | 1502 | { |
f31a4cb2 | 1503 | #if wxUSE_GRAPHICS_CONTEXT |
8a021e00 | 1504 | wxGCDC gdc; |
5707e433 VZ |
1505 | wxGraphicsRenderer* const renderer = wxGraphicsRenderer:: |
1506 | #if TEST_CAIRO_EVERYWHERE | |
1507 | GetCairoRenderer() | |
8a021e00 | 1508 | #else |
5707e433 | 1509 | GetDefaultRenderer() |
8a021e00 | 1510 | #endif |
5707e433 VZ |
1511 | ; |
1512 | ||
1513 | wxGraphicsContext* context; | |
1514 | if ( wxPaintDC *paintdc = wxDynamicCast(&pdc, wxPaintDC) ) | |
1515 | { | |
1516 | context = renderer->CreateContext(*paintdc); | |
1517 | } | |
1518 | else if ( wxMemoryDC *memdc = wxDynamicCast(&pdc, wxMemoryDC) ) | |
1519 | { | |
1520 | context = renderer->CreateContext(*memdc); | |
1521 | } | |
1522 | #if wxUSE_METAFILE && defined(wxMETAFILE_IS_ENH) | |
1523 | else if ( wxMetafileDC *metadc = wxDynamicCast(&pdc, wxMetafileDC) ) | |
1524 | { | |
1525 | context = renderer->CreateContext(*metadc); | |
1526 | } | |
1527 | #endif | |
1528 | else | |
1529 | { | |
1530 | wxFAIL_MSG( "Unknown wxDC kind" ); | |
1531 | return; | |
1532 | } | |
1533 | ||
1534 | gdc.SetGraphicsContext(context); | |
1535 | ||
f31a4cb2 SC |
1536 | wxDC &dc = m_useContext ? (wxDC&) gdc : (wxDC&) pdc ; |
1537 | #else | |
1538 | wxDC &dc = pdc ; | |
1539 | #endif | |
1540 | ||
568708e2 | 1541 | PrepareDC(dc); |
c4218a74 | 1542 | |
568708e2 VZ |
1543 | m_owner->PrepareDC(dc); |
1544 | ||
1545 | dc.SetBackgroundMode( m_owner->m_backgroundMode ); | |
a1b806b9 | 1546 | if ( m_owner->m_backgroundBrush.IsOk() ) |
568708e2 | 1547 | dc.SetBackground( m_owner->m_backgroundBrush ); |
a1b806b9 | 1548 | if ( m_owner->m_colourForeground.IsOk() ) |
568708e2 | 1549 | dc.SetTextForeground( m_owner->m_colourForeground ); |
a1b806b9 | 1550 | if ( m_owner->m_colourBackground.IsOk() ) |
568708e2 | 1551 | dc.SetTextBackground( m_owner->m_colourBackground ); |
4786aabd | 1552 | |
1edc9f45 | 1553 | if ( m_owner->m_textureBackground) { |
a1b806b9 | 1554 | if ( ! m_owner->m_backgroundBrush.IsOk() ) { |
de914436 | 1555 | dc.SetBackground(wxBrush(wxColour(0, 128, 0))); |
1edc9f45 | 1556 | } |
047473c9 RD |
1557 | } |
1558 | ||
204dd9a7 VZ |
1559 | if ( m_clip ) |
1560 | dc.SetClippingRegion(100, 100, 100, 100); | |
1561 | ||
e1208c31 | 1562 | dc.Clear(); |
1edc9f45 | 1563 | |
204dd9a7 VZ |
1564 | if ( m_owner->m_textureBackground ) |
1565 | { | |
1edc9f45 | 1566 | dc.SetPen(*wxMEDIUM_GREY_PEN); |
204dd9a7 | 1567 | for ( int i = 0; i < 200; i++ ) |
1edc9f45 RD |
1568 | dc.DrawLine(0, i*10, i*10, 0); |
1569 | } | |
1570 | ||
568708e2 VZ |
1571 | switch ( m_show ) |
1572 | { | |
f65e33a3 | 1573 | case File_ShowDefault: |
568708e2 VZ |
1574 | DrawDefault(dc); |
1575 | break; | |
1e7fd311 | 1576 | |
f65e33a3 | 1577 | case File_ShowCircles: |
f6bcfd97 BP |
1578 | DrawCircles(dc); |
1579 | break; | |
1580 | ||
f65e33a3 | 1581 | case File_ShowSplines: |
b11729f1 WS |
1582 | DrawSplines(dc); |
1583 | break; | |
1584 | ||
f65e33a3 | 1585 | case File_ShowRegions: |
bc3cedfa RR |
1586 | DrawRegions(dc); |
1587 | break; | |
1588 | ||
f65e33a3 | 1589 | case File_ShowText: |
568708e2 VZ |
1590 | DrawText(dc); |
1591 | break; | |
1e7fd311 | 1592 | |
f65e33a3 | 1593 | case File_ShowLines: |
568708e2 | 1594 | DrawTestLines( 0, 100, 0, dc ); |
f6bcfd97 BP |
1595 | DrawTestLines( 0, 320, 1, dc ); |
1596 | DrawTestLines( 0, 540, 2, dc ); | |
1597 | DrawTestLines( 0, 760, 6, dc ); | |
568708e2 | 1598 | break; |
1e7fd311 | 1599 | |
f65e33a3 | 1600 | case File_ShowBrushes: |
6386110d VZ |
1601 | DrawTestBrushes(dc); |
1602 | break; | |
1603 | ||
f65e33a3 | 1604 | case File_ShowPolygons: |
6386110d | 1605 | DrawTestPoly(dc); |
568708e2 | 1606 | break; |
1e7fd311 | 1607 | |
f65e33a3 | 1608 | case File_ShowMask: |
e3b81044 VZ |
1609 | DrawImages(dc, Draw_Normal); |
1610 | break; | |
1611 | ||
f65e33a3 | 1612 | case File_ShowMaskStretch: |
e3b81044 | 1613 | DrawImages(dc, Draw_Stretch); |
568708e2 | 1614 | break; |
81278df2 | 1615 | |
f65e33a3 | 1616 | case File_ShowOps: |
81278df2 VZ |
1617 | DrawWithLogicalOps(dc); |
1618 | break; | |
e3b81044 | 1619 | |
f31a4cb2 | 1620 | #if wxUSE_GRAPHICS_CONTEXT |
f65e33a3 | 1621 | case File_ShowAlpha: |
f31a4cb2 SC |
1622 | DrawAlpha(dc); |
1623 | break; | |
f65e33a3 | 1624 | case File_ShowGraphics: |
7a5c82b1 SC |
1625 | DrawGraphics(gdc.GetGraphicsContext()); |
1626 | break; | |
f31a4cb2 | 1627 | #endif |
213ad8e7 | 1628 | |
f65e33a3 | 1629 | case File_ShowGradients: |
213ad8e7 VZ |
1630 | DrawGradients(dc); |
1631 | break; | |
e95c145c WS |
1632 | |
1633 | default: | |
1634 | break; | |
568708e2 | 1635 | } |
b62c3631 RR |
1636 | } |
1637 | ||
bf0c00c6 RR |
1638 | void MyCanvas::OnMouseMove(wxMouseEvent &event) |
1639 | { | |
960a83cc | 1640 | #if wxUSE_STATUSBAR |
8a021e00 SC |
1641 | { |
1642 | wxClientDC dc(this); | |
1643 | PrepareDC(dc); | |
1644 | m_owner->PrepareDC(dc); | |
1645 | ||
1646 | wxPoint pos = event.GetPosition(); | |
1647 | long x = dc.DeviceToLogicalX( pos.x ); | |
1648 | long y = dc.DeviceToLogicalY( pos.y ); | |
1649 | wxString str; | |
1650 | str.Printf( wxT("Current mouse position: %d,%d"), (int)x, (int)y ); | |
1651 | m_owner->SetStatusText( str ); | |
1652 | } | |
4ee4c7b9 | 1653 | |
8a021e00 SC |
1654 | if ( m_rubberBand ) |
1655 | { | |
1656 | int x,y, xx, yy ; | |
1657 | event.GetPosition(&x,&y); | |
1658 | CalcUnscrolledPosition( x, y, &xx, &yy ); | |
1659 | m_currentpoint = wxPoint( xx , yy ) ; | |
1660 | wxRect newrect ( m_anchorpoint , m_currentpoint ) ; | |
1661 | ||
1662 | wxClientDC dc( this ) ; | |
1663 | PrepareDC( dc ) ; | |
1664 | ||
1665 | wxDCOverlay overlaydc( m_overlay, &dc ); | |
1666 | overlaydc.Clear(); | |
e630cd04 | 1667 | #ifdef __WXMAC__ |
8a021e00 SC |
1668 | dc.SetPen( *wxGREY_PEN ); |
1669 | dc.SetBrush( wxColour( 192,192,192,64 ) ); | |
1670 | #else | |
0856cb25 | 1671 | dc.SetPen( wxPen( *wxLIGHT_GREY, 2 ) ); |
8a021e00 SC |
1672 | dc.SetBrush( *wxTRANSPARENT_BRUSH ); |
1673 | #endif | |
1674 | dc.DrawRectangle( newrect ); | |
1675 | } | |
960a83cc WS |
1676 | #else |
1677 | wxUnusedVar(event); | |
1678 | #endif // wxUSE_STATUSBAR | |
bf0c00c6 RR |
1679 | } |
1680 | ||
8a021e00 SC |
1681 | void MyCanvas::OnMouseDown(wxMouseEvent &event) |
1682 | { | |
4ee4c7b9 VZ |
1683 | int x,y,xx,yy ; |
1684 | event.GetPosition(&x,&y); | |
8a021e00 SC |
1685 | CalcUnscrolledPosition( x, y, &xx, &yy ); |
1686 | m_anchorpoint = wxPoint( xx , yy ) ; | |
1687 | m_currentpoint = m_anchorpoint ; | |
1688 | m_rubberBand = true ; | |
1689 | CaptureMouse() ; | |
1690 | } | |
1691 | ||
1692 | void MyCanvas::OnMouseUp(wxMouseEvent &event) | |
1693 | { | |
1694 | if ( m_rubberBand ) | |
1695 | { | |
5f0d3411 | 1696 | ReleaseMouse(); |
8a021e00 SC |
1697 | { |
1698 | wxClientDC dc( this ); | |
1699 | PrepareDC( dc ); | |
1700 | wxDCOverlay overlaydc( m_overlay, &dc ); | |
1701 | overlaydc.Clear(); | |
1702 | } | |
1703 | m_overlay.Reset(); | |
1704 | m_rubberBand = false; | |
1705 | ||
8fa11bb2 | 1706 | wxPoint endpoint = CalcUnscrolledPosition(event.GetPosition()); |
8a021e00 | 1707 | |
8fa11bb2 VZ |
1708 | // Don't pop up the message box if nothing was actually selected. |
1709 | if ( endpoint != m_anchorpoint ) | |
1710 | { | |
1711 | wxLogMessage("Selected rectangle from (%d, %d) to (%d, %d)", | |
1712 | m_anchorpoint.x, m_anchorpoint.y, | |
1713 | endpoint.x, endpoint.y); | |
1714 | } | |
8a021e00 SC |
1715 | } |
1716 | } | |
1717 | ||
b62c3631 RR |
1718 | // ---------------------------------------------------------------------------- |
1719 | // MyFrame | |
1720 | // ---------------------------------------------------------------------------- | |
1721 | ||
be5a51fb | 1722 | // the event tables connect the wxWidgets events with the functions (event |
b62c3631 RR |
1723 | // handlers) which process them. It can be also done at run-time, but for the |
1724 | // simple menu events like this the static method is much simpler. | |
1725 | BEGIN_EVENT_TABLE(MyFrame, wxFrame) | |
568708e2 VZ |
1726 | EVT_MENU (File_Quit, MyFrame::OnQuit) |
1727 | EVT_MENU (File_About, MyFrame::OnAbout) | |
204dd9a7 | 1728 | EVT_MENU (File_Clip, MyFrame::OnClip) |
f31a4cb2 SC |
1729 | #if wxUSE_GRAPHICS_CONTEXT |
1730 | EVT_MENU (File_GraphicContext, MyFrame::OnGraphicContext) | |
1731 | #endif | |
8c6b0819 VZ |
1732 | EVT_MENU (File_Copy, MyFrame::OnCopy) |
1733 | EVT_MENU (File_Save, MyFrame::OnSave) | |
568708e2 VZ |
1734 | |
1735 | EVT_MENU_RANGE(MenuShow_First, MenuShow_Last, MyFrame::OnShow) | |
1736 | ||
b62c3631 RR |
1737 | EVT_MENU_RANGE(MenuOption_First, MenuOption_Last, MyFrame::OnOption) |
1738 | END_EVENT_TABLE() | |
1739 | ||
aba99005 RR |
1740 | // frame constructor |
1741 | MyFrame::MyFrame(const wxString& title, const wxPoint& pos, const wxSize& size) | |
9da8feef | 1742 | : wxFrame((wxFrame *)NULL, wxID_ANY, title, pos, size, |
c4218a74 | 1743 | wxDEFAULT_FRAME_STYLE | wxNO_FULL_REPAINT_ON_RESIZE) |
aba99005 RR |
1744 | { |
1745 | // set the frame icon | |
3cb332c1 | 1746 | SetIcon(wxICON(sample)); |
aba99005 RR |
1747 | |
1748 | wxMenu *menuFile = new wxMenu; | |
9a83f860 VZ |
1749 | menuFile->Append(File_ShowDefault, wxT("&Default screen\tF1")); |
1750 | menuFile->Append(File_ShowText, wxT("&Text screen\tF2")); | |
1751 | menuFile->Append(File_ShowLines, wxT("&Lines screen\tF3")); | |
1752 | menuFile->Append(File_ShowBrushes, wxT("&Brushes screen\tF4")); | |
1753 | menuFile->Append(File_ShowPolygons, wxT("&Polygons screen\tF5")); | |
1754 | menuFile->Append(File_ShowMask, wxT("&Mask screen\tF6")); | |
1755 | menuFile->Append(File_ShowMaskStretch, wxT("1/&2 scaled mask\tShift-F6")); | |
1756 | menuFile->Append(File_ShowOps, wxT("&Raster operations screen\tF7")); | |
1757 | menuFile->Append(File_ShowRegions, wxT("Re&gions screen\tF8")); | |
1758 | menuFile->Append(File_ShowCircles, wxT("&Circles screen\tF9")); | |
f31a4cb2 | 1759 | #if wxUSE_GRAPHICS_CONTEXT |
9a83f860 | 1760 | menuFile->Append(File_ShowAlpha, wxT("&Alpha screen\tF10")); |
f31a4cb2 | 1761 | #endif |
8c6b0819 | 1762 | menuFile->Append(File_ShowSplines, wxT("Spl&ines screen\tF11")); |
9a83f860 | 1763 | menuFile->Append(File_ShowGradients, wxT("&Gradients screen\tF12")); |
7a5c82b1 | 1764 | #if wxUSE_GRAPHICS_CONTEXT |
9a83f860 | 1765 | menuFile->Append(File_ShowGraphics, wxT("&Graphics screen")); |
7a5c82b1 | 1766 | #endif |
568708e2 | 1767 | menuFile->AppendSeparator(); |
9a83f860 | 1768 | menuFile->AppendCheckItem(File_Clip, wxT("&Clip\tCtrl-C"), wxT("Clip/unclip drawing")); |
f31a4cb2 | 1769 | #if wxUSE_GRAPHICS_CONTEXT |
9a83f860 | 1770 | menuFile->AppendCheckItem(File_GraphicContext, wxT("&Use GraphicContext\tCtrl-Y"), wxT("Use GraphicContext")); |
f31a4cb2 | 1771 | #endif |
204dd9a7 | 1772 | menuFile->AppendSeparator(); |
8c6b0819 VZ |
1773 | #if wxUSE_METAFILE && defined(wxMETAFILE_IS_ENH) |
1774 | menuFile->Append(File_Copy, wxT("Copy to clipboard")); | |
1775 | #endif | |
1776 | menuFile->Append(File_Save, wxT("&Save...\tCtrl-S"), wxT("Save drawing to file")); | |
1777 | menuFile->AppendSeparator(); | |
2d143b66 | 1778 | menuFile->Append(File_About, wxT("&About\tCtrl-A"), wxT("Show about dialog")); |
aba99005 | 1779 | menuFile->AppendSeparator(); |
9a83f860 | 1780 | menuFile->Append(File_Quit, wxT("E&xit\tAlt-X"), wxT("Quit this program")); |
0f0c61d0 | 1781 | |
aba99005 | 1782 | wxMenu *menuMapMode = new wxMenu; |
9a83f860 VZ |
1783 | menuMapMode->Append( MapMode_Text, wxT("&TEXT map mode") ); |
1784 | menuMapMode->Append( MapMode_Lometric, wxT("&LOMETRIC map mode") ); | |
1785 | menuMapMode->Append( MapMode_Twips, wxT("T&WIPS map mode") ); | |
1786 | menuMapMode->Append( MapMode_Points, wxT("&POINTS map mode") ); | |
1787 | menuMapMode->Append( MapMode_Metric, wxT("&METRIC map mode") ); | |
0f0c61d0 | 1788 | |
aba99005 | 1789 | wxMenu *menuUserScale = new wxMenu; |
9a83f860 VZ |
1790 | menuUserScale->Append( UserScale_StretchHoriz, wxT("Stretch &horizontally\tCtrl-H") ); |
1791 | menuUserScale->Append( UserScale_ShrinkHoriz, wxT("Shrin&k horizontally\tCtrl-G") ); | |
1792 | menuUserScale->Append( UserScale_StretchVertic, wxT("Stretch &vertically\tCtrl-V") ); | |
1793 | menuUserScale->Append( UserScale_ShrinkVertic, wxT("&Shrink vertically\tCtrl-W") ); | |
0f0c61d0 | 1794 | menuUserScale->AppendSeparator(); |
9a83f860 | 1795 | menuUserScale->Append( UserScale_Restore, wxT("&Restore to normal\tCtrl-0") ); |
0f0c61d0 | 1796 | |
aba99005 | 1797 | wxMenu *menuAxis = new wxMenu; |
9a83f860 VZ |
1798 | menuAxis->AppendCheckItem( AxisMirror_Horiz, wxT("Mirror horizontally\tCtrl-M") ); |
1799 | menuAxis->AppendCheckItem( AxisMirror_Vertic, wxT("Mirror vertically\tCtrl-N") ); | |
0f0c61d0 | 1800 | |
aba99005 | 1801 | wxMenu *menuLogical = new wxMenu; |
9a83f860 VZ |
1802 | menuLogical->Append( LogicalOrigin_MoveDown, wxT("Move &down\tCtrl-D") ); |
1803 | menuLogical->Append( LogicalOrigin_MoveUp, wxT("Move &up\tCtrl-U") ); | |
1804 | menuLogical->Append( LogicalOrigin_MoveLeft, wxT("Move &right\tCtrl-L") ); | |
1805 | menuLogical->Append( LogicalOrigin_MoveRight, wxT("Move &left\tCtrl-R") ); | |
fb576291 | 1806 | menuLogical->AppendSeparator(); |
9a83f860 VZ |
1807 | menuLogical->Append( LogicalOrigin_Set, wxT("Set to (&100, 100)\tShift-Ctrl-1") ); |
1808 | menuLogical->Append( LogicalOrigin_Restore, wxT("&Restore to normal\tShift-Ctrl-0") ); | |
aba99005 | 1809 | |
0f0c61d0 | 1810 | wxMenu *menuColour = new wxMenu; |
960a83cc | 1811 | #if wxUSE_COLOURDLG |
9a83f860 VZ |
1812 | menuColour->Append( Colour_TextForeground, wxT("Text &foreground...") ); |
1813 | menuColour->Append( Colour_TextBackground, wxT("Text &background...") ); | |
1814 | menuColour->Append( Colour_Background, wxT("Background &colour...") ); | |
960a83cc | 1815 | #endif // wxUSE_COLOURDLG |
9a83f860 VZ |
1816 | menuColour->AppendCheckItem( Colour_BackgroundMode, wxT("&Opaque/transparent\tCtrl-B") ); |
1817 | menuColour->AppendCheckItem( Colour_TextureBackgound, wxT("Draw textured back&ground\tCtrl-T") ); | |
0f0c61d0 | 1818 | |
aba99005 RR |
1819 | // now append the freshly created menu to the menu bar... |
1820 | wxMenuBar *menuBar = new wxMenuBar; | |
9a83f860 VZ |
1821 | menuBar->Append(menuFile, wxT("&File")); |
1822 | menuBar->Append(menuMapMode, wxT("&Mode")); | |
1823 | menuBar->Append(menuUserScale, wxT("&Scale")); | |
1824 | menuBar->Append(menuAxis, wxT("&Axis")); | |
1825 | menuBar->Append(menuLogical, wxT("&Origin")); | |
1826 | menuBar->Append(menuColour, wxT("&Colours")); | |
aba99005 RR |
1827 | |
1828 | // ... and attach this menu bar to the frame | |
1829 | SetMenuBar(menuBar); | |
1830 | ||
960a83cc | 1831 | #if wxUSE_STATUSBAR |
aba99005 | 1832 | CreateStatusBar(2); |
9a83f860 | 1833 | SetStatusText(wxT("Welcome to wxWidgets!")); |
960a83cc | 1834 | #endif // wxUSE_STATUSBAR |
0f0c61d0 | 1835 | |
aba99005 RR |
1836 | m_mapMode = wxMM_TEXT; |
1837 | m_xUserScale = 1.0; | |
1838 | m_yUserScale = 1.0; | |
1839 | m_xLogicalOrigin = 0; | |
1840 | m_yLogicalOrigin = 0; | |
0f0c61d0 | 1841 | m_xAxisReversed = |
9da8feef | 1842 | m_yAxisReversed = false; |
0f0c61d0 | 1843 | m_backgroundMode = wxSOLID; |
4ee4c7b9 VZ |
1844 | m_colourForeground = *wxBLACK; |
1845 | m_colourBackground = *wxLIGHT_GREY; | |
9da8feef | 1846 | m_textureBackground = false; |
aba99005 | 1847 | |
b62c3631 | 1848 | m_canvas = new MyCanvas( this ); |
b97fa7cf | 1849 | m_canvas->SetScrollbars( 10, 10, 100, 240 ); |
b62c3631 | 1850 | } |
aba99005 RR |
1851 | |
1852 | // event handlers | |
1853 | ||
1854 | void MyFrame::OnQuit(wxCommandEvent& WXUNUSED(event)) | |
1855 | { | |
9da8feef WS |
1856 | // true is to force the frame to close |
1857 | Close(true); | |
aba99005 RR |
1858 | } |
1859 | ||
1860 | void MyFrame::OnAbout(wxCommandEvent& WXUNUSED(event)) | |
1861 | { | |
1862 | wxString msg; | |
c916e13b RR |
1863 | msg.Printf( wxT("This is the about dialog of the drawing sample.\n") |
1864 | wxT("This sample tests various primitive drawing functions\n") | |
6386110d | 1865 | wxT("(without any attempts to prevent flicker).\n") |
c916e13b | 1866 | wxT("Copyright (c) Robert Roebling 1999") |
aba99005 RR |
1867 | ); |
1868 | ||
9a83f860 | 1869 | wxMessageBox(msg, wxT("About Drawing"), wxOK | wxICON_INFORMATION, this); |
aba99005 RR |
1870 | } |
1871 | ||
204dd9a7 VZ |
1872 | void MyFrame::OnClip(wxCommandEvent& event) |
1873 | { | |
1874 | m_canvas->Clip(event.IsChecked()); | |
1875 | } | |
1876 | ||
f31a4cb2 SC |
1877 | #if wxUSE_GRAPHICS_CONTEXT |
1878 | void MyFrame::OnGraphicContext(wxCommandEvent& event) | |
1879 | { | |
1880 | m_canvas->UseGraphicContext(event.IsChecked()); | |
1881 | } | |
1882 | #endif | |
1883 | ||
8c6b0819 VZ |
1884 | void MyFrame::OnCopy(wxCommandEvent& WXUNUSED(event)) |
1885 | { | |
1886 | #if wxUSE_METAFILE && defined(wxMETAFILE_IS_ENH) | |
1887 | wxMetafileDC dc; | |
1888 | if (!dc.IsOk()) | |
1889 | return; | |
1890 | m_canvas->Draw(dc); | |
1891 | wxMetafile *mf = dc.Close(); | |
1892 | if (!mf) | |
1893 | return; | |
1894 | mf->SetClipboard(); | |
1895 | delete mf; | |
1896 | #endif | |
1897 | } | |
1898 | ||
1899 | void MyFrame::OnSave(wxCommandEvent& WXUNUSED(event)) | |
1900 | { | |
1901 | wxFileDialog dlg(this, wxT("Save as bitmap"), wxT(""), wxT(""), | |
1902 | #if wxUSE_LIBPNG | |
1903 | wxT("PNG image (*.png)|*.png;*.PNG|") | |
1904 | #endif | |
1905 | wxT("Bitmap image (*.bmp)|*.bmp;*.BMP"), | |
1906 | wxFD_SAVE | wxFD_OVERWRITE_PROMPT); | |
1907 | if (dlg.ShowModal() == wxID_OK) | |
1908 | { | |
1909 | wxBitmap bmp(500, 800); | |
1910 | wxMemoryDC mdc(bmp); | |
1911 | m_canvas->Draw(mdc); | |
1912 | bmp.ConvertToImage().SaveFile(dlg.GetPath()); | |
1913 | } | |
1914 | } | |
1915 | ||
568708e2 VZ |
1916 | void MyFrame::OnShow(wxCommandEvent& event) |
1917 | { | |
f65e33a3 | 1918 | m_canvas->ToShow(event.GetId()); |
568708e2 VZ |
1919 | } |
1920 | ||
1921 | void MyFrame::OnOption(wxCommandEvent& event) | |
aba99005 | 1922 | { |
3ca6a5f0 | 1923 | switch (event.GetId()) |
aba99005 RR |
1924 | { |
1925 | case MapMode_Text: | |
b9857632 | 1926 | m_mapMode = wxMM_TEXT; |
0f0c61d0 | 1927 | break; |
aba99005 RR |
1928 | case MapMode_Lometric: |
1929 | m_mapMode = wxMM_LOMETRIC; | |
0f0c61d0 VZ |
1930 | break; |
1931 | case MapMode_Twips: | |
aba99005 | 1932 | m_mapMode = wxMM_TWIPS; |
0f0c61d0 VZ |
1933 | break; |
1934 | case MapMode_Points: | |
aba99005 | 1935 | m_mapMode = wxMM_POINTS; |
0f0c61d0 VZ |
1936 | break; |
1937 | case MapMode_Metric: | |
aba99005 | 1938 | m_mapMode = wxMM_METRIC; |
0f0c61d0 VZ |
1939 | break; |
1940 | ||
1941 | case LogicalOrigin_MoveDown: | |
1942 | m_yLogicalOrigin += 10; | |
1943 | break; | |
1944 | case LogicalOrigin_MoveUp: | |
1945 | m_yLogicalOrigin -= 10; | |
1946 | break; | |
1947 | case LogicalOrigin_MoveLeft: | |
1948 | m_xLogicalOrigin += 10; | |
1949 | break; | |
1950 | case LogicalOrigin_MoveRight: | |
1951 | m_xLogicalOrigin -= 10; | |
1952 | break; | |
fb576291 VZ |
1953 | case LogicalOrigin_Set: |
1954 | m_xLogicalOrigin = | |
1955 | m_yLogicalOrigin = -100; | |
1956 | break; | |
1957 | case LogicalOrigin_Restore: | |
1958 | m_xLogicalOrigin = | |
1959 | m_yLogicalOrigin = 0; | |
1960 | break; | |
0f0c61d0 VZ |
1961 | |
1962 | case UserScale_StretchHoriz: | |
1963 | m_xUserScale *= 1.10; | |
1964 | break; | |
1965 | case UserScale_ShrinkHoriz: | |
1966 | m_xUserScale /= 1.10; | |
1967 | break; | |
1968 | case UserScale_StretchVertic: | |
1969 | m_yUserScale *= 1.10; | |
1970 | break; | |
1971 | case UserScale_ShrinkVertic: | |
1972 | m_yUserScale /= 1.10; | |
1973 | break; | |
1974 | case UserScale_Restore: | |
1975 | m_xUserScale = | |
1976 | m_yUserScale = 1.0; | |
1977 | break; | |
1978 | ||
1979 | case AxisMirror_Vertic: | |
1980 | m_yAxisReversed = !m_yAxisReversed; | |
1981 | break; | |
1982 | case AxisMirror_Horiz: | |
1983 | m_xAxisReversed = !m_xAxisReversed; | |
1984 | break; | |
1985 | ||
960a83cc | 1986 | #if wxUSE_COLOURDLG |
0f0c61d0 VZ |
1987 | case Colour_TextForeground: |
1988 | m_colourForeground = SelectColour(); | |
1989 | break; | |
1990 | case Colour_TextBackground: | |
1991 | m_colourBackground = SelectColour(); | |
1992 | break; | |
1993 | case Colour_Background: | |
1994 | { | |
1995 | wxColour col = SelectColour(); | |
a1b806b9 | 1996 | if ( col.IsOk() ) |
0f0c61d0 VZ |
1997 | { |
1998 | m_backgroundBrush.SetColour(col); | |
1999 | } | |
2000 | } | |
2001 | break; | |
960a83cc WS |
2002 | #endif // wxUSE_COLOURDLG |
2003 | ||
0f0c61d0 VZ |
2004 | case Colour_BackgroundMode: |
2005 | m_backgroundMode = m_backgroundMode == wxSOLID ? wxTRANSPARENT | |
2006 | : wxSOLID; | |
2007 | break; | |
2008 | ||
1edc9f45 RD |
2009 | case Colour_TextureBackgound: |
2010 | m_textureBackground = ! m_textureBackground; | |
2011 | break; | |
2012 | ||
0f0c61d0 VZ |
2013 | default: |
2014 | // skip Refresh() | |
2015 | return; | |
aba99005 | 2016 | } |
0f0c61d0 | 2017 | |
1e7fd311 | 2018 | m_canvas->Refresh(); |
aba99005 RR |
2019 | } |
2020 | ||
220af862 | 2021 | void MyFrame::PrepareDC(wxDC& dc) |
aba99005 | 2022 | { |
0f0c61d0 | 2023 | dc.SetLogicalOrigin( m_xLogicalOrigin, m_yLogicalOrigin ); |
428db2ea | 2024 | dc.SetAxisOrientation( !m_xAxisReversed, m_yAxisReversed ); |
fb576291 VZ |
2025 | dc.SetUserScale( m_xUserScale, m_yUserScale ); |
2026 | dc.SetMapMode( m_mapMode ); | |
220af862 VZ |
2027 | } |
2028 | ||
960a83cc | 2029 | #if wxUSE_COLOURDLG |
220af862 | 2030 | wxColour MyFrame::SelectColour() |
0f0c61d0 VZ |
2031 | { |
2032 | wxColour col; | |
2033 | wxColourData data; | |
2034 | wxColourDialog dialog(this, &data); | |
2035 | ||
2036 | if ( dialog.ShowModal() == wxID_OK ) | |
2037 | { | |
428db2ea | 2038 | col = dialog.GetColourData().GetColour(); |
0f0c61d0 VZ |
2039 | } |
2040 | ||
2041 | return col; | |
aba99005 | 2042 | } |
960a83cc | 2043 | #endif // wxUSE_COLOURDLG |