]>
Commit | Line | Data |
---|---|---|
c59e5089 VZ |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: render.cpp | |
be5a51fb | 3 | // Purpose: Render wxWidgets sample |
c59e5089 VZ |
4 | // Author: Vadim Zeitlin |
5 | // Modified by: | |
6 | // Created: 04.08.03 | |
7 | // RCS-ID: $Id$ | |
be5a51fb | 8 | // Copyright: (c) 2003 Vadim Zeitlin <vadim@wxwidgets.org> |
c59e5089 VZ |
9 | // Licence: wxWindows licence |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | // ============================================================================ | |
13 | // declarations | |
14 | // ============================================================================ | |
15 | ||
16 | // ---------------------------------------------------------------------------- | |
17 | // headers | |
18 | // ---------------------------------------------------------------------------- | |
19 | ||
20 | // For compilers that support precompilation, includes "wx/wx.h". | |
21 | #include "wx/wxprec.h" | |
22 | ||
23 | #ifdef __BORLANDC__ | |
24 | #pragma hdrstop | |
25 | #endif | |
26 | ||
27 | #ifndef WX_PRECOMP | |
28 | #include "wx/app.h" | |
29 | #include "wx/frame.h" | |
9c743a7c VS |
30 | #include "wx/dc.h" |
31 | #include "wx/dcclient.h" | |
32 | #include "wx/panel.h" | |
33 | #include "wx/menu.h" | |
34 | #include "wx/textdlg.h" | |
35 | #include "wx/log.h" | |
36 | #include "wx/msgdlg.h" | |
32b9d9ff | 37 | #include "wx/icon.h" |
3427bc78 | 38 | #include "wx/image.h" |
c59e5089 VZ |
39 | #endif |
40 | ||
41 | #include "wx/apptrait.h" | |
945178c7 | 42 | #include "wx/artprov.h" |
c59e5089 VZ |
43 | #include "wx/renderer.h" |
44 | ||
45 | // ---------------------------------------------------------------------------- | |
46 | // resources | |
47 | // ---------------------------------------------------------------------------- | |
48 | ||
49 | // the application icon (under Windows and OS/2 it is in resources) | |
e7092398 | 50 | #ifndef wxHAS_IMAGES_IN_RESOURCES |
c59e5089 VZ |
51 | #include "../sample.xpm" |
52 | #endif | |
53 | ||
54 | // ---------------------------------------------------------------------------- | |
55 | // private classes | |
56 | // ---------------------------------------------------------------------------- | |
57 | ||
58 | // A renderer class draws the header buttons in a "special" way | |
59 | class MyRenderer : public wxDelegateRendererNative | |
60 | { | |
61 | public: | |
62 | MyRenderer() : wxDelegateRendererNative(wxRendererNative::GetDefault()) { } | |
63 | ||
adf07e34 | 64 | virtual int DrawHeaderButton(wxWindow *WXUNUSED(win), |
c59e5089 VZ |
65 | wxDC& dc, |
66 | const wxRect& rect, | |
1ca21e6d | 67 | int WXUNUSED(flags) = 0, |
945178c7 VZ |
68 | wxHeaderSortIconType WXUNUSED(sortArrow) |
69 | = wxHDR_SORT_ICON_NONE, | |
70 | wxHeaderButtonParams* params = NULL) | |
c59e5089 | 71 | { |
34456d33 VZ |
72 | wxDCBrushChanger setBrush(dc, *wxBLUE_BRUSH); |
73 | wxDCTextColourChanger setFgCol(dc, *wxWHITE); | |
c59e5089 | 74 | dc.DrawRoundedRectangle(rect, 5); |
945178c7 VZ |
75 | |
76 | wxString label; | |
77 | if ( params ) | |
78 | label = params->m_labelText; | |
79 | dc.DrawLabel(label, wxNullBitmap, rect, wxALIGN_CENTER); | |
adf07e34 | 80 | return rect.width; |
c59e5089 VZ |
81 | } |
82 | }; | |
83 | ||
84 | // To use a different renderer from the very beginning we must override | |
85 | // wxAppTraits method creating the renderer (another, simpler, alternative is | |
86 | // to call wxRendererNative::Set() a.s.a.p. which should work in 99% of the | |
87 | // cases, but we show this here just for completeness) | |
88 | class MyTraits : public wxGUIAppTraits | |
89 | { | |
90 | virtual wxRendererNative *CreateRenderer() | |
91 | { | |
be5a51fb | 92 | // it will be deleted on program shutdown by wxWidgets itself |
c59e5089 VZ |
93 | return new MyRenderer; |
94 | } | |
95 | }; | |
96 | ||
97 | // Define a new application type, each program should derive a class from wxApp | |
98 | class MyApp : public wxApp | |
99 | { | |
100 | public: | |
101 | virtual bool OnInit(); | |
102 | ||
103 | // if we want MyTraits to be used we must override CreateTraits() | |
104 | virtual wxAppTraits *CreateTraits() { return new MyTraits; } | |
105 | }; | |
106 | ||
107 | // Define a new frame type: this is going to be our main frame | |
108 | class MyFrame : public wxFrame | |
109 | { | |
110 | public: | |
111 | // ctor(s) | |
112 | MyFrame(); | |
113 | virtual ~MyFrame(); | |
114 | ||
8c9d1533 | 115 | private: |
c59e5089 | 116 | // event handlers (these functions should _not_ be virtual) |
8c9d1533 VZ |
117 | void OnDrawDisabled(wxCommandEvent& event) |
118 | { OnToggleDrawFlag(event, wxCONTROL_DISABLED); } | |
119 | void OnDrawFocused(wxCommandEvent& event) | |
120 | { OnToggleDrawFlag(event, wxCONTROL_FOCUSED); } | |
121 | void OnDrawPressed(wxCommandEvent& event) | |
122 | { OnToggleDrawFlag(event, wxCONTROL_PRESSED); } | |
123 | void OnDrawChecked(wxCommandEvent& event) | |
124 | { OnToggleDrawFlag(event, wxCONTROL_CHECKED); } | |
125 | void OnDrawHot(wxCommandEvent& event) | |
126 | { OnToggleDrawFlag(event, wxCONTROL_CURRENT); } | |
e78778c8 RR |
127 | void OnDrawUndetermined(wxCommandEvent &event) |
128 | { OnToggleDrawFlag(event, wxCONTROL_UNDETERMINED); } | |
8c9d1533 | 129 | |
945178c7 VZ |
130 | void OnAlignLeft(wxCommandEvent& WXUNUSED(event)) |
131 | { OnChangeAlign(wxALIGN_LEFT); } | |
132 | void OnAlignCentre(wxCommandEvent& WXUNUSED(event)) | |
133 | { OnChangeAlign(wxALIGN_CENTRE); } | |
134 | void OnAlignRight(wxCommandEvent& WXUNUSED(event)) | |
135 | { OnChangeAlign(wxALIGN_RIGHT); } | |
136 | ||
137 | void OnUseIcon(wxCommandEvent& event); | |
138 | void OnUseBitmap(wxCommandEvent& event); | |
139 | ||
ba46d9ea | 140 | #if wxUSE_DYNLIB_CLASS |
c59e5089 VZ |
141 | void OnLoad(wxCommandEvent& event); |
142 | void OnUnload(wxCommandEvent& event); | |
ba46d9ea | 143 | #endif // wxUSE_DYNLIB_CLASS |
c59e5089 VZ |
144 | void OnQuit(wxCommandEvent& event); |
145 | void OnAbout(wxCommandEvent& event); | |
146 | ||
8c9d1533 | 147 | void OnToggleDrawFlag(wxCommandEvent& event, int flag); |
945178c7 | 148 | void OnChangeAlign(int align); |
8c9d1533 VZ |
149 | |
150 | class MyPanel *m_panel; | |
c59e5089 | 151 | |
be5a51fb | 152 | // any class wishing to process wxWidgets events must use this macro |
c59e5089 VZ |
153 | DECLARE_EVENT_TABLE() |
154 | }; | |
155 | ||
156 | // a very simple class just to have something to draw on | |
157 | class MyPanel : public wxPanel | |
158 | { | |
159 | public: | |
945178c7 VZ |
160 | MyPanel(wxWindow *parent) : wxPanel(parent) |
161 | { | |
162 | m_flags = 0; | |
163 | m_align = wxALIGN_LEFT; | |
164 | m_useIcon = | |
165 | m_useBitmap = false; | |
166 | } | |
8c9d1533 VZ |
167 | |
168 | int GetFlags() const { return m_flags; } | |
169 | void SetFlags(int flags) { m_flags = flags; } | |
c59e5089 | 170 | |
945178c7 VZ |
171 | void SetAlignment(int align) { m_align = align; } |
172 | void SetUseIcon(bool useIcon) { m_useIcon = useIcon; } | |
173 | void SetUseBitmap(bool useBitmap) { m_useBitmap = useBitmap; } | |
174 | ||
8c9d1533 | 175 | private: |
c59e5089 VZ |
176 | void OnPaint(wxPaintEvent&) |
177 | { | |
178 | wxPaintDC dc(this); | |
179 | ||
51c42fc5 | 180 | wxRendererNative& renderer = wxRendererNative::Get(); |
51c42fc5 | 181 | |
737e5335 | 182 | int x1 = 10, // text offset |
945178c7 | 183 | x2 = 300, // drawing offset |
737e5335 VZ |
184 | y = 10; |
185 | ||
186 | const int lineHeight = dc.GetCharHeight(); | |
187 | dc.DrawText("Demonstration of various wxRenderer functions:", x1, y); | |
8c9d1533 VZ |
188 | y += lineHeight; |
189 | wxString flagsString; | |
190 | if ( m_flags & wxCONTROL_DISABLED ) | |
191 | flagsString += "wxCONTROL_DISABLED "; | |
192 | if ( m_flags & wxCONTROL_FOCUSED ) | |
193 | flagsString += "wxCONTROL_FOCUSED "; | |
194 | if ( m_flags & wxCONTROL_PRESSED ) | |
195 | flagsString += "wxCONTROL_PRESSED "; | |
196 | if ( m_flags & wxCONTROL_CURRENT ) | |
197 | flagsString += "wxCONTROL_CURRENT "; | |
198 | if ( m_flags & wxCONTROL_CHECKED ) | |
199 | flagsString += "wxCONTROL_CHECKED "; | |
e78778c8 RR |
200 | if ( m_flags & wxCONTROL_UNDETERMINED ) |
201 | flagsString += "wxCONTROL_UNDETERMINED "; | |
8c9d1533 VZ |
202 | if ( flagsString.empty() ) |
203 | flagsString = "(none)"; | |
204 | dc.DrawText("Using flags: " + flagsString, x1, y); | |
737e5335 VZ |
205 | y += lineHeight*3; |
206 | ||
737e5335 | 207 | const wxCoord heightHdr = renderer.GetHeaderButtonHeight(this); |
945178c7 VZ |
208 | const wxCoord widthHdr = 120; |
209 | ||
210 | const wxHeaderSortIconType | |
211 | hdrSortIcon = m_useIcon ? wxHDR_SORT_ICON_UP | |
212 | : wxHDR_SORT_ICON_NONE; | |
213 | ||
214 | wxHeaderButtonParams hdrParams; | |
215 | hdrParams.m_labelText = "Header"; | |
216 | hdrParams.m_labelAlignment = m_align; | |
217 | if ( m_useBitmap ) | |
218 | { | |
219 | hdrParams.m_labelBitmap = wxArtProvider::GetBitmap(wxART_WARNING, | |
220 | wxART_LIST); | |
221 | } | |
222 | ||
223 | dc.DrawText("DrawHeaderButton() (default)", x1, y); | |
224 | wxRendererNative::GetDefault().DrawHeaderButton(this, dc, | |
225 | wxRect(x2, y, widthHdr, heightHdr), m_flags, | |
226 | hdrSortIcon, &hdrParams); | |
227 | y += lineHeight + heightHdr; | |
228 | ||
229 | dc.DrawText("DrawHeaderButton() (overridden)", x1, y); | |
8c9d1533 | 230 | renderer.DrawHeaderButton(this, dc, |
945178c7 VZ |
231 | wxRect(x2, y, widthHdr, heightHdr), m_flags, |
232 | hdrSortIcon, &hdrParams); | |
737e5335 VZ |
233 | y += lineHeight + heightHdr; |
234 | ||
235 | dc.DrawText("DrawCheckBox()", x1, y); | |
236 | const wxSize sizeCheck = renderer.GetCheckBoxSize(this); | |
8c9d1533 VZ |
237 | renderer.DrawCheckBox(this, dc, |
238 | wxRect(wxPoint(x2, y), sizeCheck), m_flags); | |
737e5335 VZ |
239 | y += lineHeight + sizeCheck.y; |
240 | ||
241 | dc.DrawText("DrawRadioBitmap()", x1, y); | |
8c9d1533 VZ |
242 | renderer.DrawRadioBitmap(this, dc, |
243 | wxRect(wxPoint(x2, y), sizeCheck), m_flags); | |
737e5335 VZ |
244 | y += lineHeight + sizeCheck.y; |
245 | ||
246 | dc.DrawText("DrawTreeItemButton()", x1, y); | |
8c9d1533 VZ |
247 | renderer.DrawTreeItemButton(this, dc, |
248 | wxRect(x2, y, 20, 20), m_flags); | |
737e5335 | 249 | y += lineHeight + 20; |
b50d93d1 VZ |
250 | |
251 | #ifdef wxHAS_DRAW_TITLE_BAR_BITMAP | |
252 | dc.DrawText("DrawTitleBarBitmap()", x1, y); | |
253 | wxRect rBtn(x2, y, 21, 21); | |
254 | renderer.DrawTitleBarBitmap(this, dc, rBtn, | |
255 | wxTITLEBAR_BUTTON_HELP, m_flags); | |
256 | rBtn.x += 2*rBtn.width; | |
257 | renderer.DrawTitleBarBitmap(this, dc, rBtn, | |
258 | wxTITLEBAR_BUTTON_ICONIZE, m_flags); | |
259 | rBtn.x += 2*rBtn.width; | |
260 | renderer.DrawTitleBarBitmap(this, dc, rBtn, | |
261 | wxTITLEBAR_BUTTON_RESTORE, m_flags); | |
262 | rBtn.x += 2*rBtn.width; | |
263 | renderer.DrawTitleBarBitmap(this, dc, rBtn, | |
264 | wxTITLEBAR_BUTTON_MAXIMIZE, m_flags); | |
265 | rBtn.x += 2*rBtn.width; | |
266 | renderer.DrawTitleBarBitmap(this, dc, rBtn, | |
267 | wxTITLEBAR_BUTTON_CLOSE, m_flags); | |
268 | ||
269 | y += lineHeight + rBtn.height; | |
270 | #endif // wxHAS_DRAW_TITLE_BAR_BITMAP | |
c59e5089 VZ |
271 | } |
272 | ||
8c9d1533 | 273 | int m_flags; |
945178c7 VZ |
274 | int m_align; |
275 | bool m_useIcon, | |
276 | m_useBitmap; | |
8c9d1533 | 277 | |
c59e5089 VZ |
278 | DECLARE_EVENT_TABLE() |
279 | }; | |
280 | ||
281 | BEGIN_EVENT_TABLE(MyPanel, wxPanel) | |
282 | EVT_PAINT(MyPanel::OnPaint) | |
283 | END_EVENT_TABLE() | |
284 | ||
285 | // ---------------------------------------------------------------------------- | |
286 | // constants | |
287 | // ---------------------------------------------------------------------------- | |
288 | ||
289 | // IDs for the controls and the menu commands | |
290 | enum | |
291 | { | |
292 | // our menu items | |
8c9d1533 VZ |
293 | Render_DrawDisabled = 100, |
294 | Render_DrawFocused, | |
295 | Render_DrawPressed, | |
296 | Render_DrawChecked, | |
297 | Render_DrawHot, | |
e78778c8 | 298 | Render_DrawUndetermined, |
8c9d1533 | 299 | |
945178c7 VZ |
300 | Render_AlignLeft, |
301 | Render_AlignCentre, | |
302 | Render_AlignRight, | |
303 | ||
304 | Render_UseIcon, | |
305 | Render_UseBitmap, | |
306 | ||
ba46d9ea | 307 | #if wxUSE_DYNLIB_CLASS |
8c9d1533 | 308 | Render_Load, |
c59e5089 | 309 | Render_Unload, |
ba46d9ea | 310 | #endif // wxUSE_DYNLIB_CLASS |
c59e5089 VZ |
311 | |
312 | // standard menu items | |
313 | Render_Quit = wxID_EXIT, | |
314 | ||
315 | // it is important for the id corresponding to the "About" command to have | |
316 | // this standard value as otherwise it won't be handled properly under Mac | |
317 | // (where it is special and put into the "Apple" menu) | |
318 | Render_About = wxID_ABOUT | |
319 | }; | |
320 | ||
321 | // ---------------------------------------------------------------------------- | |
be5a51fb | 322 | // event tables and other macros for wxWidgets |
c59e5089 VZ |
323 | // ---------------------------------------------------------------------------- |
324 | ||
be5a51fb | 325 | // the event tables connect the wxWidgets events with the functions (event |
c59e5089 VZ |
326 | // handlers) which process them. It can be also done at run-time, but for the |
327 | // simple menu events like this the static method is much simpler. | |
328 | BEGIN_EVENT_TABLE(MyFrame, wxFrame) | |
8c9d1533 VZ |
329 | EVT_MENU(Render_DrawDisabled, MyFrame::OnDrawDisabled) |
330 | EVT_MENU(Render_DrawFocused, MyFrame::OnDrawFocused) | |
331 | EVT_MENU(Render_DrawPressed, MyFrame::OnDrawPressed) | |
332 | EVT_MENU(Render_DrawChecked, MyFrame::OnDrawChecked) | |
333 | EVT_MENU(Render_DrawHot, MyFrame::OnDrawHot) | |
e78778c8 | 334 | EVT_MENU(Render_DrawUndetermined, MyFrame::OnDrawUndetermined) |
945178c7 VZ |
335 | EVT_MENU(Render_AlignLeft, MyFrame::OnAlignLeft) |
336 | EVT_MENU(Render_AlignCentre, MyFrame::OnAlignCentre) | |
337 | EVT_MENU(Render_AlignRight, MyFrame::OnAlignRight) | |
338 | ||
339 | EVT_MENU(Render_UseIcon, MyFrame::OnUseIcon) | |
340 | EVT_MENU(Render_UseBitmap, MyFrame::OnUseBitmap) | |
341 | ||
ba46d9ea | 342 | #if wxUSE_DYNLIB_CLASS |
c59e5089 VZ |
343 | EVT_MENU(Render_Load, MyFrame::OnLoad) |
344 | EVT_MENU(Render_Unload,MyFrame::OnUnload) | |
ba46d9ea | 345 | #endif // wxUSE_DYNLIB_CLASS |
c59e5089 VZ |
346 | EVT_MENU(Render_Quit, MyFrame::OnQuit) |
347 | ||
348 | EVT_MENU(Render_About, MyFrame::OnAbout) | |
349 | END_EVENT_TABLE() | |
350 | ||
be5a51fb | 351 | // Create a new application object: this macro will allow wxWidgets to create |
c59e5089 VZ |
352 | // the application object during program execution (it's better than using a |
353 | // static object for many reasons) and also implements the accessor function | |
354 | // wxGetApp() which will return the reference of the right type (i.e. MyApp and | |
355 | // not wxApp) | |
356 | IMPLEMENT_APP(MyApp) | |
357 | ||
358 | // ============================================================================ | |
359 | // implementation | |
360 | // ============================================================================ | |
361 | ||
362 | // ---------------------------------------------------------------------------- | |
363 | // the application class | |
364 | // ---------------------------------------------------------------------------- | |
365 | ||
366 | // 'Main program' equivalent: the program execution "starts" here | |
367 | bool MyApp::OnInit() | |
368 | { | |
45e6e6f8 VZ |
369 | if ( !wxApp::OnInit() ) |
370 | return false; | |
371 | ||
3427bc78 VZ |
372 | #ifdef __WXOSX__ |
373 | // currently the images used by DrawTitleBarBitmap() are hard coded as PNG | |
374 | // images inside the library itself so we need to enable PNG support to use | |
375 | // this function | |
376 | wxImage::AddHandler(new wxPNGHandler); | |
377 | #endif // OS X | |
378 | ||
c59e5089 VZ |
379 | // create the main application window |
380 | new MyFrame; | |
381 | ||
382 | return true; | |
383 | } | |
384 | ||
385 | // ---------------------------------------------------------------------------- | |
386 | // main frame | |
387 | // ---------------------------------------------------------------------------- | |
388 | ||
389 | // frame constructor | |
390 | MyFrame::MyFrame() | |
391 | : wxFrame(NULL, | |
1ca21e6d | 392 | wxID_ANY, |
9a83f860 | 393 | wxT("Render wxWidgets Sample"), |
c59e5089 VZ |
394 | wxPoint(50, 50), |
395 | wxSize(450, 340)) | |
396 | { | |
397 | // set the frame icon | |
398 | SetIcon(wxICON(sample)); | |
399 | ||
400 | #if wxUSE_MENUS | |
401 | // create a menu bar | |
402 | wxMenu *menuFile = new wxMenu; | |
8c9d1533 VZ |
403 | menuFile->AppendCheckItem(Render_DrawDisabled, |
404 | "Draw in &disabled state\tCtrl-D"); | |
405 | menuFile->AppendCheckItem(Render_DrawFocused, | |
406 | "Draw in &focused state\tCtrl-F"); | |
407 | menuFile->AppendCheckItem(Render_DrawPressed, | |
408 | "Draw in &pressed state\tCtrl-P"); | |
409 | menuFile->AppendCheckItem(Render_DrawChecked, | |
410 | "Draw in &checked state\tCtrl-C"); | |
411 | menuFile->AppendCheckItem(Render_DrawHot, | |
412 | "Draw in &hot state\tCtrl-H"); | |
e78778c8 RR |
413 | menuFile->AppendCheckItem(Render_DrawUndetermined, |
414 | "Draw in unde&termined state\tCtrl-T"); | |
8c9d1533 | 415 | menuFile->AppendSeparator(); |
945178c7 VZ |
416 | |
417 | menuFile->AppendRadioItem(Render_AlignLeft, "&Left align\tCtrl-1"); | |
418 | menuFile->AppendRadioItem(Render_AlignCentre, "C&entre align\tCtrl-2"); | |
419 | menuFile->AppendRadioItem(Render_AlignRight, "&Right align\tCtrl-3"); | |
420 | menuFile->AppendSeparator(); | |
421 | ||
422 | menuFile->AppendCheckItem(Render_UseIcon, "Draw &icon\tCtrl-I"); | |
423 | menuFile->AppendCheckItem(Render_UseBitmap, "Draw &bitmap\tCtrl-B"); | |
424 | menuFile->AppendSeparator(); | |
425 | ||
ba46d9ea | 426 | #if wxUSE_DYNLIB_CLASS |
9a83f860 VZ |
427 | menuFile->Append(Render_Load, wxT("&Load renderer...\tCtrl-L")); |
428 | menuFile->Append(Render_Unload, wxT("&Unload renderer\tCtrl-U")); | |
8c9d1533 | 429 | menuFile->AppendSeparator(); |
ba46d9ea | 430 | #endif // wxUSE_DYNLIB_CLASS |
8c9d1533 | 431 | menuFile->Append(Render_Quit); |
c59e5089 VZ |
432 | |
433 | // the "About" item should be in the help menu | |
434 | wxMenu *helpMenu = new wxMenu; | |
8c9d1533 | 435 | helpMenu->Append(Render_About); |
c59e5089 VZ |
436 | |
437 | // now append the freshly created menu to the menu bar... | |
438 | wxMenuBar *menuBar = new wxMenuBar(); | |
9a83f860 VZ |
439 | menuBar->Append(menuFile, wxT("&File")); |
440 | menuBar->Append(helpMenu, wxT("&Help")); | |
c59e5089 VZ |
441 | |
442 | // ... and attach this menu bar to the frame | |
443 | SetMenuBar(menuBar); | |
444 | #endif // wxUSE_MENUS | |
445 | ||
446 | m_panel = new MyPanel(this); | |
447 | ||
448 | #if wxUSE_STATUSBAR | |
449 | // create a status bar just for fun (by default with 1 pane only) | |
450 | CreateStatusBar(2); | |
9a83f860 | 451 | SetStatusText(wxT("Welcome to wxWidgets!")); |
c59e5089 VZ |
452 | #endif // wxUSE_STATUSBAR |
453 | ||
454 | Show(); | |
455 | } | |
456 | ||
457 | MyFrame::~MyFrame() | |
458 | { | |
459 | delete wxRendererNative::Set(NULL); | |
460 | } | |
461 | ||
462 | ||
463 | // event handlers | |
464 | ||
8c9d1533 VZ |
465 | void MyFrame::OnToggleDrawFlag(wxCommandEvent& event, int flag) |
466 | { | |
467 | int flags = m_panel->GetFlags(); | |
468 | if ( event.IsChecked() ) | |
469 | flags |= flag; | |
470 | else | |
471 | flags &= ~flag; | |
472 | ||
473 | m_panel->SetFlags(flags); | |
474 | m_panel->Refresh(); | |
475 | } | |
476 | ||
945178c7 VZ |
477 | void MyFrame::OnChangeAlign(int align) |
478 | { | |
479 | m_panel->SetAlignment(align); | |
480 | m_panel->Refresh(); | |
481 | } | |
482 | ||
483 | void MyFrame::OnUseIcon(wxCommandEvent& event) | |
484 | { | |
485 | m_panel->SetUseIcon(event.IsChecked()); | |
486 | m_panel->Refresh(); | |
487 | } | |
488 | ||
489 | void MyFrame::OnUseBitmap(wxCommandEvent& event) | |
490 | { | |
491 | m_panel->SetUseBitmap(event.IsChecked()); | |
492 | m_panel->Refresh(); | |
493 | } | |
494 | ||
ba46d9ea VZ |
495 | #if wxUSE_DYNLIB_CLASS |
496 | ||
c59e5089 VZ |
497 | void MyFrame::OnLoad(wxCommandEvent& WXUNUSED(event)) |
498 | { | |
9a83f860 | 499 | static wxString s_name = wxT("renddll"); |
c59e5089 VZ |
500 | |
501 | wxString name = wxGetTextFromUser | |
502 | ( | |
9a83f860 VZ |
503 | wxT("Name of the renderer to load:"), |
504 | wxT("Render wxWidgets Sample"), | |
c59e5089 VZ |
505 | s_name, |
506 | this | |
507 | ); | |
508 | if ( name.empty() ) | |
509 | { | |
510 | // cancelled | |
511 | return; | |
512 | } | |
513 | ||
514 | s_name = name; | |
515 | ||
516 | wxRendererNative *renderer = wxRendererNative::Load(name); | |
517 | if ( !renderer ) | |
518 | { | |
9a83f860 | 519 | wxLogError(wxT("Failed to load renderer \"%s\"."), name.c_str()); |
c59e5089 VZ |
520 | } |
521 | else // loaded ok | |
522 | { | |
523 | delete wxRendererNative::Set(renderer); | |
524 | ||
525 | m_panel->Refresh(); | |
526 | ||
9a83f860 | 527 | wxLogStatus(this, wxT("Successfully loaded the renderer \"%s\"."), |
c59e5089 VZ |
528 | name.c_str()); |
529 | } | |
530 | } | |
531 | ||
532 | void MyFrame::OnUnload(wxCommandEvent& WXUNUSED(event)) | |
533 | { | |
534 | wxRendererNative *renderer = wxRendererNative::Set(NULL); | |
535 | if ( renderer ) | |
536 | { | |
537 | delete renderer; | |
538 | ||
539 | m_panel->Refresh(); | |
540 | ||
9a83f860 | 541 | wxLogStatus(this, wxT("Unloaded the previously loaded renderer.")); |
c59e5089 VZ |
542 | } |
543 | else | |
544 | { | |
9a83f860 | 545 | wxLogWarning(wxT("No renderer to unload.")); |
c59e5089 VZ |
546 | } |
547 | } | |
548 | ||
ba46d9ea VZ |
549 | #endif // wxUSE_DYNLIB_CLASS |
550 | ||
c59e5089 VZ |
551 | void MyFrame::OnQuit(wxCommandEvent& WXUNUSED(event)) |
552 | { | |
553 | // true is to force the frame to close | |
554 | Close(true); | |
555 | } | |
556 | ||
557 | void MyFrame::OnAbout(wxCommandEvent& WXUNUSED(event)) | |
558 | { | |
9a83f860 VZ |
559 | wxMessageBox(wxT("Render sample shows how to use custom renderers.\n") |
560 | wxT("\n") | |
561 | wxT("(c) 2003 Vadim Zeitlin"), | |
562 | wxT("About Render wxWidgets Sample"), | |
c59e5089 VZ |
563 | wxOK | wxICON_INFORMATION, this); |
564 | } | |
565 |