]>
git.saurik.com Git - wxWidgets.git/blob - samples/render/render.cpp
6ebf987ae4a6fdcbe23f873ca898116dca8f3cf6
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: Render wxWidgets sample
4 // Author: Vadim Zeitlin
8 // Copyright: (c) 2003 Vadim Zeitlin <vadim@wxwidgets.org>
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
20 // For compilers that support precompilation, includes "wx/wx.h".
21 #include "wx/wxprec.h"
31 #include "wx/dcclient.h"
34 #include "wx/textdlg.h"
36 #include "wx/msgdlg.h"
40 #include "wx/apptrait.h"
41 #include "wx/renderer.h"
43 // ----------------------------------------------------------------------------
45 // ----------------------------------------------------------------------------
47 // the application icon (under Windows and OS/2 it is in resources)
48 #if defined(__WXGTK__) || defined(__WXMOTIF__) || defined(__WXMAC__) || defined(__WXMGL__) || defined(__WXX11__)
49 #include "../sample.xpm"
52 // ----------------------------------------------------------------------------
54 // ----------------------------------------------------------------------------
56 // A renderer class draws the header buttons in a "special" way
57 class MyRenderer
: public wxDelegateRendererNative
60 MyRenderer() : wxDelegateRendererNative(wxRendererNative::GetDefault()) { }
62 virtual int DrawHeaderButton(wxWindow
*WXUNUSED(win
),
65 int WXUNUSED(flags
) = 0,
66 wxHeaderSortIconType
WXUNUSED(sortArrow
) = wxHDR_SORT_ICON_NONE
,
67 wxHeaderButtonParams
* WXUNUSED(params
) = NULL
)
69 wxDCBrushChanger
setBrush(dc
, *wxBLUE_BRUSH
);
70 wxDCTextColourChanger
setFgCol(dc
, *wxWHITE
);
71 dc
.DrawRoundedRectangle(rect
, 5);
72 dc
.DrawLabel(wxT("MyRenderer"), wxNullBitmap
, rect
, wxALIGN_CENTER
);
77 // To use a different renderer from the very beginning we must override
78 // wxAppTraits method creating the renderer (another, simpler, alternative is
79 // to call wxRendererNative::Set() a.s.a.p. which should work in 99% of the
80 // cases, but we show this here just for completeness)
81 class MyTraits
: public wxGUIAppTraits
83 virtual wxRendererNative
*CreateRenderer()
85 // it will be deleted on program shutdown by wxWidgets itself
86 return new MyRenderer
;
90 // Define a new application type, each program should derive a class from wxApp
91 class MyApp
: public wxApp
94 virtual bool OnInit();
96 // if we want MyTraits to be used we must override CreateTraits()
97 virtual wxAppTraits
*CreateTraits() { return new MyTraits
; }
100 // Define a new frame type: this is going to be our main frame
101 class MyFrame
: public wxFrame
108 // event handlers (these functions should _not_ be virtual)
109 #if wxUSE_DYNLIB_CLASS
110 void OnLoad(wxCommandEvent
& event
);
111 void OnUnload(wxCommandEvent
& event
);
112 #endif // wxUSE_DYNLIB_CLASS
113 void OnQuit(wxCommandEvent
& event
);
114 void OnAbout(wxCommandEvent
& event
);
119 // any class wishing to process wxWidgets events must use this macro
120 DECLARE_EVENT_TABLE()
123 // a very simple class just to have something to draw on
124 class MyPanel
: public wxPanel
127 MyPanel(wxWindow
*parent
) : wxPanel(parent
) { }
129 void OnPaint(wxPaintEvent
&)
133 wxRendererNative
& renderer
= wxRendererNative::Get();
135 int x1
= 10, // text offset
136 x2
= 200, // drawing offset
139 const int lineHeight
= dc
.GetCharHeight();
140 dc
.DrawText("Demonstration of various wxRenderer functions:", x1
, y
);
143 dc
.DrawText("DrawHeaderButton() (overridden)", x1
, y
);
144 const wxCoord heightHdr
= renderer
.GetHeaderButtonHeight(this);
145 renderer
.DrawHeaderButton(this, dc
, wxRect(x2
, y
, 100, heightHdr
));
146 y
+= lineHeight
+ heightHdr
;
148 dc
.DrawText("DrawCheckBox()", x1
, y
);
149 const wxSize sizeCheck
= renderer
.GetCheckBoxSize(this);
150 renderer
.DrawCheckBox(this, dc
, wxRect(wxPoint(x2
, y
), sizeCheck
));
151 y
+= lineHeight
+ sizeCheck
.y
;
153 dc
.DrawText("DrawRadioBitmap()", x1
, y
);
154 renderer
.DrawRadioBitmap(this, dc
, wxRect(wxPoint(x2
, y
), sizeCheck
));
155 y
+= lineHeight
+ sizeCheck
.y
;
157 dc
.DrawText("DrawTreeItemButton()", x1
, y
);
158 renderer
.DrawTreeItemButton(this, dc
, wxRect(x2
, y
, 20, 20));
159 y
+= lineHeight
+ 20;
162 DECLARE_EVENT_TABLE()
165 BEGIN_EVENT_TABLE(MyPanel
, wxPanel
)
166 EVT_PAINT(MyPanel::OnPaint
)
169 // ----------------------------------------------------------------------------
171 // ----------------------------------------------------------------------------
173 // IDs for the controls and the menu commands
177 #if wxUSE_DYNLIB_CLASS
180 #endif // wxUSE_DYNLIB_CLASS
182 // standard menu items
183 Render_Quit
= wxID_EXIT
,
185 // it is important for the id corresponding to the "About" command to have
186 // this standard value as otherwise it won't be handled properly under Mac
187 // (where it is special and put into the "Apple" menu)
188 Render_About
= wxID_ABOUT
191 // ----------------------------------------------------------------------------
192 // event tables and other macros for wxWidgets
193 // ----------------------------------------------------------------------------
195 // the event tables connect the wxWidgets events with the functions (event
196 // handlers) which process them. It can be also done at run-time, but for the
197 // simple menu events like this the static method is much simpler.
198 BEGIN_EVENT_TABLE(MyFrame
, wxFrame
)
199 #if wxUSE_DYNLIB_CLASS
200 EVT_MENU(Render_Load
, MyFrame::OnLoad
)
201 EVT_MENU(Render_Unload
,MyFrame::OnUnload
)
202 #endif // wxUSE_DYNLIB_CLASS
203 EVT_MENU(Render_Quit
, MyFrame::OnQuit
)
205 EVT_MENU(Render_About
, MyFrame::OnAbout
)
208 // Create a new application object: this macro will allow wxWidgets to create
209 // the application object during program execution (it's better than using a
210 // static object for many reasons) and also implements the accessor function
211 // wxGetApp() which will return the reference of the right type (i.e. MyApp and
215 // ============================================================================
217 // ============================================================================
219 // ----------------------------------------------------------------------------
220 // the application class
221 // ----------------------------------------------------------------------------
223 // 'Main program' equivalent: the program execution "starts" here
226 if ( !wxApp::OnInit() )
229 // create the main application window
235 // ----------------------------------------------------------------------------
237 // ----------------------------------------------------------------------------
243 wxT("Render wxWidgets Sample"),
247 // set the frame icon
248 SetIcon(wxICON(sample
));
252 wxMenu
*menuFile
= new wxMenu
;
253 #if wxUSE_DYNLIB_CLASS
254 menuFile
->Append(Render_Load
, wxT("&Load renderer...\tCtrl-L"));
255 menuFile
->Append(Render_Unload
, wxT("&Unload renderer\tCtrl-U"));
256 #endif // wxUSE_DYNLIB_CLASS
257 menuFile
->Append(Render_Quit
, wxT("E&xit\tCtrl-Q"), wxT("Quit this program"));
259 // the "About" item should be in the help menu
260 wxMenu
*helpMenu
= new wxMenu
;
261 helpMenu
->Append(Render_About
, wxT("&About...\tF1"), wxT("Show about dialog"));
263 // now append the freshly created menu to the menu bar...
264 wxMenuBar
*menuBar
= new wxMenuBar();
265 menuBar
->Append(menuFile
, wxT("&File"));
266 menuBar
->Append(helpMenu
, wxT("&Help"));
268 // ... and attach this menu bar to the frame
270 #endif // wxUSE_MENUS
272 m_panel
= new MyPanel(this);
275 // create a status bar just for fun (by default with 1 pane only)
277 SetStatusText(wxT("Welcome to wxWidgets!"));
278 #endif // wxUSE_STATUSBAR
285 delete wxRendererNative::Set(NULL
);
291 #if wxUSE_DYNLIB_CLASS
293 void MyFrame::OnLoad(wxCommandEvent
& WXUNUSED(event
))
295 static wxString s_name
= wxT("renddll");
297 wxString name
= wxGetTextFromUser
299 wxT("Name of the renderer to load:"),
300 wxT("Render wxWidgets Sample"),
312 wxRendererNative
*renderer
= wxRendererNative::Load(name
);
315 wxLogError(wxT("Failed to load renderer \"%s\"."), name
.c_str());
319 delete wxRendererNative::Set(renderer
);
323 wxLogStatus(this, wxT("Successfully loaded the renderer \"%s\"."),
328 void MyFrame::OnUnload(wxCommandEvent
& WXUNUSED(event
))
330 wxRendererNative
*renderer
= wxRendererNative::Set(NULL
);
337 wxLogStatus(this, wxT("Unloaded the previously loaded renderer."));
341 wxLogWarning(wxT("No renderer to unload."));
345 #endif // wxUSE_DYNLIB_CLASS
347 void MyFrame::OnQuit(wxCommandEvent
& WXUNUSED(event
))
349 // true is to force the frame to close
353 void MyFrame::OnAbout(wxCommandEvent
& WXUNUSED(event
))
355 wxMessageBox(wxT("Render sample shows how to use custom renderers.\n")
357 wxT("(c) 2003 Vadim Zeitlin"),
358 wxT("About Render wxWidgets Sample"),
359 wxOK
| wxICON_INFORMATION
, this);