]>
Commit | Line | Data |
---|---|---|
23324ae1 FM |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: xrc/xmlres.h | |
e54c96f1 | 3 | // Purpose: interface of wxXmlResource |
23324ae1 FM |
4 | // Author: wxWidgets team |
5 | // RCS-ID: $Id$ | |
6 | // Licence: wxWindows license | |
7 | ///////////////////////////////////////////////////////////////////////////// | |
8 | ||
18e8e19b FM |
9 | /** |
10 | Flags which can be used with wxXmlResource::wxXmlResource. | |
11 | */ | |
12 | enum wxXmlResourceFlags | |
13 | { | |
14 | /** Translatable strings will be translated via _(). */ | |
15 | wxXRC_USE_LOCALE = 1, | |
16 | ||
17 | /** Subclass property of object nodes will be ignored (useful for previews in XRC editors). */ | |
18 | wxXRC_NO_SUBCLASSING = 2, | |
19 | ||
20 | /** Prevent the XRC files from being reloaded from disk in case they have been modified there | |
21 | since being last loaded (may slightly speed up loading them). */ | |
22 | wxXRC_NO_RELOADING = 4 | |
23 | }; | |
24 | ||
25 | ||
23324ae1 FM |
26 | /** |
27 | @class wxXmlResource | |
7c913512 | 28 | |
23324ae1 | 29 | This is the main class for interacting with the XML-based resource system. |
7c913512 | 30 | |
23324ae1 FM |
31 | The class holds XML resources from one or more .xml files, binary files or zip |
32 | archive files. | |
7c913512 | 33 | |
336aecf1 FM |
34 | Note that this is a singleton class and you'll never allocate/deallocate it. |
35 | Just use the static wxXmlResource::Get() getter. | |
36 | ||
41e69d79 | 37 | @see @ref overview_xrc, @ref overview_xrcformat |
7c913512 | 38 | |
23324ae1 FM |
39 | @library{wxxrc} |
40 | @category{xrc} | |
41 | */ | |
42 | class wxXmlResource : public wxObject | |
43 | { | |
44 | public: | |
23324ae1 FM |
45 | /** |
46 | Constructor. | |
f41d6c8c | 47 | |
18e8e19b FM |
48 | @param filemask |
49 | The XRC file, archive file, or wildcard specification that will be | |
50 | used to load all resource files inside a zip archive. | |
7c913512 | 51 | @param flags |
18e8e19b | 52 | One or more value of the ::wxXmlResourceFlags enumeration. |
7c913512 | 53 | @param domain |
18e8e19b FM |
54 | The name of the gettext catalog to search for translatable strings. |
55 | By default all loaded catalogs will be searched. | |
56 | This provides a way to allow the strings to only come from a specific catalog. | |
23324ae1 FM |
57 | */ |
58 | wxXmlResource(const wxString& filemask, | |
59 | int flags = wxXRC_USE_LOCALE, | |
cfbe5614 | 60 | const wxString& domain = wxEmptyString); |
76e9224e FM |
61 | |
62 | /** | |
63 | Constructor. | |
64 | ||
65 | @param flags | |
66 | One or more value of the ::wxXmlResourceFlags enumeration. | |
67 | @param domain | |
68 | The name of the gettext catalog to search for translatable strings. | |
69 | By default all loaded catalogs will be searched. | |
70 | This provides a way to allow the strings to only come from a specific catalog. | |
71 | */ | |
7c913512 | 72 | wxXmlResource(int flags = wxXRC_USE_LOCALE, |
cfbe5614 | 73 | const wxString& domain = wxEmptyString); |
23324ae1 FM |
74 | |
75 | /** | |
76 | Destructor. | |
77 | */ | |
adaaa686 | 78 | virtual ~wxXmlResource(); |
23324ae1 FM |
79 | |
80 | /** | |
18e8e19b FM |
81 | Initializes only a specific handler (or custom handler). |
82 | Convention says that the handler name is equal to the control's name plus | |
83 | 'XmlHandler', for example wxTextCtrlXmlHandler, wxHtmlWindowXmlHandler. | |
84 | ||
85 | The XML resource compiler (wxxrc) can create include file that contains | |
86 | initialization code for all controls used within the resource. | |
87 | Note that this handler must be allocated on the heap, since it will be | |
88 | deleted by ClearHandlers() later. | |
23324ae1 FM |
89 | */ |
90 | void AddHandler(wxXmlResourceHandler* handler); | |
91 | ||
92 | /** | |
93 | Attaches an unknown control to the given panel/window/dialog. | |
18e8e19b | 94 | Unknown controls are used in conjunction with \<object class="unknown"\>. |
23324ae1 FM |
95 | */ |
96 | bool AttachUnknownControl(const wxString& name, | |
97 | wxWindow* control, | |
4cc4bfaf | 98 | wxWindow* parent = NULL); |
23324ae1 FM |
99 | |
100 | /** | |
18e8e19b FM |
101 | Removes all handlers and deletes them (this means that any handlers |
102 | added using AddHandler() must be allocated on the heap). | |
23324ae1 FM |
103 | */ |
104 | void ClearHandlers(); | |
105 | ||
106 | /** | |
18e8e19b FM |
107 | Compares the XRC version to the argument. |
108 | ||
109 | Returns -1 if the XRC version is less than the argument, | |
110 | +1 if greater, and 0 if they are equal. | |
23324ae1 | 111 | */ |
18e8e19b | 112 | int CompareVersion(int major, int minor, int release, int revision) const; |
23324ae1 | 113 | |
cc378c2d VZ |
114 | /** |
115 | Returns a string ID corresponding to the given numeric ID. | |
116 | ||
117 | The string returned is such that calling GetXRCID() with it as | |
118 | parameter yields @a numId. If there is no string identifier | |
119 | corresponding to the given numeric one, an empty string is returned. | |
120 | ||
121 | Notice that, unlike GetXRCID(), this function is slow as it checks all | |
122 | of the identifiers used in XRC. | |
123 | ||
124 | @since 2.9.0 | |
125 | */ | |
ebd75440 | 126 | static wxString FindXRCIDById(int numId); |
cc378c2d | 127 | |
23324ae1 FM |
128 | /** |
129 | Gets the global resources object or creates one if none exists. | |
130 | */ | |
adaaa686 | 131 | static wxXmlResource* Get(); |
23324ae1 FM |
132 | |
133 | /** | |
134 | Returns the domain (message catalog) that will be used to load | |
135 | translatable strings in the XRC. | |
136 | */ | |
95b4a59e | 137 | const wxString& GetDomain() const; |
23324ae1 FM |
138 | |
139 | /** | |
18e8e19b FM |
140 | Returns flags, which may be a bitlist of ::wxXmlResourceFlags |
141 | enumeration values. | |
23324ae1 | 142 | */ |
adaaa686 | 143 | int GetFlags() const; |
23324ae1 | 144 | |
23239d94 VZ |
145 | /** |
146 | Returns the wxXmlNode containing the definition of the object with the | |
147 | given name or @NULL. | |
148 | ||
149 | This function recursively searches all the loaded XRC files for an | |
150 | object with the specified @a name. If the object is found, the | |
151 | wxXmlNode corresponding to it is returned, so this function can be used | |
152 | to access additional information defined in the XRC file and not used | |
153 | by wxXmlResource itself, e.g. contents of application-specific XML | |
154 | tags. | |
155 | ||
156 | @param name | |
157 | The name of the resource which must be unique for this function to | |
158 | work correctly, if there is more than one resource with the given | |
159 | name the choice of the one returned by this function is undefined. | |
160 | @return | |
161 | The node corresponding to the resource with the given name or @NULL. | |
162 | */ | |
163 | const wxXmlNode *GetResourceNode(const wxString& name) const; | |
164 | ||
23324ae1 | 165 | /** |
18e8e19b | 166 | Returns version information (a.b.c.d = d + 256*c + 2562*b + 2563*a). |
23324ae1 | 167 | */ |
328f5751 | 168 | long GetVersion() const; |
23324ae1 FM |
169 | |
170 | /** | |
18e8e19b FM |
171 | Returns a numeric ID that is equivalent to the string ID used in an XML resource. |
172 | ||
173 | If an unknown @a str_id is requested (i.e. other than wxID_XXX or integer), | |
174 | a new record is created which associates the given string with a number. | |
175 | ||
176 | If @a value_if_not_found is @c wxID_NONE, the number is obtained via | |
e54c96f1 | 177 | wxNewId(). Otherwise @a value_if_not_found is used. |
23324ae1 FM |
178 | Macro @c XRCID(name) is provided for convenient use in event tables. |
179 | */ | |
18e8e19b | 180 | static int GetXRCID(const wxString& str_id, int value_if_not_found = wxID_NONE); |
23324ae1 FM |
181 | |
182 | /** | |
18e8e19b FM |
183 | Initializes handlers for all supported controls/windows. |
184 | ||
185 | This will make the executable quite big because it forces linking against | |
23324ae1 FM |
186 | most of the wxWidgets library. |
187 | */ | |
188 | void InitAllHandlers(); | |
189 | ||
190 | /** | |
191 | Loads resources from XML files that match given filemask. | |
336aecf1 FM |
192 | |
193 | Example: | |
194 | @code | |
195 | if (!wxXmlResource::Get()->Load("rc/*.xrc")) | |
196 | wxLogError("Couldn't load resources!"); | |
197 | @endcode | |
198 | ||
04ae32cd VS |
199 | @note |
200 | If wxUSE_FILESYS is enabled, this method understands wxFileSystem URLs | |
201 | (see wxFileSystem::FindFirst()). | |
202 | ||
203 | @note | |
204 | If you are sure that the argument is name of single XRC file (rather | |
205 | than an URL or a wildcard), use LoadFile() instead. | |
206 | ||
2bb9a404 | 207 | @see LoadFile(), LoadAllFiles() |
23324ae1 FM |
208 | */ |
209 | bool Load(const wxString& filemask); | |
210 | ||
04ae32cd VS |
211 | /** |
212 | Simpler form of Load() for loading a single XRC file. | |
213 | ||
214 | @since 2.9.0 | |
215 | ||
2bb9a404 | 216 | @see Load(), LoadAllFiles() |
04ae32cd VS |
217 | */ |
218 | bool LoadFile(const wxFileName& file); | |
219 | ||
2bb9a404 VS |
220 | /** |
221 | Loads all .xrc files from directory @a dirname. | |
222 | ||
223 | Tries to load as many files as possible; if there's an error while | |
224 | loading one file, it still attempts to load other files. | |
225 | ||
226 | @since 2.9.0 | |
227 | ||
228 | @see LoadFile(), Load() | |
229 | */ | |
230 | bool LoadAllFiles(const wxString& dirname); | |
231 | ||
23324ae1 FM |
232 | /** |
233 | Loads a bitmap resource from a file. | |
234 | */ | |
235 | wxBitmap LoadBitmap(const wxString& name); | |
236 | ||
23324ae1 | 237 | /** |
18e8e19b FM |
238 | Loads a dialog. @a parent points to parent window (if any). |
239 | */ | |
240 | wxDialog* LoadDialog(wxWindow* parent, const wxString& name); | |
241 | ||
242 | /** | |
243 | Loads a dialog. @a parent points to parent window (if any). | |
244 | ||
23324ae1 | 245 | This form is used to finish creation of an already existing instance (the main |
18e8e19b | 246 | reason for this is that you may want to use derived class with a new event table). |
23324ae1 | 247 | Example: |
18e8e19b FM |
248 | |
249 | @code | |
250 | MyDialog dlg; | |
336aecf1 | 251 | wxXmlResource::Get()->LoadDialog(&dlg, mainFrame, "my_dialog"); |
18e8e19b FM |
252 | dlg.ShowModal(); |
253 | @endcode | |
23324ae1 | 254 | */ |
18e8e19b | 255 | bool LoadDialog(wxDialog* dlg, wxWindow* parent, const wxString& name); |
23324ae1 FM |
256 | |
257 | /** | |
258 | Loads a frame. | |
259 | */ | |
260 | bool LoadFrame(wxFrame* frame, wxWindow* parent, | |
261 | const wxString& name); | |
262 | ||
263 | /** | |
264 | Loads an icon resource from a file. | |
265 | */ | |
266 | wxIcon LoadIcon(const wxString& name); | |
267 | ||
268 | /** | |
269 | Loads menu from resource. Returns @NULL on failure. | |
270 | */ | |
271 | wxMenu* LoadMenu(const wxString& name); | |
272 | ||
273 | //@{ | |
274 | /** | |
275 | Loads a menubar from resource. Returns @NULL on failure. | |
276 | */ | |
277 | wxMenuBar* LoadMenuBar(wxWindow* parent, const wxString& name); | |
7c913512 | 278 | wxMenuBar* LoadMenuBar(const wxString& name); |
23324ae1 FM |
279 | //@} |
280 | ||
281 | //@{ | |
282 | /** | |
283 | Load an object from the resource specifying both the resource name and the | |
284 | class name. | |
18e8e19b FM |
285 | |
286 | The first overload lets you load nonstandard container windows and returns | |
287 | @NULL on failure. The second one lets you finish the creation of an existing | |
23324ae1 FM |
288 | instance and returns @false on failure. |
289 | */ | |
290 | wxObject* LoadObject(wxWindow* parent, const wxString& name, | |
291 | const wxString& classname); | |
7c913512 FM |
292 | bool LoadObject(wxObject* instance, wxWindow* parent, |
293 | const wxString& name, | |
294 | const wxString& classname); | |
23324ae1 FM |
295 | //@} |
296 | ||
23324ae1 | 297 | /** |
e64cadcb | 298 | Loads a panel. @a parent points to the parent window. |
23324ae1 FM |
299 | */ |
300 | wxPanel* LoadPanel(wxWindow* parent, const wxString& name); | |
18e8e19b FM |
301 | |
302 | /** | |
e64cadcb | 303 | Loads a panel. @a parent points to the parent window. |
18e8e19b FM |
304 | This form is used to finish creation of an already existing instance. |
305 | */ | |
306 | bool LoadPanel(wxPanel* panel, wxWindow* parent, const wxString& name); | |
23324ae1 FM |
307 | |
308 | /** | |
309 | Loads a toolbar. | |
310 | */ | |
311 | wxToolBar* LoadToolBar(wxWindow* parent, const wxString& name); | |
312 | ||
313 | /** | |
18e8e19b FM |
314 | Sets the global resources object and returns a pointer to the previous one |
315 | (may be @NULL). | |
23324ae1 | 316 | */ |
adaaa686 | 317 | static wxXmlResource* Set(wxXmlResource* res); |
23324ae1 FM |
318 | |
319 | /** | |
320 | Sets the domain (message catalog) that will be used to load | |
321 | translatable strings in the XRC. | |
322 | */ | |
95b4a59e | 323 | void SetDomain(const wxString& domain); |
23324ae1 FM |
324 | |
325 | /** | |
18e8e19b | 326 | Sets flags (bitlist of ::wxXmlResourceFlags enumeration values). |
23324ae1 FM |
327 | */ |
328 | void SetFlags(int flags); | |
329 | ||
330 | /** | |
18e8e19b FM |
331 | This function unloads a resource previously loaded by Load(). |
332 | ||
23324ae1 | 333 | Returns @true if the resource was successfully unloaded and @false if it |
18e8e19b | 334 | hasn't been found in the list of loaded resources. |
23324ae1 FM |
335 | */ |
336 | bool Unload(const wxString& filename); | |
819559b2 VS |
337 | |
338 | protected: | |
339 | /** | |
340 | Reports error in XRC resources to the user. | |
341 | ||
342 | Any errors in XRC input files should be reported using this method | |
343 | (or its wxXmlResourceHandler::ReportError() equivalent). Unlike | |
344 | wxLogError(), this method presents the error to the user in a more | |
345 | usable form. In particular, the output is compiler-like and contains | |
346 | information about the exact location of the error. | |
347 | ||
348 | @param context XML node the error occurred in or relates to. This can | |
349 | be @NULL, but should be the most specific node possible, | |
350 | as its line number is what is reported to the user. | |
351 | @param message Text of the error message. This string should always | |
352 | be in English (i.e. not wrapped in _()). It shouldn't | |
353 | be a sentence -- it should start with lower-case letter | |
354 | and shouldn't have a trailing period or exclamation | |
355 | point. | |
356 | ||
357 | @since 2.9.0 | |
358 | ||
359 | @see wxXmlResourceHandler::ReportError(), DoReportError() | |
360 | */ | |
361 | void ReportError(wxXmlNode *context, const wxString& message); | |
362 | ||
363 | /** | |
364 | Implementation of XRC resources errors reporting. | |
365 | ||
366 | This method is called by ReportError() and shouldn't be called | |
367 | directly; use ReportError() or wxXmlResourceHandler::ReportError() | |
368 | to log errors. | |
369 | ||
370 | Default implementation uses wxLogError(). | |
371 | ||
372 | @param xrcFile File the error occurred in or empty string if it | |
373 | couldn't be determined. | |
374 | @param position XML node where the error occurred or @NULL if it | |
375 | couldn't be determined. | |
376 | @param message Text of the error message. See ReportError() | |
377 | documentation for details of the string's format. | |
378 | ||
379 | @note | |
380 | You may override this method in a derived class to customize errors | |
381 | reporting. If you do so, you'll need to either use the derived class | |
382 | in all your code or call wxXmlResource::Set() to change the global | |
383 | wxXmlResource instance to your class. | |
384 | ||
385 | @since 2.9.0 | |
386 | ||
387 | @see ReportError() | |
388 | */ | |
389 | virtual void DoReportError(const wxString& xrcFile, wxXmlNode *position, | |
390 | const wxString& message); | |
23324ae1 FM |
391 | }; |
392 | ||
393 | ||
e54c96f1 | 394 | |
23324ae1 FM |
395 | /** |
396 | @class wxXmlResourceHandler | |
7c913512 | 397 | |
23324ae1 FM |
398 | wxXmlResourceHandler is an abstract base class for resource handlers |
399 | capable of creating a control from an XML node. | |
7c913512 | 400 | |
f41d6c8c | 401 | See @ref overview_xrc for details. |
7c913512 | 402 | |
23324ae1 FM |
403 | @library{wxxrc} |
404 | @category{xrc} | |
405 | */ | |
406 | class wxXmlResourceHandler : public wxObject | |
407 | { | |
408 | public: | |
409 | /** | |
410 | Default constructor. | |
411 | */ | |
412 | wxXmlResourceHandler(); | |
413 | ||
414 | /** | |
415 | Destructor. | |
416 | */ | |
adaaa686 | 417 | virtual ~wxXmlResourceHandler(); |
23324ae1 FM |
418 | |
419 | /** | |
95b4a59e FM |
420 | Creates an object (menu, dialog, control, ...) from an XML node. |
421 | Should check for validity. @a parent is a higher-level object | |
422 | (usually window, dialog or panel) that is often necessary to | |
423 | create the resource. | |
424 | ||
425 | If @b instance is non-@NULL it should not create a new instance via | |
426 | 'new' but should rather use this one, and call its Create method. | |
23324ae1 | 427 | */ |
95b4a59e FM |
428 | wxObject* CreateResource(wxXmlNode* node, wxObject* parent, |
429 | wxObject* instance); | |
23324ae1 FM |
430 | |
431 | /** | |
95b4a59e | 432 | Called from CreateResource after variables were filled. |
23324ae1 | 433 | */ |
95b4a59e | 434 | virtual wxObject* DoCreateResource() = 0; |
23324ae1 FM |
435 | |
436 | /** | |
437 | Returns @true if it understands this node and can create | |
438 | a resource from it, @false otherwise. | |
18e8e19b FM |
439 | |
440 | @note | |
441 | You must not call any wxXmlResourceHandler methods except IsOfClass() | |
442 | from this method! The instance is not yet initialized with node data | |
443 | at the time CanHandle() is called and it is only safe to operate on | |
444 | node directly or to call IsOfClass(). | |
23324ae1 | 445 | */ |
95b4a59e FM |
446 | virtual bool CanHandle(wxXmlNode* node) = 0; |
447 | ||
448 | /** | |
449 | Sets the parent resource. | |
450 | */ | |
451 | void SetParentResource(wxXmlResource* res); | |
452 | ||
453 | ||
454 | protected: | |
455 | ||
456 | /** | |
457 | Add a style flag (e.g. @c wxMB_DOCKABLE) to the list of flags | |
458 | understood by this handler. | |
459 | */ | |
460 | void AddStyle(const wxString& name, int value); | |
461 | ||
462 | /** | |
463 | Add styles common to all wxWindow-derived classes. | |
464 | */ | |
465 | void AddWindowStyles(); | |
23324ae1 FM |
466 | |
467 | /** | |
468 | Creates children. | |
469 | */ | |
4cc4bfaf | 470 | void CreateChildren(wxObject* parent, bool this_hnd_only = false); |
23324ae1 FM |
471 | |
472 | /** | |
473 | Helper function. | |
474 | */ | |
475 | void CreateChildrenPrivately(wxObject* parent, | |
4cc4bfaf | 476 | wxXmlNode* rootnode = NULL); |
23324ae1 FM |
477 | |
478 | /** | |
479 | Creates a resource from a node. | |
480 | */ | |
481 | wxObject* CreateResFromNode(wxXmlNode* node, wxObject* parent, | |
4cc4bfaf | 482 | wxObject* instance = NULL); |
23324ae1 | 483 | |
23324ae1 | 484 | /** |
18e8e19b | 485 | Creates an animation (see wxAnimation) from the filename specified in @a param. |
23324ae1 | 486 | */ |
f8ebb70d | 487 | wxAnimation GetAnimation(const wxString& param = "animation"); |
23324ae1 FM |
488 | |
489 | /** | |
23324ae1 FM |
490 | Gets a bitmap. |
491 | */ | |
95b4a59e FM |
492 | wxBitmap GetBitmap(const wxString& param = "bitmap", |
493 | const wxArtClient& defaultArtClient = wxART_OTHER, | |
494 | wxSize size = wxDefaultSize); | |
23324ae1 FM |
495 | |
496 | /** | |
f41d6c8c | 497 | Gets a bool flag (1, t, yes, on, true are @true, everything else is @false). |
23324ae1 | 498 | */ |
4cc4bfaf | 499 | bool GetBool(const wxString& param, bool defaultv = false); |
23324ae1 FM |
500 | |
501 | /** | |
3f5506cf | 502 | Gets colour in HTML syntax (\#RRGGBB). |
23324ae1 FM |
503 | */ |
504 | wxColour GetColour(const wxString& param, | |
18e8e19b | 505 | const wxColour& defaultColour = wxNullColour); |
23324ae1 FM |
506 | |
507 | /** | |
508 | Returns the current file system. | |
509 | */ | |
95b4a59e | 510 | wxFileSystem& GetCurFileSystem(); |
23324ae1 FM |
511 | |
512 | /** | |
513 | Gets a dimension (may be in dialog units). | |
514 | */ | |
95b4a59e FM |
515 | wxCoord GetDimension(const wxString& param, wxCoord defaultv = 0, |
516 | wxWindow* windowToUse = 0); | |
23324ae1 FM |
517 | |
518 | /** | |
23324ae1 FM |
519 | Gets a font. |
520 | */ | |
95b4a59e | 521 | wxFont GetFont(const wxString& param = "font"); |
23324ae1 FM |
522 | |
523 | /** | |
524 | Returns the XRCID. | |
525 | */ | |
4cc4bfaf | 526 | int GetID(); |
23324ae1 FM |
527 | |
528 | /** | |
23324ae1 FM |
529 | Returns an icon. |
530 | */ | |
95b4a59e FM |
531 | wxIcon GetIcon(const wxString& param = "icon", |
532 | const wxArtClient& defaultArtClient = wxART_OTHER, | |
533 | wxSize size = wxDefaultSize); | |
23324ae1 | 534 | |
1c60f644 VS |
535 | /** |
536 | Returns an icon bundle. | |
537 | ||
538 | @note | |
539 | Bundles can be loaded either with stock IDs or from files that contain | |
540 | more than one image (e.g. Windows icon files). If a file contains only | |
541 | single image, a bundle with only one icon will be created. | |
542 | ||
543 | @since 2.9.0 | |
544 | */ | |
545 | wxIconBundle GetIconBundle(const wxString& param, | |
546 | const wxArtClient& defaultArtClient = wxART_OTHER); | |
547 | ||
23324ae1 FM |
548 | /** |
549 | Gets the integer value from the parameter. | |
550 | */ | |
551 | long GetLong(const wxString& param, long defaultv = 0); | |
552 | ||
553 | /** | |
554 | Returns the resource name. | |
555 | */ | |
556 | wxString GetName(); | |
557 | ||
558 | /** | |
559 | Gets node content from wxXML_ENTITY_NODE. | |
560 | */ | |
561 | wxString GetNodeContent(wxXmlNode* node); | |
562 | ||
563 | /** | |
564 | Finds the node or returns @NULL. | |
565 | */ | |
566 | wxXmlNode* GetParamNode(const wxString& param); | |
567 | ||
568 | /** | |
569 | Finds the parameter value or returns the empty string. | |
570 | */ | |
571 | wxString GetParamValue(const wxString& param); | |
572 | ||
573 | /** | |
23324ae1 FM |
574 | Gets the position (may be in dialog units). |
575 | */ | |
f8ebb70d | 576 | wxPoint GetPosition(const wxString& param = "pos"); |
23324ae1 FM |
577 | |
578 | /** | |
23324ae1 FM |
579 | Gets the size (may be in dialog units). |
580 | */ | |
95b4a59e | 581 | wxSize GetSize(const wxString& param = "size", wxWindow* windowToUse = 0); |
23324ae1 FM |
582 | |
583 | /** | |
23324ae1 | 584 | Gets style flags from text in form "flag | flag2| flag3 |..." |
18e8e19b | 585 | Only understands flags added with AddStyle(). |
23324ae1 | 586 | */ |
f8ebb70d | 587 | int GetStyle(const wxString& param = "style", int defaults = 0); |
23324ae1 FM |
588 | |
589 | /** | |
590 | Gets text from param and does some conversions: | |
f41d6c8c FM |
591 | - replaces \\n, \\r, \\t by respective characters (according to C syntax) |
592 | - replaces @c $ by @c and @c $$ by @c $ (needed for @c _File to @c File | |
593 | translation because of XML syntax) | |
594 | - calls wxGetTranslations (unless disabled in wxXmlResource) | |
23324ae1 | 595 | */ |
95b4a59e | 596 | wxString GetText(const wxString& param, bool translate = true); |
23324ae1 FM |
597 | |
598 | /** | |
599 | Check to see if a parameter exists. | |
600 | */ | |
601 | bool HasParam(const wxString& param); | |
602 | ||
603 | /** | |
18e8e19b FM |
604 | Convenience function. |
605 | Returns @true if the node has a property class equal to classname, | |
23324ae1 FM |
606 | e.g. object class="wxDialog". |
607 | */ | |
608 | bool IsOfClass(wxXmlNode* node, const wxString& classname); | |
609 | ||
23324ae1 FM |
610 | /** |
611 | Sets common window options. | |
612 | */ | |
613 | void SetupWindow(wxWindow* wnd); | |
819559b2 VS |
614 | |
615 | /** | |
616 | Reports error in XRC resources to the user. | |
617 | ||
618 | See wxXmlResource::ReportError() for more information. | |
619 | ||
620 | @since 2.9.0 | |
621 | */ | |
622 | void ReportError(wxXmlNode *context, const wxString& message); | |
623 | ||
624 | /** | |
625 | Like ReportError(wxXmlNode*, const wxString&), but uses the node | |
626 | of currently processed object (m_node) as the context. | |
627 | ||
628 | @since 2.9.0 | |
629 | */ | |
630 | void ReportError(const wxString& message); | |
631 | ||
632 | /** | |
633 | Like ReportError(wxXmlNode*, const wxString&), but uses the node | |
634 | of parameter @a param of the currently processed object as the context. | |
635 | This is convenience function for reporting errors in particular | |
636 | parameters. | |
637 | ||
638 | @since 2.9.0 | |
639 | */ | |
640 | void ReportParamError(const wxString& param, const wxString& message); | |
23324ae1 | 641 | }; |
e54c96f1 | 642 |