]>
Commit | Line | Data |
---|---|---|
af1337b0 JS |
1 | //----------------------------------------------------------------------------- |
2 | // Name: myframe.cpp | |
3 | // Purpose: XML resources sample: A derived frame, called MyFrame | |
4 | // Author: Robert O'Connor (rob@medicalmnemonics.com), Vaclav Slavik | |
5 | // RCS-ID: $Id$ | |
6 | // Copyright: (c) Robert O'Connor and Vaclav Slavik | |
7 | // Licence: wxWindows licence | |
8 | //----------------------------------------------------------------------------- | |
9 | ||
af1337b0 | 10 | //----------------------------------------------------------------------------- |
be5a51fb | 11 | // Standard wxWidgets headers |
af1337b0 JS |
12 | //----------------------------------------------------------------------------- |
13 | ||
14 | // For compilers that support precompilation, includes "wx/wx.h". | |
15 | #include "wx/wxprec.h" | |
16 | ||
17 | #ifdef __BORLANDC__ | |
18 | #pragma hdrstop | |
19 | #endif | |
20 | ||
21 | // For all others, include the necessary headers (this file is usually all you | |
be5a51fb | 22 | // need because it includes almost all "standard" wxWidgets headers) |
af1337b0 JS |
23 | #ifndef WX_PRECOMP |
24 | #include "wx/wx.h" | |
25 | #endif | |
26 | ||
188cb2af VZ |
27 | #include "wx/sysopt.h" |
28 | ||
af1337b0 JS |
29 | //----------------------------------------------------------------------------- |
30 | // Header of this .cpp file | |
31 | //----------------------------------------------------------------------------- | |
32 | ||
33 | #include "myframe.h" | |
34 | ||
35 | //----------------------------------------------------------------------------- | |
36 | // Remaining headers: Needed wx headers, then wx/contrib headers, then application headers | |
37 | //----------------------------------------------------------------------------- | |
38 | ||
39 | // Since setting an icon | |
40 | #include "wx/image.h" | |
41 | ||
42 | //----------------------------------------------------------------------------- | |
43 | ||
44 | #include "wx/xrc/xmlres.h" // XRC XML resouces | |
45 | ||
46 | //----------------------------------------------------------------------------- | |
47 | ||
48 | // Our derived dialog for the derived dialog example. | |
49 | #include "derivdlg.h" | |
50 | // Our custom class, for the custom class example. | |
51 | #include "custclas.h" | |
52 | // For functions to manipulate our wxTreeCtrl and wxListCtrl | |
53 | #include "wx/treectrl.h" | |
54 | #include "wx/listctrl.h" | |
55 | ||
56 | //----------------------------------------------------------------------------- | |
57 | // Regular resources (the non-XRC kind). | |
58 | //----------------------------------------------------------------------------- | |
59 | ||
60 | // The application icon | |
61 | // All non-MSW platforms use an xpm. MSW uses an .ico file | |
62 | #if defined(__WXGTK__) || defined(__WXX11__) || defined(__WXMOTIF__) || defined(__WXMAC__) || defined(__WXMGL__) | |
63 | #include "rc/appicon.xpm" | |
64 | #endif | |
65 | ||
66 | //----------------------------------------------------------------------------- | |
67 | // Event table: connect the events to the handler functions to process them | |
68 | //----------------------------------------------------------------------------- | |
69 | ||
be5a51fb | 70 | // The event tables connect the wxWidgets events with the functions (event |
af1337b0 JS |
71 | // handlers) which process them. It can be also done at run-time, but for the |
72 | // simple menu events like this the static method is much simpler. | |
f80ea77b | 73 | // The reason why the menuitems and tools are given the same name in the |
af1337b0 | 74 | // XRC file, is that both a tool (a toolbar item) and a menuitem are designed |
f80ea77b WS |
75 | // to fire the same kind of event (an EVT_MENU) and thus I give them the same |
76 | // ID name to help new users emphasize this point which is often overlooked | |
be5a51fb | 77 | // when starting out with wxWidgets. |
af1337b0 | 78 | BEGIN_EVENT_TABLE(MyFrame, wxFrame) |
60982dea VZ |
79 | EVT_MENU(XRCID("unload_resource_menuitem"), MyFrame::OnUnloadResourceMenuCommand) |
80 | EVT_MENU(XRCID("reload_resource_menuitem"), MyFrame::OnReloadResourceMenuCommand) | |
80a06ad2 | 81 | EVT_MENU(wxID_EXIT, MyFrame::OnExitToolOrMenuCommand) |
f80ea77b WS |
82 | EVT_MENU(XRCID("non_derived_dialog_tool_or_menuitem"), MyFrame::OnNonDerivedDialogToolOrMenuCommand) |
83 | EVT_MENU(XRCID("derived_tool_or_menuitem"), MyFrame::OnDerivedDialogToolOrMenuCommand) | |
84 | EVT_MENU(XRCID("controls_tool_or_menuitem"), MyFrame::OnControlsToolOrMenuCommand) | |
85 | EVT_MENU(XRCID("uncentered_tool_or_menuitem"), MyFrame::OnUncenteredToolOrMenuCommand) | |
86 | EVT_MENU(XRCID("custom_class_tool_or_menuitem"), MyFrame::OnCustomClassToolOrMenuCommand) | |
af1337b0 JS |
87 | EVT_MENU(XRCID("platform_property_tool_or_menuitem"), MyFrame::OnPlatformPropertyToolOrMenuCommand) |
88 | EVT_MENU(XRCID("art_provider_tool_or_menuitem"), MyFrame::OnArtProviderToolOrMenuCommand) | |
89 | EVT_MENU(XRCID("variable_expansion_tool_or_menuitem"), MyFrame::OnVariableExpansionToolOrMenuCommand) | |
80a06ad2 | 90 | EVT_MENU(wxID_ABOUT, MyFrame::OnAboutToolOrMenuCommand) |
af1337b0 JS |
91 | END_EVENT_TABLE() |
92 | ||
93 | //----------------------------------------------------------------------------- | |
94 | // Public methods | |
95 | //----------------------------------------------------------------------------- | |
96 | ||
97 | // Constructor | |
98 | MyFrame::MyFrame(wxWindow* parent) | |
99 | { | |
100 | // Load up this frame from XRC. [Note, instead of making a class's | |
f80ea77b WS |
101 | // constructor take a wxWindow* parent with a default value of NULL, |
102 | // we could have just had designed MyFrame class with an empty | |
af1337b0 JS |
103 | // constructor and then written here: |
104 | // wxXmlResource::Get()->LoadFrame(this, (wxWindow* )NULL, "main_frame"); | |
f80ea77b WS |
105 | // since this frame will always be the top window, and thus parentless. |
106 | // However, the current approach has source code that can be recycled | |
af1337b0 | 107 | // for other frames that aren't the top level window.] |
2b5f62a0 | 108 | wxXmlResource::Get()->LoadFrame(this, parent, wxT("main_frame")); |
af1337b0 JS |
109 | |
110 | // Set the icon for the frame. | |
111 | SetIcon(wxICON(appicon)); | |
112 | ||
113 | // Load the menubar from XRC and set this frame's menubar to it. | |
2b5f62a0 | 114 | SetMenuBar(wxXmlResource::Get()->LoadMenuBar(wxT("main_menu"))); |
af1337b0 JS |
115 | // Load the toolbar from XRC and set this frame's toolbar to it. |
116 | // NOTE: For toolbars you currently should do it exactly like this. | |
117 | // With toolbars, you currently can't create one, and set it later. It | |
118 | // needs to be all in one step. | |
188cb2af | 119 | wxSystemOptions::SetOption ( wxT("msw.remap"), 0 ); |
2b5f62a0 | 120 | SetToolBar(wxXmlResource::Get()->LoadToolBar(this, wxT("main_toolbar"))); |
f80ea77b | 121 | |
d96cdd4a | 122 | #if wxUSE_STATUSBAR |
43e8916f | 123 | // Give the frame an optional statusbar. The '1' just means one field. |
f80ea77b | 124 | // A gripsizer will automatically get put on into the corner, if that |
af1337b0 JS |
125 | // is the normal OS behaviour for frames on that platform. Helptext |
126 | // for menu items and toolbar tools will automatically get displayed | |
127 | // here. | |
128 | CreateStatusBar( 1 ); | |
d96cdd4a | 129 | #endif // wxUSE_STATUSBAR |
af1337b0 JS |
130 | } |
131 | ||
132 | //----------------------------------------------------------------------------- | |
133 | // Private methods | |
134 | //----------------------------------------------------------------------------- | |
135 | ||
60982dea VZ |
136 | void MyFrame::OnUnloadResourceMenuCommand(wxCommandEvent& WXUNUSED(event)) |
137 | { | |
138 | if ( wxXmlResource::Get()->Unload(wxT("rc/basicdlg.xrc")) ) | |
43b2d5e7 | 139 | { |
9a83f860 VZ |
140 | wxLogMessage(wxT("Basic dialog resource has now been unloaded, you ") |
141 | wxT("won't be able to use it before loading it again")); | |
43b2d5e7 | 142 | } |
60982dea | 143 | else |
43b2d5e7 | 144 | { |
9a83f860 | 145 | wxLogWarning(wxT("Failed to unload basic dialog resource")); |
43b2d5e7 | 146 | } |
60982dea VZ |
147 | } |
148 | ||
149 | void MyFrame::OnReloadResourceMenuCommand(wxCommandEvent& WXUNUSED(event)) | |
150 | { | |
151 | if ( wxXmlResource::Get()->Load(wxT("rc/basicdlg.xrc")) ) | |
43b2d5e7 | 152 | { |
9a83f860 | 153 | wxLogStatus(wxT("Basic dialog resource has been loaded.")); |
43b2d5e7 | 154 | } |
60982dea | 155 | else |
43b2d5e7 | 156 | { |
9a83f860 | 157 | wxLogError(wxT("Failed to load basic dialog resource")); |
43b2d5e7 | 158 | } |
60982dea VZ |
159 | } |
160 | ||
af1337b0 JS |
161 | void MyFrame::OnExitToolOrMenuCommand(wxCommandEvent& WXUNUSED(event)) |
162 | { | |
f80ea77b WS |
163 | // true is to force the frame to close. |
164 | Close(true); | |
af1337b0 JS |
165 | } |
166 | ||
167 | ||
168 | void MyFrame::OnNonDerivedDialogToolOrMenuCommand(wxCommandEvent& WXUNUSED(event)) | |
169 | { | |
170 | wxDialog dlg; | |
171 | // "non_derived_dialog" is the name of the wxDialog XRC node that should | |
172 | // be loaded. | |
60982dea VZ |
173 | if ( wxXmlResource::Get()->LoadDialog(&dlg, this, wxT("non_derived_dialog")) ) |
174 | dlg.ShowModal(); | |
af1337b0 JS |
175 | } |
176 | ||
177 | ||
f80ea77b | 178 | void MyFrame::OnDerivedDialogToolOrMenuCommand(wxCommandEvent& WXUNUSED(event)) |
af1337b0 JS |
179 | { |
180 | // Make an instance of our derived dialog, passing it "this" window | |
f80ea77b | 181 | // (the main frame) as the parent of the dialog. This allows the dialog |
af1337b0 JS |
182 | // to be destructed automatically when the parent is destroyed. |
183 | PreferencesDialog preferencesDialog(this); | |
184 | // Show the instance of the dialog, modally. | |
185 | preferencesDialog.ShowModal(); | |
186 | } | |
187 | ||
d956f3e7 VZ |
188 | void MyFrame::OnAnimationCtrlPlay(wxCommandEvent& event) |
189 | { | |
190 | #if wxUSE_ANIMATIONCTRL | |
191 | // get the pointers we need | |
192 | wxButton *btn = wxDynamicCast(event.GetEventObject(), wxButton); | |
193 | if (!btn || !btn->GetParent()) return; | |
194 | ||
195 | wxWindow *win = btn->GetParent(); | |
196 | wxAnimationCtrl *ctrl = XRCCTRL(*win, "controls_animation_ctrl", wxAnimationCtrl); | |
197 | if (ctrl->IsPlaying()) | |
198 | { | |
199 | ctrl->Stop(); | |
200 | btn->SetLabel(wxT("Play")); | |
201 | } | |
202 | else | |
203 | { | |
863d562d VZ |
204 | if (ctrl->Play()) |
205 | btn->SetLabel(wxT("Stop")); | |
206 | else | |
207 | wxLogError(wxT("Cannot play the animation...")); | |
d956f3e7 VZ |
208 | } |
209 | #endif | |
210 | } | |
af1337b0 | 211 | |
f80ea77b | 212 | void MyFrame::OnControlsToolOrMenuCommand(wxCommandEvent& WXUNUSED(event)) |
af1337b0 JS |
213 | { |
214 | wxDialog dlg; | |
2b5f62a0 | 215 | wxXmlResource::Get()->LoadDialog(&dlg, this, wxT("controls_dialog")); |
af1337b0 JS |
216 | |
217 | #if wxUSE_LISTCTRL | |
ef18e792 VZ |
218 | // The resource file specifies the columns of the control as they are |
219 | // typically static while the items themselves are added from here as | |
220 | // usually they are not static (but if they are, they can be defined in the | |
221 | // resources too, see the two other list controls definitions in | |
222 | // controls.xrc) | |
223 | ||
224 | // Insert some items into the listctrl: notice that we can access it using | |
225 | // XRCCTRL | |
226 | wxListCtrl * const list = XRCCTRL(dlg, "controls_listctrl", wxListCtrl); | |
227 | ||
228 | list->InsertItem(0, "Athos"); list->SetItem(0, 1, "90"); | |
229 | list->InsertItem(1, "Porthos"); list->SetItem(1, 1, "120"); | |
230 | list->InsertItem(2, "Aramis"); list->SetItem(2, 1, "80"); | |
231 | #endif // wxUSE_LISTCTRL | |
af1337b0 | 232 | |
f80ea77b | 233 | #if wxUSE_TREECTRL |
af1337b0 | 234 | // There is no data in the tree ctrl. These lines will add some. |
f80ea77b WS |
235 | // (1) Instead of having to write out |
236 | // XRCCTRL(dlg, "controls_treectrl", wxTreeCtrl)->SomeFunction() | |
af1337b0 | 237 | // each time (which is also OK), this example code will shown how |
f80ea77b | 238 | // to make a pointer to the XRC control, so we can use |
af1337b0 JS |
239 | // treectrl->SomeFunction() as a short cut. This is useful if you |
240 | // will be referring to this control often in the code. | |
241 | wxTreeCtrl* treectrl = XRCCTRL(dlg, "controls_treectrl", wxTreeCtrl); | |
242 | // (2) Add a root node | |
243 | treectrl->AddRoot(_("Godfather")); | |
244 | // (3)Append some items to the root node. | |
245 | treectrl->AppendItem(treectrl->GetRootItem(), _("Evil henchman 1")); | |
246 | treectrl->AppendItem(treectrl->GetRootItem(), _("Evil henchman 2")); | |
f80ea77b | 247 | treectrl->AppendItem(treectrl->GetRootItem(), _("Evil accountant")); |
af1337b0 | 248 | #endif |
f80ea77b | 249 | |
d956f3e7 VZ |
250 | #if wxUSE_ANIMATIONCTRL |
251 | // dynamically connect our event handler for the "clicked" event of the "play" button | |
252 | // in the animation ctrl page of our dialog | |
253 | dlg.Connect(XRCID("controls_animation_button_play"), wxEVT_COMMAND_BUTTON_CLICKED, | |
254 | wxCommandEventHandler(MyFrame::OnAnimationCtrlPlay)); | |
255 | #endif | |
256 | ||
af1337b0 JS |
257 | // All done. Show the dialog. |
258 | dlg.ShowModal(); | |
259 | } | |
260 | ||
261 | ||
f80ea77b | 262 | void MyFrame::OnUncenteredToolOrMenuCommand(wxCommandEvent& WXUNUSED(event)) |
af1337b0 JS |
263 | { |
264 | wxDialog dlg; | |
2b5f62a0 | 265 | wxXmlResource::Get()->LoadDialog(&dlg, this, wxT("uncentered_dialog")); |
af1337b0 JS |
266 | dlg.ShowModal(); |
267 | } | |
268 | ||
269 | ||
270 | void MyFrame::OnCustomClassToolOrMenuCommand(wxCommandEvent& WXUNUSED(event)) | |
271 | { | |
272 | wxDialog dlg; | |
2b5f62a0 | 273 | wxXmlResource::Get()->LoadDialog(&dlg, this, wxT("custom_class_dialog")); |
f80ea77b WS |
274 | |
275 | // Make an instance of our new custom class. | |
276 | MyResizableListCtrl* a_myResizableListCtrl = new MyResizableListCtrl(&dlg, | |
277 | wxID_ANY, | |
af1337b0 JS |
278 | wxDefaultPosition, |
279 | wxDefaultSize, | |
280 | wxLC_REPORT, | |
281 | wxDefaultValidator); | |
f80ea77b WS |
282 | |
283 | // "custom_control_placeholder" is the name of the "unknown" tag in the | |
af1337b0 | 284 | // custctrl.xrc XRC file. |
2b5f62a0 | 285 | wxXmlResource::Get()->AttachUnknownControl(wxT("custom_control_placeholder"), |
af1337b0 JS |
286 | a_myResizableListCtrl); |
287 | dlg.ShowModal(); | |
288 | } | |
289 | ||
290 | ||
291 | void MyFrame::OnPlatformPropertyToolOrMenuCommand(wxCommandEvent& WXUNUSED(event)) | |
292 | { | |
293 | wxDialog dlg; | |
2b5f62a0 | 294 | wxXmlResource::Get()->LoadDialog(&dlg, this, wxT("platform_property_dialog")); |
af1337b0 JS |
295 | dlg.ShowModal(); |
296 | } | |
297 | ||
298 | ||
299 | void MyFrame::OnArtProviderToolOrMenuCommand(wxCommandEvent& WXUNUSED(event)) | |
300 | { | |
301 | wxDialog dlg; | |
2b5f62a0 | 302 | wxXmlResource::Get()->LoadDialog(&dlg, this, wxT("art_provider_dialog")); |
af1337b0 JS |
303 | dlg.ShowModal(); |
304 | } | |
305 | ||
306 | ||
307 | void MyFrame::OnVariableExpansionToolOrMenuCommand(wxCommandEvent& WXUNUSED(event)) | |
308 | { | |
309 | wxDialog dlg; | |
2b5f62a0 | 310 | wxXmlResource::Get()->LoadDialog(&dlg, this, wxT("variable_expansion_dialog")); |
af1337b0 JS |
311 | dlg.ShowModal(); |
312 | } | |
313 | ||
314 | ||
315 | void MyFrame::OnAboutToolOrMenuCommand(wxCommandEvent& WXUNUSED(event)) | |
316 | { | |
317 | wxString msg; | |
9a83f860 VZ |
318 | msg.Printf( wxT("This is the about dialog of XML resources demo.\n") |
319 | wxT("Welcome to %s"), wxVERSION_STRING); | |
af1337b0 | 320 | |
2b5f62a0 | 321 | wxMessageBox(msg, _("About XML resources demo"), wxOK | wxICON_INFORMATION, this); |
af1337b0 | 322 | } |