add support for loading wxListCtrl items and wxImageLists from XRC (closes #10647)
[wxWidgets.git] / docs / doxygen / overviews / xrc_format.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: xrc_format.h
3 // Purpose: XRC format specification
4 // Author: Vaclav Slavik
5 // RCS-ID: $Id$
6 // Licence: wxWindows license
7 /////////////////////////////////////////////////////////////////////////////
8
9
10 /*
11 NOTE: To make doxygen happy about <custom-tags> we're forced to
12 escape all < and > symbols which appear inside a doxygen comment.
13 Also, don't use < and > symbols in section titles.
14 */
15
16
17 /**
18
19 @page overview_xrcformat XRC File Format
20
21 Table of contents:
22 - @ref overview_xrcformat_overview
23 - @ref overview_xrcformat_root
24 - @ref overview_xrcformat_objects
25 - @ref overview_xrcformat_object
26 - @ref overview_xrcformat_object_ref
27 - @ref overview_xrcformat_datatypes
28 - @ref overview_xrcformat_windows
29 - @ref overview_xrcformat_std_props
30 - @ref overview_xrcformat_controls
31 - @ref overview_xrcformat_sizers
32 - @ref overview_xrcformat_other_objects
33 - @ref overview_xrcformat_platform
34 - @ref overview_xrcformat_extending
35 - @ref overview_xrcformat_extending_subclass
36 - @ref overview_xrcformat_extending_unknown
37 - @ref overview_xrcformat_extending_custom
38 - @ref overview_xrcformat_packed
39 - @ref overview_xrcformat_oldversions
40
41 This document describes the format of XRC resource files, as used by wxXmlResource.
42
43
44 <hr>
45
46
47 @section overview_xrcformat_overview Overview
48
49 XRC file is a XML file with all of its elements in the
50 @c http://www.wxwidgets.org/wxxrc namespace. For backward compatibility,
51 @c http://www.wxwindows.org/wxxrc namespace is accepted as well (and treated
52 as identical to @c http://www.wxwidgets.org/wxxrc), but it shouldn't be used
53 in new XRC files.
54
55 XRC file contains definitions for one or more @em objects -- typically
56 windows. The objects may themselves contain child objects.
57
58 Objects defined at the top level, under the
59 @ref overview_xrcformat_root "root element", can be accessed using
60 wxXmlResource::LoadDialog() and other LoadXXX methods. They must have
61 @c name attribute that is used as LoadXXX's argument (see
62 @ref overview_xrcformat_object for details).
63
64 Child objects are not directly accessible via wxXmlResource, they can only
65 be accessed using XRCCTRL().
66
67
68 @section overview_xrcformat_root Resource Root Element
69
70 The root element is always @c \<resource\>. It has one optional attribute, @c
71 version. If set, it specifies version of the file. In absence of @c version
72 attribute, the default is @c "0.0.0.0".
73
74 The version consists of four integers separated by periods. The first three
75 components are major, minor and release number of the wxWidgets release when
76 the change was introduced, the last one is revision number and is 0 for the
77 first incompatible change in given wxWidgets release, 1 for the second and so
78 on. The version changes only if there was an incompatible change introduced;
79 merely adding new kind of objects does not constitute incompatible change.
80
81 At the time of writing, the latest version is @c "2.5.3.0".
82
83 Note that even though @c version attribute is optional, it should always be
84 specified to take advantage of the latest capabilities:
85
86 @code
87 <?xml version="1.0"?>
88 <resource xmlns="http://www.wxwidgets.org/wxxrc" version="2.5.3.0">
89 ...
90 </resource>
91 @endcode
92
93 @c \<resource\> may have arbitrary number of
94 @ref overview_xrcformat_objects "object elements" as its children; they are referred
95 to as @em toplevel objects in the rest of this document. Unlike objects defined
96 deeper in the hierarchy, toplevel objects @em must have their @c name attribute
97 set and it must be set to a value unique among root's children.
98
99
100
101 @section overview_xrcformat_objects Defining Objects
102
103 @subsection overview_xrcformat_object Object Element
104
105 The @c \<object\> element represents a single object (typically a GUI element)
106 and it usually maps directly to a wxWidgets class instance. It has one
107 mandatory attribute, @c class, and optional @c name and @c subclass attributes.
108
109 The @c class attribute must always be present, it tells XRC what wxWidgets
110 object should be created and by which wxXmlResourceHandler.
111
112 @c name is the identifier used to identify the object. This name serves three
113 purposes:
114
115 -# It is used by wxXmlResource's various LoadXXX() methods to find the
116 resource by name passed as argument.
117 -# wxWindow's name (see wxWindow::GetName()) is set to it.
118 -# Numeric ID of a window or menu item is derived from the name.
119 If the value represents an integer (in decimal notation), it is used for
120 the numeric ID unmodified. If it is one of the wxID_XXX literals defined
121 by wxWidgets (see @ref page_stockitems), its respective value is used.
122 Otherwise, the name is transformed into dynamically generated ID. See
123 wxXmlResource::GetXRCID() for more information.
124
125 Name attributes must be unique at the top level (where the name is used to
126 load resources) and should be unique among all controls within the same
127 toplevel window (wxDialog, wxFrame).
128
129 The @c subclass attribute optional name of class whose constructor will be
130 called instead of the constructor for "class".
131 See @ref overview_xrcformat_extending_subclass for more details.
132
133 @c \<object\> element may -- and almost always do -- have children elements.
134 These come in two varieties:
135
136 -# Object's properties. A @em property is a value describing part of object's
137 behaviour, for example the "label" property on wxButton defines its label.
138 In the most common form, property is a single element with text content
139 ("<label>Cancel</label>"), but they may use nested subelements too (e.g.
140 @ref overview_xrcformat_type_font "font property"). A property can only be
141 listed once in an object's definition.
142 -# Child objects. Window childs, sizers, sizer items or notebook pages
143 are all examples of child objects. They are represented using nested
144 @c \<object\> elements and are can be repeated more than once. The specifics
145 of which object classes are allowed as children are class-specific and
146 are documented below in @ref overview_xrcformat_controls.
147
148 Example:
149 @code
150 <object class="wxDialog" name="example_dialog">
151 <!-- properties: -->
152 <title>Non-Derived Dialog Example</title>
153 <centered>1</centered>
154 <!-- child objects: -->
155 <object class="wxBoxSizer">
156 <orient>wxVERTICAL</orient>
157 <cols>1</cols>
158 <rows>0</rows>
159 ...
160 </object>
161 </object>
162 @endcode
163
164
165 @subsection overview_xrcformat_object_ref Object References
166
167 Anywhere an @c \<object\> element can be used, @c \<object_ref\> may be used
168 instead. @c \<object_ref\> is a @em reference to another named (i.e. with the
169 @c name attribute) @c \<object\> element. It has one mandatory attribute,
170 @c ref, with value containing the name of a named @c \<object\> element. When an
171 @c \<object_ref\> is encountered, a copy of the referenced @c \<object\> element
172 is made in place of @c \<object_ref\> occurrence and processed as usual.
173
174 For example, the following code:
175 @code
176 <object class="wxDialog" name="my_dlg">
177 ...
178 </object>
179 <object_ref name="my_dlg_alias" ref="my_dlg"/>
180 @endcode
181 is equivalent to
182 @code
183 <object class="wxDialog" name="my_dlg">
184 ...
185 </object>
186 <object class="wxDialog" name="my_dlg_alias">
187 ... <!-- same as in my_dlg -->
188 </object>
189 @endcode
190
191 Additionally, it is possible to override some parts of the referenced object
192 in the @c \<object_ref\> pointing to it. This is useful for putting repetitive
193 parts of XRC definitions into a template that can be reused and customized in
194 several places. The two parts are merged as follows:
195
196 -# The referred object is used as the initial content.
197 -# All attributes set on @c \<object_ref\> are added to it.
198 -# All child elements of @c \<object_ref\> are scanned. If an element with
199 the same name (and, if specified, the @c name attribute too) is found
200 in the referred object, they are recursively merged.
201 -# Child elements in @c \<object_ref\> that do not have a match in the referred
202 object are appended to the list of children of the resulting element by
203 default. Optionally, they may have @c insert_at attribute with two possible
204 values, "begin" or "end". When set to "begin", the element is prepended to
205 the list of children instead of appended.
206
207 For example, "my_dlg" in this snippet:
208 @code
209 <object class="wxDialog" name="template">
210 <title>Dummy dialog</title>
211 <size>400,400</size>
212 </object>
213 <object_ref ref="template" name="my_dlg">
214 <title>My dialog</title>
215 <centered>1</centered>
216 </object>
217 @endcode
218 is identical to:
219 @code
220 <object_ref ref="template" name="my_dlg">
221 <title>My dialog</title>
222 <size>400,400</size>
223 <centered>1</centered>
224 </object>
225 @endcode
226
227
228 @section overview_xrcformat_datatypes Data Types
229
230 There are several property data types that are frequently reused by different
231 properties. Rather than describing their format in the documentation of
232 every property, we list commonly used types in this section and document
233 their format.
234
235
236 @subsection overview_xrcformat_type_bool Boolean
237
238 Boolean values are expressed using either "1" literal (true) or "0" (false).
239
240
241 @subsection overview_xrcformat_type_float Floating-point value
242
243 Floating point values use POSIX (C locale) formatting -- decimal separator
244 is "." regardless of the locale.
245
246
247 @subsection overview_xrcformat_type_colour Colour
248
249 Colour specification can be either any string colour representation accepted
250 by wxColour::Set() or any wxSYS_COLOUR_XXX symbolic name accepted by
251 wxSystemSettings::GetColour(). In particular, the following forms are supported:
252
253 @li named colours from wxColourDatabase
254 @li HTML-like "#rrggbb" syntax (but not "#rgb")
255 @li CSS-style "rgb(r,g,b)" and "rgba(r,g,b,a)"
256 @li wxSYS_COLOUR_XXX symbolic names
257
258 Some examples:
259 @code
260 <fg>red</fg>
261 <fg>#ff0000</fg>
262 <fg>rgb(255,0,0)</fg>
263 <fg>wxSYS_COLOUR_HIGHLIGHT</fg>
264 @endcode
265
266
267 @subsection overview_xrcformat_type_size Size
268
269 Sizes and positions have the form of string with two comma-separated integer
270 components, with optional "d" suffix. Semi-formally:
271
272 size := x "," y ["d"]
273
274 where x and y are integers. Either of the components (or both) may be "-1" to
275 signify default value. As a shortcut, empty string is equivalent to "-1,-1"
276 (= wxDefaultSize or wxDefaultPosition).
277
278 When the "d" suffix is used, integer values are interpreted as
279 @ref wxWindow::ConvertDialogToPixels() "dialog units" in the parent window.
280
281 Examples:
282 @code
283 42,-1
284 100,100
285 100,50d
286 @endcode
287
288 @subsection overview_xrcformat_type_pos Position
289
290 Same as @ref overview_xrcformat_type_size.
291
292
293 @subsection overview_xrcformat_type_dimension Dimension
294
295 Similarly to @ref overview_xrcformat_type_size "sizes", dimensions are expressed
296 as integers with optional "d" suffix. When "d" suffix is used, the integer
297 preceding it is interpreted as dialog units in the parent window.
298
299
300 @subsection overview_xrcformat_type_text Text
301
302 String properties use several escape sequences that are translated according to
303 the following table:
304 @beginDefList
305 @itemdef{ "_", "&" (used for accelerators in wxWidgets) }
306 @itemdef{ "__", "_" }
307 @itemdef{ "\n", line break }
308 @itemdef{ "\r", carriage return }
309 @itemdef{ "\t", tab }
310 @itemdef{ "\\", "\" }
311 @endDefList
312
313 By default, the text is translated using wxLocale::GetTranslation() before
314 it is used. This can be disabled either globally by not passing
315 wxXRC_USE_LOCALE to wxXmlResource constructor, or by setting the @c translate
316 attribute on the property node to "0":
317 @code
318 <!-- this is not translated: -->
319 <label translate="0">_Unix</label>
320 <!-- but this is: -->
321 <help>Use Unix-style newlines</help>
322 @endcode
323
324 @note Even though the "_" character is used instead of "&" for accelerators,
325 it is still possible to use "&". The latter has to be encoded as "&amp;",
326 though, so using "_" is more convenient.
327
328 @see @ref overview_xrcformat_pre_v2530, @ref overview_xrcformat_pre_v2301
329
330
331 @subsection overview_xrcformat_type_text_notrans Non-Translatable Text
332
333 Like @ref overview_xrcformat_type_text, but the text is never translated and
334 @c translate attribute cannot be used.
335
336
337 @subsection overview_xrcformat_type_string String
338
339 An unformatted string. Unlike with @ref overview_xrcformat_type_text, no escaping
340 or translations are done.
341
342
343 @subsection overview_xrcformat_type_url URL
344
345 Any URL accepted by wxFileSystem (typically relative to XRC file's location,
346 but can be absolute too). Unlike with @ref overview_xrcformat_type_text, no escaping
347 or translations are done.
348
349
350 @subsection overview_xrcformat_type_bitmap Bitmap
351
352 Bitmap properties contain specification of a single bitmap or icon. In the most
353 basic form, their text value is simply a relative filename (or another
354 wxFileSystem URL) of the bitmap to use. For example:
355 @code
356 <object class="tool" name="wxID_NEW">
357 <tooltip>New</tooltip>
358 <bitmap>new.png</bitmap>
359 </object>
360 @endcode
361 The value is interpreted as path relative to the location of XRC file where the
362 reference occurs.
363
364 Alternatively, it is possible to specify the bitmap using wxArtProvider IDs.
365 In this case, the property element has no textual value (filename) and instead
366 has the @c stock_id XML attribute that contains stock art ID as accepted by
367 wxArtProvider::GetBitmap(). This can be either custom value (if the app uses
368 app-specific art provider) or one of the predefined wxART_XXX constants.
369
370 Optionally, @c stock_client attribute may be specified too and contain one of
371 the predefined wxArtClient values. If it is not specified, the default client
372 ID most appropriate in the context where the bitmap is referenced will be used.
373 In most cases, specifying @c stock_client is not needed.
374
375 Examples of stock bitmaps usage:
376 @code
377 <bitmap stock_id="fixed-width"/> <!-- custom app-specific art -->
378 <bitmap stock_id="wxART_FILE_OPEN"/> <!-- standard art -->
379 @endcode
380
381 Specifying the bitmap directly and using @c stock_id are mutually exclusive.
382
383
384 @subsection overview_xrcformat_type_style Style
385
386 Style properties (such as window's style or sizer flags) use syntax similar to
387 C++: the style value is OR-combination of individual flags. Symbolic names
388 identical to those used in C++ code are used for the flags. Flags are separated
389 with "|" (whitespace is allowed but not required around it).
390
391 The flags that are allowed for a given property are context-dependent.
392
393 Examples:
394 @code
395 <style>wxCAPTION|wxSYSTEM_MENU | wxRESIZE_BORDER</style>
396 <exstyle>wxDIALOG_EX_CONTEXTHELP</exstyle>
397 @endcode
398
399
400 @subsection overview_xrcformat_type_font Font
401
402 XRC uses similar, but more flexible, abstract description of fonts to that
403 used by wxFont class. A font can be described either in terms of its elementary
404 properties, or it can be derived from one of system fonts.
405
406 The font property element is "composite" element: unlike majority of
407 properties, it doesn't have text value but contains several child elements
408 instead. These children are handled in the same way as object properties
409 and can be one of the following "sub-properties":
410
411 @beginTable
412 @hdr3col{property, type, description}
413 @row3col{size, unsigned integer,
414 Pixel size of the font (default: wxNORMAL_FONT's size or @c sysfont's
415 size if the @c sysfont property is used.}
416 @row3col{style, enum,
417 One of "normal", "italic" or "slant" (default: normal).}
418 @row3col{weight, enum,
419 One of "normal", "bold" or "light" (default: normal).}
420 @row3col{family, enum,
421 One of "roman", "script", "decorative", "swiss", "modern" or "teletype"
422 (default: roman).}
423 @row3col{underlined, @ref overview_xrcformat_type_bool,
424 Whether the font should be underlined (default: 0).}
425 @row3col{face, ,
426 Comma-separated list of face names; the first one available is used
427 (default: unspecified).}
428 @row3col{encoding, ,
429 Charset of the font, unused in Unicode build), as string
430 (default: unspecified).}
431 @row3col{sysfont, ,
432 Symbolic name of system standard font(one of wxSYS_*_FONT constants).}
433 @row3col{relativesize, float,
434 Float, font size relative to chosen system font's size; can only be
435 used when 'sysfont' is used and when 'size' is not used.}
436 @endTable
437
438 All of them are optional, if they are missing, appropriate wxFont default is
439 used. If the @c sysfont property is used, then the defaults are taken from it
440 instead.
441
442 Examples:
443 @code
444 <font>
445 <!-- fixed font: Arial if available, fall back to Helvetica -->
446 <face>arial,helvetica</face>
447 <size>12</size>
448 </font>
449
450 <font>
451 <!-- enlarged, enboldened standard font: -->
452 <sysfont>wxSYS_DEFAULT_GUI_FONT</sysfont>
453 <weight>bold</weight>
454 <relativesize>1.5</relativesize>
455 </font>
456 @endcode
457
458
459 @section overview_xrcformat_windows Controls and Windows
460
461 This section describes support wxWindow-derived classes in XRC format.
462
463 @subsection overview_xrcformat_std_props Standard Properties
464
465 The following properties are always (unless stated otherwise in
466 control-specific docs) available for @em windows objects. They are omitted
467 from properties lists below.
468
469 @beginTable
470 @hdr3col{property, type, description}
471 @row3col{pos, @ref overview_xrcformat_type_pos,
472 Initial position of the window (default: wxDefaultPosition).}
473 @row3col{size, @ref overview_xrcformat_type_size,
474 Initial size of the window (default: wxDefaultSize).}
475 @row3col{style, @ref overview_xrcformat_type_style,
476 Window style for this control. The allowed values depend on what
477 window is being created, consult respective class' constructor
478 documentation for details (default: window-dependent default, usually
479 wxFOO_DEFAULT_STYLE if defined for class wxFoo, 0 if not).}
480 @row3col{exstyle, @ref overview_xrcformat_type_style,
481 Extra style for the window, if any. See wxWindow::SetExtraStyle()
482 (default: not set).}
483 @row3col{fg, @ref overview_xrcformat_type_colour,
484 Foreground colour of the window (default: window's default).}
485 @row3col{bg, @ref overview_xrcformat_type_colour,
486 Background colour of the window (default: window's default).}
487 @row3col{enabled, @ref overview_xrcformat_type_bool,
488 If set to 0, the control is disabled (default: 1).}
489 @row3col{hidden, @ref overview_xrcformat_type_bool,
490 If set to 1, the control is created hidden (default: 0).}
491 @row3col{tooltip, @ref overview_xrcformat_type_text,
492 Tooltip to use for the control (default: not set).}
493 @row3col{font, @ref overview_xrcformat_type_font,
494 Font to use for the control (default: window's default).}
495 @row3col{help, @ref overview_xrcformat_type_text,
496 Context-sensitive help for the control, used by wxHelpProvider
497 (default: not set).}
498 @endTable
499
500 All of these properties are optional.
501
502
503 @subsection overview_xrcformat_controls Supported Controls
504
505 This section lists all controls supported by default. For each control, its
506 control-specific properties are listed. If the control can have child objects,
507 it is documented there too; unless said otherwise, XRC elements for these
508 controls cannot have children.
509
510 @subsubsection xrc_wxanimationctrl wxAnimationCtrl
511
512 @beginTable
513 @hdr3col{property, type, description}
514 @row3col{animation, @ref overview_xrcformat_type_url,
515 Animation file to load into the control (required).}
516 @endTable
517
518
519 @subsubsection xrc_wxbitmapbutton wxBitmapButton
520
521 @beginTable
522 @hdr3col{property, type, description}
523 @row3col{default, @ref overview_xrcformat_type_bool,
524 Should this button be the default button in dialog (default: 0)?}
525 @row3col{bitmap, @ref overview_xrcformat_type_bitmap,
526 Bitmap to show on the button (required).}
527 @row3col{selected, @ref overview_xrcformat_type_bitmap,
528 Bitmap to show when the button is selected (default: none, same as @c bitmap).}
529 @row3col{focus, @ref overview_xrcformat_type_bitmap,
530 Bitmap to show when the button has focus (default: none, same as @c bitmap).}
531 @row3col{disabled, @ref overview_xrcformat_type_bitmap,
532 Bitmap to show when the button is disabled (default: none, same as @c bitmap).}
533 @row3col{hover, @ref overview_xrcformat_type_bitmap,
534 Bitmap to show when mouse cursor hovers above the bitmap (default: none, same as @c bitmap).}
535 @endTable
536
537
538 @subsubsection xrc_wxbitmapcombobox wxBitmapComboBox
539
540 @beginTable
541 @hdr3col{property, type, description}
542 @row3col{selection, integer,
543 Index of the initially selected item or -1 for no selection (default: -1).}
544 @row3col{value, @ref overview_xrcformat_type_string,
545 Initial value in the control (doesn't have to be one of @ content values;
546 default: empty).}
547 @endTable
548
549 If both @c value and @c selection are specified and @c selection is not -1,
550 then @c selection takes precedence.
551
552 A wxBitmapComboBox can have one or more child objects of the @c ownerdrawnitem
553 pseudo-class. @c ownerdrawnitem objects have the following properties:
554
555 @beginTable
556 @hdr3col{property, type, description}
557 @row3col{text, @ref overview_xrcformat_type_text,
558 Item's label (required).}
559 @row3col{bitmap, @ref overview_xrcformat_type_bitmap,
560 Item's bitmap (default: no bitmap).}
561 @endTable
562
563 Example:
564 @code
565 <object class="wxBitmapComboBox">
566 <selection>1</selection>
567 <object class="ownerdrawnitem">
568 <text>Foo</text>
569 <bitmap>foo.png</bitmap>
570 </object>
571 <object class="ownerdrawnitem">
572 <text>Bar</text>
573 <bitmap>bar.png</bitmap>
574 </object>
575 </object>
576 @endcode
577
578
579 @subsubsection xrc_wxbutton wxButton
580
581 @beginTable
582 @hdr3col{property, type, description}
583 @row3col{label, @ref overview_xrcformat_type_text,
584 Label to display on the button (required).}
585 @row3col{default, @ref overview_xrcformat_type_bool,
586 Should this button be the default button in dialog (default: 0)?}
587 @endTable
588
589
590 @subsubsection xrc_wxcalendarctrl wxCalendarCtrl
591
592 No additional properties.
593
594
595 @subsubsection xrc_wxcheckbox wxCheckBox
596
597 @beginTable
598 @hdr3col{property, type, description}
599 @row3col{label, @ref overview_xrcformat_type_text,
600 Label to use for the checkbox (required).}
601 @row3col{checked, @ref overview_xrcformat_type_bool,
602 Should the checkbox be checked initially (default: 0)?}
603 @endTable
604
605
606 @subsubsection xrc_wxchecklistbox wxCheckListBox
607
608 @beginTable
609 @hdr3col{property, type, description}
610 @row3col{content, items,
611 Content of the control; this property has any number of @c \<item\> XML
612 elements as its children, with the items text as their text values
613 (default: empty).}
614 @endTable
615
616 The @c \<item\> elements have listbox items' labels as their text values. They
617 can also have optional @c checked XML attribute -- if set to "1", the value is
618 initially checked.
619
620 Example:
621 @code
622 <object class="wxCheckListBox">
623 <content>
624 <item checked="1">Download library</item>
625 <item checked="1">Compile samples</item>
626 <item checked="1">Skim docs</item>
627 <item checked="1">Finish project</item>
628 <item>Wash car</item>
629 </content>
630 </object>
631 @endcode
632
633
634 @subsubsection xrc_wxchoice wxChoice
635
636 @beginTable
637 @hdr3col{property, type, description}
638 @row3col{selection, integer,
639 Index of the initially selected item or -1 for no selection (default: -1).}
640 @row3col{content, items,
641 Content of the control; this property has any number of @c \<item\> XML
642 elements as its children, with the items text as their text values
643 (default: empty).}
644 @endTable
645
646 Example:
647 @code
648 <object class="wxChoice" name="controls_choice">
649 <content>
650 <item>See</item>
651 <item>Hear</item>
652 <item>Feel</item>
653 <item>Smell</item>
654 <item>Taste</item>
655 <item>The Sixth Sense!</item>
656 </content>
657 </object>
658 @endcode
659
660
661 @subsubsection xrc_wxchoicebook wxChoicebook
662
663 A choicebook can have one or more child objects of the @c choicebookpage
664 pseudo-class (similarly to @ref xrc_wxnotebook "wxNotebook" and its
665 @c notebookpage) and one child object of the @ref xrc_wximagelist class.
666 @c choicebookpage objects have the following properties:
667
668 @beginTable
669 @hdr3col{property, type, description}
670 @row3col{label, @ref overview_xrcformat_type_text,
671 Sheet page's title (required).}
672 @row3col{bitmap, @ref overview_xrcformat_type_bitmap,
673 Bitmap shown alongside the label (default: none).}
674 @row3col{image, integer,
675 The zero-based index of the image associated with the item
676 into the image list.}
677 @row3col{selected, @ref overview_xrcformat_type_bool,
678 Is the page selected initially (only one page can be selected; default: 0)?}
679 @endTable
680
681 Each @c choicebookpage has exactly one non-toplevel window as its child.
682
683
684 @subsubsection xrc_wxcollapsiblepane wxCollapsiblePane
685
686 @beginTable
687 @hdr3col{property, type, description}
688 @row3col{label, @ref overview_xrcformat_type_text,
689 Label to use for the collapsible section (required).}
690 @row3col{collapsed, @ref overview_xrcformat_type_bool,
691 Should the pane be collapsed initially (default: 0)?}
692 @endTable
693
694 wxCollapsiblePane may contain single optional child object of the @c panewindow
695 pseudo-class type. @c panewindow itself must contain exactly one child that
696 is a @ref overview_xrcformat_sizers "sizer" or a non-toplevel window
697 object.
698
699
700 @subsubsection xrc_wxcolourpickerctrl wxColourPickerCtrl
701
702 @beginTable
703 @hdr3col{property, type, description}
704 @row3col{value, @ref overview_xrcformat_type_colour,
705 Initial value of the control (default: wxBLACK).}
706 @endTable
707
708
709 @subsubsection xrc_wxcombobox wxComboBox
710
711 @beginTable
712 @hdr3col{property, type, description}
713 @row3col{selection, integer,
714 Index of the initially selected item or -1 for no selection (default: not used).}
715 @row3col{content, items,
716 Content of the control; this property has any number of @c \<item\> XML
717 elements as its children, with the items text as their text values
718 (default: empty).}
719 @row3col{value, @ref overview_xrcformat_type_string,
720 Initial value in the control (doesn't have to be one of @ content values;
721 default: empty).}
722 @endTable
723
724 If both @c value and @c selection are specified and @c selection is not -1,
725 then @c selection takes precedence.
726
727 Example:
728 @code
729 <object class="wxComboBox" name="controls_combobox">
730 <style>wxCB_DROPDOWN</style>
731 <value>nedit</value>
732 <content>
733 <item>vim</item>
734 <item>emacs</item>
735 <item>notepad.exe</item>
736 <item>bbedit</item>
737 </content>
738 </object>
739 @endcode
740
741 @subsubsection xrc_wxdatepickerctrl wxDatePickerCtrl
742
743 No additional properties.
744
745
746 @subsubsection xrc_wxdialog wxDialog
747
748 @beginTable
749 @hdr3col{property, type, description}
750 @row3col{title, @ref overview_xrcformat_type_text,
751 Dialog's title (default: empty).}
752 @row3col{icon, @ref overview_xrcformat_type_bitmap,
753 Dialog's icon (default: not used).}
754 @row3col{centered, @ref overview_xrcformat_type_bool,
755 Whether the dialog should be centered on the screen (default: 0).}
756 @endTable
757
758 wxDialog may have optional children: either exactly one
759 @ref overview_xrcformat_sizers "sizer" child or any number of non-toplevel window
760 objects. If sizer child is used, it sets
761 @ref wxSizer::SetSizeHints() "size hints" too.
762
763 @subsubsection xrc_wxdirpickerctrl wxDirPickerCtrl
764
765 @beginTable
766 @hdr3col{property, type, description}
767 @row3col{value, @ref overview_xrcformat_type_string,
768 Initial value of the control (default: empty).}
769 @row3col{message, @ref overview_xrcformat_type_text,
770 Message shown to the user in wxDirDialog shown by the control (required).}
771 @endTable
772
773
774 @subsubsection xrc_wxfilepickerctrl wxFilePickerCtrl
775
776 @beginTable
777 @hdr3col{property, type, description}
778 @row3col{value, @ref overview_xrcformat_type_string,
779 Initial value of the control (default: empty).}
780 @row3col{message, @ref overview_xrcformat_type_text,
781 Message shown to the user in wxDirDialog shown by the control (required).}
782 @row3col{wildcard, @ref overview_xrcformat_type_string,
783 Message shown to the user in wxDirDialog shown by the control (required).}
784 @endTable
785
786
787 @subsubsection xrc_wxfontpickerctrl wxFontPickerCtrl
788
789 @beginTable
790 @hdr3col{property, type, description}
791 @row3col{value, @ref overview_xrcformat_type_font,
792 Initial value of the control (default: wxNORMAL_FONT).}
793 @endTable
794
795 @subsubsection xrc_wxfrane wxFrame
796
797 @beginTable
798 @hdr3col{property, type, description}
799 @row3col{title, @ref overview_xrcformat_type_text,
800 Frame's title (default: empty).}
801 @row3col{icon, @ref overview_xrcformat_type_bitmap,
802 Frame's icon (default: not used).}
803 @row3col{centered, @ref overview_xrcformat_type_bool,
804 Whether the frame should be centered on the screen (default: 0).}
805 @endTable
806
807 wxFrame may have optional children: either exactly one
808 @ref overview_xrcformat_sizers "sizer" child or any number of non-toplevel window
809 objects. If sizer child is used, it sets
810 @ref wxSizer::SetSizeHints() "size hints" too.
811
812
813 @subsubsection xrc_wxgauge wxGauge
814
815 @beginTable
816 @hdr3col{property, type, description}
817 @row3col{range, integer,
818 Maximum value of the gauge (default: 100).}
819 @row3col{value, integer,
820 Initial value of the control (default: 0).}
821 @row3col{shadow, @ref overview_xrcformat_type_dimension,
822 Rendered shadow size (default: none; ignored by most platforms).}
823 @row3col{bezel, @ref overview_xrcformat_type_dimension,
824 Rendered bezel size (default: none; ignored by most platforms).}
825 @endTable
826
827 @subsubsection xrc_wxgenericdirctrl wxGenericDirCtrl
828
829 @beginTable
830 @hdr3col{property, type, description}
831 @row3col{defaultfolder, @ref overview_xrcformat_type_text,
832 Initial folder (default: empty).}
833 @row3col{filter, @ref overview_xrcformat_type_text,
834 Filter string, using the same syntax as used by wxFileDialog, e.g.
835 "All files (*.*)|*.*|JPEG files (*.jpg)|*.jpg" (default: empty).}
836 @row3col{defaultfilter, integer,
837 Zero-based index of default filter (default: 0).}
838 @endTable
839
840 @subsubsection xrc_wxgrid wxGrid
841
842 No additional properties.
843
844
845 @subsubsection xrc_wxhtmlwindow wxHtmlWindow
846
847 @beginTable
848 @hdr3col{property, type, description}
849 @row3col{url, @ref overview_xrcformat_type_url,
850 Page to display in the window.}
851 @row3col{htmlcode, @ref overview_xrcformat_type_text,
852 HTML markup to display in the window.}
853 @row3col{borders, @ref overview_xrcformat_type_dimension,
854 Border around HTML content (default: 0).}
855 @endTable
856
857 At most one of @c url and @c htmlcode properties may be specified, they are
858 mutually exclusive. If neither is set, the window is initialized to show empty
859 page.
860
861
862 @subsubsection xrc_wxhyperlinkctrl wxHyperlinkCtrl
863
864 @beginTable
865 @hdr3col{property, type, description}
866 @row3col{label, @ref overview_xrcformat_type_text,
867 Label to display on the control (required).}
868 @row3col{url, @ref overview_xrcformat_type_url,
869 URL to open when the link is clicked (required).}
870 @endTable
871
872
873 @subsubsection xrc_wximagelist wxImageList
874
875 The imagelist can be used as a child object for the following classes:
876 - @ref xrc_wxchoicebook
877 - @ref xrc_wxlistbook
878 - @ref xrc_wxlistctrl
879 - @ref xrc_wxnotebook
880 - @ref xrc_wxtreebook
881 - @ref xrc_wxtreectrl
882
883 The available properties are:
884
885 @beginTable
886 @hdr3col{property, type, description}
887 @row3col{bitmap, @ref overview_xrcformat_type_bitmap,
888 Adds a new image by keeping its optional mask bitmap (see below).}
889 @row3col{mask, @ref overview_xrcformat_type_bool,
890 If masks should be created for all images (default: true).}
891 @row3col{size, @ref overview_xrcformat_type_size,
892 The size of the images in the list (default: system default icon size)).}
893 @endTable
894
895 Example:
896 @code
897 <imagelist>
898 <size>32,32</size>
899 <bitmap stock_id="wxART_QUESTION"/>
900 <bitmap stock_id="wxART_INFORMATION"/>
901 </imagelist>
902 @endcode
903
904 In the specific case of the @ref xrc_wxlistctrl, the tag can take the name
905 @c \<imagelist-small\> to define the 'small' image list, related to the flag
906 @c wxIMAGE_LIST_SMALL (see wxListCtrl documentation).
907
908
909 @subsubsection xrc_wxlistbox wxListBox
910
911 @beginTable
912 @hdr3col{property, type, description}
913 @row3col{selection, integer,
914 Index of the initially selected item or -1 for no selection (default: -1).}
915 @row3col{content, items,
916 Content of the control; this property has any number of @c \<item\> XML
917 elements as its children, with the items text as their text values
918 (default: empty).}
919 @endTable
920
921 Example:
922 @code
923 <object class="wxListBox" name="controls_listbox">
924 <size>250,160</size>
925 <style>wxLB_SINGLE</style>
926 <content>
927 <item>Milk</item>
928 <item>Pizza</item>
929 <item>Bread</item>
930 <item>Orange juice</item>
931 <item>Paper towels</item>
932 </content>
933 </object>
934 @endcode
935
936
937 @subsubsection xrc_wxlistbook wxListbook
938
939 A listbook can have one or more child objects of the @c listbookpage
940 pseudo-class (similarly to @ref xrc_wxnotebook "wxNotebook" and its
941 @c notebookpage) and one child object of the @ref xrc_wximagelist class.
942 @c listbookpage objects have the following properties:
943
944 @beginTable
945 @hdr3col{property, type, description}
946 @row3col{label, @ref overview_xrcformat_type_text,
947 Sheet page's title (required).}
948 @row3col{bitmap, @ref overview_xrcformat_type_bitmap,
949 Bitmap shown alongside the label (default: none).}
950 @row3col{image, integer,
951 The zero-based index of the image associated with the item
952 into the image list.}
953 @row3col{selected, @ref overview_xrcformat_type_bool,
954 Is the page selected initially (only one page can be selected; default: 0)?}
955 @endTable
956
957 Each @c listbookpage has exactly one non-toplevel window as its child.
958
959
960 @subsubsection xrc_wxlistctrl wxListCtrl
961
962 A listctrl can have one or more child objects of the class @ref xrc_wxlistitem
963 and one or more objects of the @ref xrc_wximagelist class. The latter is
964 defined either using @c \<imagelist\> tag for the control with @c wxLC_ICON
965 style or using @c \<imagelist-small\> tag for the control with @c
966 wxLC_SMALL_ICON style.
967
968 @subsubsection xrc_wxlistitem wxListItem
969
970 The @c listitem is a child object for the class @ref xrc_wxlistctrl.
971 It can have the following properties:
972
973 @beginTable
974 @hdr3col{property, type, description}
975 @row3col{align, wxListColumnFormat,
976 The alignment for the item.
977 Can be one of @c wxLIST_FORMAT_LEFT, @c wxLIST_FORMAT_RIGHT or
978 @c wxLIST_FORMAT_CENTRE.}
979 @row3col{bg, @ref overview_xrcformat_type_colour,
980 The background color for the item.}
981 @row3col{bitmap, @ref overview_xrcformat_type_bitmap,
982 Add a bitmap to the (normal) @ref xrc_wximagelist associated with the
983 @ref xrc_wxlistctrl parent and associate it with this item.
984 If the imagelist is not defined it will be created implicitly.}
985 @row3col{bitmap-small, @ref overview_xrcformat_type_bitmap,
986 Add a bitmap in the 'small' @ref xrc_wximagelist associated with the
987 @ref xrc_wxlistctrl parent and associate it with this item.
988 If the 'small' imagelist is not defined it will be created implicitly.}
989 @row3col{image, integer,
990 The zero-based index of the image associated with the item
991 in the (normal) image list.}
992 @row3col{image-small, integer,
993 The zero-based index of the image associated with the item
994 in the 'small' image list.}
995 @row3col{col, integer,
996 The zero-based column index.}
997 @row3col{data, integer,
998 The client data for the item.}
999 @row3col{font, @ref overview_xrcformat_type_font,
1000 The font for the item.}
1001 @row3col{image, integer,
1002 The zero-based index of the image associated with the item
1003 into the image list.}
1004 @row3col{mask, @ref overview_xrcformat_type_style,
1005 The mask indicating which fields of this class are valid.
1006 Can be any combination of the following values:
1007 - wxLIST_MASK_STATE: @b GetState is valid.
1008 - wxLIST_MASK_TEXT: @b GetText is valid.
1009 - wxLIST_MASK_IMAGE: @b GetImage is valid.
1010 - wxLIST_MASK_DATA: @b GetData is valid.
1011 - wxLIST_MASK_WIDTH: @b GetWidth is valid.
1012 - wxLIST_MASK_FORMAT: @b GetFormat is valid. }
1013 @row3col{state, @ref overview_xrcformat_type_style,
1014 The item state flags (note that the valid state flags are influenced
1015 by the value of the @c statemask, see below).
1016 Can be any combination of the following values:
1017 - @c wxLIST_STATE_FOCUSED: The item has the focus.
1018 - @c wxLIST_STATE_SELECTED: The item is selected.
1019 - @c wxLIST_STATE_DONTCARE: Don't care what the state is. Win32 only.
1020 - @c wxLIST_STATE_DROPHILITED: The item is highlighted to receive a drop event. Win32 only.
1021 - @c wxLIST_STATE_CUT: The item is in the cut state. Win32 only. }
1022 @row3col{statemask, bitlist,
1023 A mask indicating which state flags are valid. This is a bitlist of the
1024 flags reported above for the item state. }
1025 @row3col{text, @ref overview_xrcformat_type_string,
1026 The text label (or header for columns) for the item. }
1027 @row3col{textcolour, @ref overview_xrcformat_type_colour,
1028 The text colour for the item. }
1029 @row3col{width, integer,
1030 The column width. }
1031 @endTable
1032
1033 Notice that the item position can't be specified here, the items are appended
1034 to the list control in order of their appearance.
1035
1036
1037 @subsubsection xrc_wxmdiparentframe wxMDIParentFrame
1038
1039 wxMDIParentFrame supports the same properties that @ref xrc_wxfrane does.
1040
1041 wxMDIParentFrame may have optional children. When used, the child objects
1042 must be of wxMDIChildFrame type.
1043
1044
1045 @subsubsection xrc_wxmdichildframe wxMDIChildFrame
1046
1047 wxMDIChildFrame supports the same properties that @ref xrc_wxfrane and
1048 @ref xrc_wxmdiparentframe do.
1049
1050 wxMDIChildFrame can only be used as as immediate child of @ref
1051 xrc_wxmdiparentframe.
1052
1053 wxMDIChildFrame may have optional children: either exactly one
1054 @ref overview_xrcformat_sizers "sizer" child or any number of non-toplevel window
1055 objects. If sizer child is used, it sets
1056 @ref wxSizer::SetSizeHints() "size hints" too.
1057
1058
1059 @subsubsection xrc_wxmenu wxMenu
1060
1061 @beginTable
1062 @hdr3col{property, type, description}
1063 @row3col{label, @ref overview_xrcformat_type_text,
1064 Menu's label (default: empty, but required for menus other
1065 than popup menus).}
1066 @row3col{help, @ref overview_xrcformat_type_text,
1067 Help shown in statusbar when the menu is selected (only for submenus
1068 of another wxMenu, default: none).}
1069 @row3col{enabled, @ref overview_xrcformat_type_bool,
1070 Is the submenu item enabled (only for submenus of another wxMenu,
1071 default: 1)?}
1072 @endTable
1073
1074 Note that unlike most controls, wxMenu does @em not have
1075 @ref overview_xrcformat_std_props.
1076
1077 A menu object can have one or more child objects of the wxMenuItem or wxMenu
1078 classes or @c break or @c separator pseudo-classes.
1079
1080 The @c separator pseudo-class is used to insert separators into the menu and
1081 has neither properties nor children. Likewise, @c break inserts a break (see
1082 wxMenu::Break()).
1083
1084 wxMenuItem objects support the following properties:
1085
1086 @beginTable
1087 @hdr3col{property, type, description}
1088 @row3col{label, @ref overview_xrcformat_type_text,
1089 Item's label (required).}
1090 @row3col{accel, @ref overview_xrcformat_type_text_notrans,
1091 Item's accelerator (default: none).}
1092 @row3col{radio, @ref overview_xrcformat_type_bool,
1093 Item's kind is wxITEM_RADIO (default: 0)?}
1094 @row3col{checkable, @ref overview_xrcformat_type_bool,
1095 Item's kind is wxITEM_CHECK (default: 0)?}
1096 @row3col{bitmap, @ref overview_xrcformat_type_bitmap,
1097 Bitmap to show with the item (default: none).}
1098 @row3col{bitmap2, @ref overview_xrcformat_type_bitmap,
1099 Bitmap for the checked state (wxMSW, if checkable; default: none).}
1100 @row3col{help, @ref overview_xrcformat_type_text,
1101 Help shown in statusbar when the item is selected (default: none).}
1102 @row3col{enabled, @ref overview_xrcformat_type_bool,
1103 Is the item enabled (default: 1)?}
1104 @row3col{checked, @ref overview_xrcformat_type_bool,
1105 Is the item checked initially (default: 0)?}
1106 @endTable
1107
1108 Example:
1109 @code
1110 <object class="wxMenu" name="menu_edit">
1111 <style>wxMENU_TEAROFF</style>
1112 <label>_Edit</label>
1113 <object class="wxMenuItem" name="wxID_FIND">
1114 <label>_Find...</label>
1115 <accel>Ctrl-F</accel>
1116 </object>
1117 <object class="separator"/>
1118 <object class="wxMenuItem" name="menu_fuzzy">
1119 <label>Translation is _fuzzy</label>
1120 <checkable>1</checkable>
1121 </object>
1122 <object class="wxMenu" name="submenu">
1123 <label>A submenu</label>
1124 <object class="wxMenuItem" name="foo">...</object>
1125 ...
1126 </object>
1127 <object class="separator" platform="unix"/>
1128 <object class="wxMenuItem" name="wxID_PREFERENCES" platform="unix">
1129 <label>_Preferences</label>
1130 </object>
1131 </object>
1132 @endcode
1133
1134 @subsubsection xrc_wxmenubar wxMenuBar
1135
1136 No properties. Note that unlike most controls, wxMenuBar does @em not have
1137 @ref overview_xrcformat_std_props.
1138
1139 A menubar can have one or more child objects of the @ref xrc_wxmenu "wxMenu"
1140 class.
1141
1142
1143 @subsubsection xrc_wxnotebook wxNotebook
1144
1145 A notebook can have one or more child objects of the @c notebookpage
1146 pseudo-class and one child object of the @ref xrc_wximagelist class.
1147 @c notebookpage objects have the following properties:
1148
1149 @beginTable
1150 @hdr3col{property, type, description}
1151 @row3col{label, @ref overview_xrcformat_type_text,
1152 Page's title (required).}
1153 @row3col{bitmap, @ref overview_xrcformat_type_bitmap,
1154 Bitmap shown alongside the label (default: none).}
1155 @row3col{image, integer,
1156 The zero-based index of the image associated with the item
1157 into the image list.}
1158 @row3col{selected, @ref overview_xrcformat_type_bool,
1159 Is the page selected initially (only one page can be selected; default: 0)?}
1160 @endTable
1161
1162 Each @c notebookpage has exactly one non-toplevel window as its child.
1163
1164 Example:
1165 @code
1166 <object class="wxNotebook">
1167 <style>wxBK_BOTTOM</style>
1168 <object class="notebookpage">
1169 <label>Page 1</label>
1170 <object class="wxPanel" name="page_1">
1171 ...
1172 </object>
1173 </object>
1174 <object class="notebookpage">
1175 <label>Page 2</label>
1176 <object class="wxPanel" name="page_2">
1177 ...
1178 </object>
1179 </object>
1180 </object>
1181 @endcode
1182
1183
1184 @subsubsection xrc_wxownerdrawncombobox wxOwnerDrawnComboBox
1185
1186 wxOwnerDrawnComboBox has the same properties as
1187 @ref xrc_wxcombobox "wxComboBox", plus the following additional properties:
1188
1189 @beginTable
1190 @hdr3col{property, type, description}
1191 @row3col{buttonsize, @ref overview_xrcformat_type_size,
1192 Size of the dropdown button (default: default).}
1193 @endTable
1194
1195
1196 @subsubsection xrc_wxpanel wxPanel
1197
1198 No additional properties.
1199
1200 wxPanel may have optional children: either exactly one
1201 @ref overview_xrcformat_sizers "sizer" child or any number of non-toplevel window
1202 objects.
1203
1204
1205 @subsubsection xrc_wxpropertysheetdialog wxPropertySheetDialog
1206
1207 @beginTable
1208 @hdr3col{property, type, description}
1209 @row3col{title, @ref overview_xrcformat_type_text,
1210 Dialog's title (default: empty).}
1211 @row3col{icon, @ref overview_xrcformat_type_bitmap,
1212 Dialog's icon (default: not used).}
1213 @row3col{centered, @ref overview_xrcformat_type_bool,
1214 Whether the dialog should be centered on the screen (default: 0).}
1215 @row3col{buttons, @ref overview_xrcformat_type_style,
1216 Buttons to show, combination of flags accepted by
1217 wxPropertySheetDialog::CreateButtons() (default: 0).}
1218 @endTable
1219
1220 A sheet dialog can have one or more child objects of the @c propertysheetpage
1221 pseudo-class (similarly to @ref xrc_wxnotebook "wxNotebook" and its
1222 @c notebookpage). @c propertysheetpage objects have the following properties:
1223
1224 @beginTable
1225 @hdr3col{property, type, description}
1226 @row3col{label, @ref overview_xrcformat_type_text,
1227 Sheet page's title (required).}
1228 @row3col{bitmap, @ref overview_xrcformat_type_bitmap,
1229 Bitmap shown alongside the label (default: none).}
1230 @row3col{selected, @ref overview_xrcformat_type_bool,
1231 Is the page selected initially (only one page can be selected; default: 0)?}
1232 @endTable
1233
1234 Each @c propertysheetpage has exactly one non-toplevel window as its child.
1235
1236
1237 @subsubsection xrc_wxradiobutton wxRadioButton
1238
1239 @beginTable
1240 @hdr3col{property, type, description}
1241 @row3col{label, @ref overview_xrcformat_type_text,
1242 Label shown on the radio button (required).}
1243 @row3col{value, @ref overview_xrcformat_type_bool,
1244 Initial value of the control (default: 0).}
1245 @endTable
1246
1247
1248 @subsubsection xrc_wxradiobox wxRadioBox
1249
1250 @beginTable
1251 @hdr3col{property, type, description}
1252 @row3col{label, @ref overview_xrcformat_type_text,
1253 Label for the whole box (required).}
1254 @row3col{dimension, integer,
1255 Specifies the maximum number of rows (if style contains
1256 @c wxRA_SPECIFY_ROWS) or columns (if style contains @c wxRA_SPECIFY_COLS)
1257 for a two-dimensional radiobox (default: 1).}
1258 @row3col{selection, integer,
1259 Index of the initially selected item or -1 for no selection (default: -1).}
1260 @row3col{content, items,
1261 Content of the control; this property has any number of @c \<item\> XML
1262 elements as its children, with the items text as their text values
1263 (see below; default: empty).}
1264 @endTable
1265
1266 The @c \<item\> elements have radio buttons' labels as their text values. They
1267 can also have some optional XML @em attributes (not properties!):
1268
1269 @beginTable
1270 @hdr3col{attribute, type, description}
1271 @row3col{tooltip, @ref overview_xrcformat_type_string,
1272 Tooltip to show over this ratio button (default: none).}
1273 @row3col{helptext, @ref overview_xrcformat_type_string,
1274 Contextual help for this radio button (default: none).}
1275 @row3col{enabled, @ref overview_xrcformat_type_bool,
1276 Is the button enabled (default: 1)?}
1277 @row3col{hidden, @ref overview_xrcformat_type_bool,
1278 Is the button hidden initially (default: 0)?}
1279 @endTable
1280
1281 Example:
1282 @code
1283 <object class="wxRadioBox" name="controls_radiobox">
1284 <style>wxRA_SPECIFY_COLS</style>
1285 <label>Radio stations</label>
1286 <dimension>1</dimension>
1287 <selection>0</selection>
1288 <content>
1289 <item tooltip="Powerful radio station" helptext="This station is for amateurs of hard rock and heavy metal">Power 108</item>
1290 <item tooltip="Disabled radio station" enabled="0">Power 0</item>
1291 <item tooltip="">WMMS 100.7</item>
1292 <item tooltip="E=mc^2">Energy 98.3</item>
1293 <item helptext="Favourite chukcha's radio">CHUM FM</item>
1294 <item>92FM</item>
1295 <item hidden="1">Very quit station</item>
1296 </content>
1297 </object>
1298 @endcode
1299
1300
1301 @subsubsection xrc_wxrichtextctrl wxRichTextCtrl
1302
1303 @beginTable
1304 @hdr3col{property, type, description}
1305 @row3col{value, @ref overview_xrcformat_type_text,
1306 Initial value of the control (default: empty).}
1307 @row3col{maxlength, integer,
1308 Maximum length of the text entered (default: unlimited).}
1309 @endTable
1310
1311
1312 @subsubsection xrc_wxscrollbar wxScrollBar
1313
1314 @beginTable
1315 @hdr3col{property, type, description}
1316 @row3col{value, integer,
1317 Initial position of the scrollbar (default: 0).}
1318 @row3col{range, integer,
1319 Maximum value of the gauge (default: 10).}
1320 @row3col{thumbsize, integer,
1321 Size of the thumb (default: 1).}
1322 @row3col{pagesize, integer,
1323 Page size (default: 1).}
1324 @endTable
1325
1326 @subsubsection xrc_wxscrolledwindow wxScrolledWindow
1327
1328 @beginTable
1329 @hdr3col{property, type, description}
1330 @row3col{scrollrate, @ref overview_xrcformat_type_size,
1331 Scroll rate in @em x and @em y directions (default: not set;
1332 required if the window has a sizer child).}
1333 @endTable
1334
1335 wxScrolledWindow may have optional children: either exactly one
1336 @ref overview_xrcformat_sizers "sizer" child or any number of non-toplevel window
1337 objects. If sizer child is used, wxSizer::FitInside() is used (instead of
1338 wxSizer::Fit() as usual) and so the children don't determine scrolled window's
1339 minimal size, they only affect @em virtual size. Usually, both @c scrollrate
1340 and either @c size or @c minsize on containing sizer item should be used
1341 in this case.
1342
1343
1344 @subsubsection xrc_wxsimplehtmllistbox wxSimpleHtmlListBox
1345
1346 wxSimpleHtmlListBox has same properties as @ref xrc_wxlistbox "wxListBox".
1347 The only difference is that the text contained in @c \<item\> elements is
1348 HTML markup. Note that the markup has to be escaped:
1349
1350 @code
1351 <object class="wxSimpleHtmlListBox">
1352 <content>
1353 <item>&lt;b&gt;Bold&lt;/b&gt; Milk</item>
1354 </content>
1355 </object>
1356 @endcode
1357
1358 (X)HTML markup elements cannot be included directly:
1359
1360 @code
1361 <object class="wxSimpleHtmlListBox">
1362 <content>
1363 <!-- This is incorrect, doesn't work! -->
1364 <item><b>Bold</b> Milk</item>
1365 </content>
1366 </object>
1367 @endcode
1368
1369
1370 @subsubsection xrc_wxslider wxSlider
1371
1372 @beginTable
1373 @hdr3col{property, type, description}
1374 @row3col{value, integer,
1375 Initial value of the control (default: 0).}
1376 @row3col{min, integer,
1377 Minimum allowed value (default: 0).}
1378 @row3col{max, integer,
1379 Maximum allowed value (default: 100).}
1380 @row3col{pagesize, integer,
1381 Line size; number of steps the slider moves when the user moves
1382 pages up or down (default: unset).}
1383 @row3col{linesize, integer,
1384 Line size; number of steps the slider moves when the user moves it
1385 up or down a line (default: unset).}
1386 @row3col{tickfreq, integer,
1387 Tick marks frequency (Windows only; default: unset).}
1388 @row3col{tick, integer,
1389 Tick position (Windows only; default: unset).}
1390 @row3col{thumb, integer,
1391 Thumb length (Windows only; default: unset).}
1392 @row3col{selmin, integer,
1393 Selection start position (Windows only; default: unset).}
1394 @row3col{selmax, integer,
1395 Selection end position (Windows only; default: unset).}
1396 @endTable
1397
1398
1399 @subsubsection xrc_wxspinbutton wxSpinButton
1400
1401 @beginTable
1402 @hdr3col{property, type, description}
1403 @row3col{value, integer,
1404 Initial value of the control (default: 0).}
1405 @row3col{min, integer,
1406 Minimum allowed value (default: 0).}
1407 @row3col{max, integer,
1408 Maximum allowed value (default: 100).}
1409 @endTable
1410
1411
1412 @subsubsection xrc_wxspinctrl wxSpinCtrl
1413
1414 wxSpinCtrl supports the properties as @ref xrc_wxspinbutton.
1415
1416
1417 @subsubsection xrc_wxsplitterwindow wxSplitterWindow
1418
1419 @beginTable
1420 @hdr3col{property, type, description}
1421 @row3col{orientation, @ref overview_xrcformat_type_string,
1422 Orientation of the splitter, either "vertical" or "horizontal" (default: horizontal).}
1423 @row3col{sashpos, integer,
1424 Initial position of the sash (default: 0).}
1425 @row3col{minsize, integer,
1426 Minimum child size (default: not set).}
1427 @row3col{minsize, @ref overview_xrcformat_type_float,
1428 Sash gravity, see wxSplitterWindow::SetSashGravity() (default: not set).}
1429 @endTable
1430
1431 wxSplitterWindow must have one or two children that are non-toplevel window
1432 objects. If there's only one child, it is used as wxSplitterWindow's only
1433 visible child. If there are two children, the first one is used for left/top
1434 child and the second one for right/bottom child window.
1435
1436
1437 @subsubsection xrc_wxsearchctrl wxSearchCtrl
1438
1439 @beginTable
1440 @hdr3col{property, type, description}
1441 @row3col{value, @ref overview_xrcformat_type_text,
1442 Initial value of the control (default: empty).}
1443 @endTable
1444
1445
1446 @subsubsection xrc_wxstatusbar wxStatusBar
1447
1448 @beginTable
1449 @hdr3col{property, type, description}
1450 @row3col{fields, integer,
1451 Number of status bar fields (default: 1).}
1452 @row3col{widths, @ref overview_xrcformat_type_string,
1453 Comma-separated list of @em fields integers. Each value specifies width
1454 of one field; the values are interpreted using the same convention used
1455 by wxStatusBar::SetStatusWidths().}
1456 @row3col{styles, @ref overview_xrcformat_type_string,
1457 Comma-separated list of @em fields flags. Each value specifies status bar
1458 fieldd style and can be one of @c wxSB_NORMAL, @c wxSB_FLAT or
1459 @c wxSB_RAISED. See wxStatusBar::SetStatusStyles() for their description.}
1460 @endTable
1461
1462
1463
1464 @subsubsection xrc_wxstaticbitmap wxStaticBitmap
1465
1466 @beginTable
1467 @hdr3col{property, type, description}
1468 @row3col{bitmap, @ref overview_xrcformat_type_bitmap,
1469 Bitmap to display (required).}
1470 @endTable
1471
1472 @subsubsection xrc_wxstaticbox wxStaticBox
1473
1474 @beginTable
1475 @hdr3col{property, type, description}
1476 @row3col{label, @ref overview_xrcformat_type_text,
1477 Static box's label (required).}
1478 @endTable
1479
1480
1481 @subsubsection xrc_wxstaticline wxStaticLine
1482
1483 No additional properties.
1484
1485
1486 @subsubsection xrc_wxstatictext wxStaticText
1487
1488 @beginTable
1489 @hdr3col{property, type, description}
1490 @row3col{label, @ref overview_xrcformat_type_text,
1491 Label to display (required).}
1492 @row3col{wrap, integer,
1493 Number of characters per line to wrap the text for, see
1494 wxStaticText::Wrap() (default: no wrap).}
1495 @endTable
1496
1497 @subsubsection xrc_wxtextctrl wxTextCtrl
1498
1499 @beginTable
1500 @hdr3col{property, type, description}
1501 @row3col{value, @ref overview_xrcformat_type_text,
1502 Initial value of the control (default: empty).}
1503 @row3col{maxlength, integer,
1504 Maximum length of the text which can be entered by user (default: unlimited).}
1505 @endTable
1506
1507
1508 @subsubsection xrc_wxtogglebuttton wxToggleButton
1509
1510 @beginTable
1511 @hdr3col{property, type, description}
1512 @row3col{label, @ref overview_xrcformat_type_text,
1513 Label to display on the button (required).}
1514 @row3col{checked, @ref overview_xrcformat_type_bool,
1515 Should the button be checked/pressed initially (default: 0)?}
1516 @endTable
1517
1518 @subsubsection xrc_wxtoolbar wxToolBar
1519
1520 @beginTable
1521 @hdr3col{property, type, description}
1522 @row3col{bitmapsize, @ref overview_xrcformat_type_size,
1523 Size of toolbar bitmaps (default: not set).}
1524 @row3col{margins, @ref overview_xrcformat_type_size,
1525 Margins (default: platform default).}
1526 @row3col{packing, integer,
1527 Packing, see wxToolBar::SetToolPacking() (default: not set).}
1528 @row3col{separation, integer,
1529 Default separator size, see wxToolBar::SetToolSeparation() (default: not set).}
1530 @row3col{dontattachtoframe, @ref overview_xrcformat_type_bool,
1531 If set to 0 and the toolbar object is child of a wxFrame,
1532 wxFrame::SetToolBar() is called; otherwise, you have to add it to a frame
1533 manually. The toolbar is attached by default, you have to set this property
1534 to 1 to disable this behaviour (default: 0).}
1535 @endTable
1536
1537 A toolbar can have one or more child objects of any wxControl-derived class or
1538 one of two pseudo-classes: @c separator or @c tool.
1539
1540 The @c separator pseudo-class is used to insert separators into the toolbar and
1541 has neither properties nor children.
1542
1543 The @c tool pseudo-class objects specify toolbar buttons and have the following
1544 properties:
1545
1546 @beginTable
1547 @hdr3col{property, type, description}
1548 @row3col{bitmap, @ref overview_xrcformat_type_bitmap,
1549 Tool's bitmap (required).}
1550 @row3col{bitmap2, @ref overview_xrcformat_type_bitmap,
1551 Bitmap for disabled tool (default: derived from @c bitmap).}
1552 @row3col{label, @ref overview_xrcformat_type_text,
1553 Label to display on the tool (default: no label).}
1554 @row3col{radio, @ref overview_xrcformat_type_bool,
1555 Item's kind is wxITEM_RADIO (default: 0)?}
1556 @row3col{toggle, @ref overview_xrcformat_type_bool,
1557 Item's kind is wxITEM_CHECK (default: 0)?}
1558 @row3col{dropdown, see below,
1559 Item's kind is wxITEM_DROPDOWN (default: 0)? (only available since wxWidgets 2.9.0)}
1560 @row3col{tooltip, @ref overview_xrcformat_type_text,
1561 Tooltip to use for the tool (default: none).}
1562 @row3col{longhelp, @ref overview_xrcformat_type_text,
1563 Help text shown in statusbar when the mouse is on the tool (default: none).}
1564 @row3col{disabled, @ref overview_xrcformat_type_bool,
1565 Is the tool initially disabled (default: 0)?}
1566 @endTable
1567
1568 The presence of a @c dropdown property indicates that the tool is of type
1569 wxITEM_DROPDOWN. It must be either empty or contain exactly one @ref
1570 xrc_wxmenu child object defining the drop-down button associated menu.
1571
1572 Notice that @c radio, @c toggle and @c dropdown are mutually exclusive.
1573
1574 Children that are neither @c tool nor @c separator must be instances of classes
1575 derived from wxControl and are added to the toolbar using
1576 wxToolBar::AddControl().
1577
1578 Example:
1579 @code
1580 <object class="wxToolBar">
1581 <style>wxTB_FLAT|wxTB_NODIVIDER</style>
1582 <object class="tool" name="foo">
1583 <bitmap>foo.png</bitmap>
1584 <label>Foo</label>
1585 </object>
1586 <object class="tool" name="bar">
1587 <bitmap>bar.png</bitmap>
1588 <label>Bar</label>
1589 </object>
1590 <object class="tool" name="view_auto">
1591 <bitmap>view.png</bitmap>
1592 <label>View</label>
1593 <dropdown>
1594 <object class="wxMenu">
1595 <object class="wxMenuItem" name="view_as_text">
1596 <label>View as text</label>
1597 </object>
1598 <object class="wxMenuItem" name="view_as_hex">
1599 <label>View as binary</label>
1600 </object>
1601 </object>
1602 </dropdown>
1603 </object>
1604 <object class="separator"/>
1605 <object class="wxComboBox">
1606 <content>
1607 <item>Just</item>
1608 <item>a combobox</item>
1609 <item>in the toolbar</item>
1610 </content>
1611 </object>
1612 </object>
1613
1614 @endcode
1615
1616
1617 @subsubsection xrc_wxtreectrl wxTreeCtrl
1618
1619 A treectrl can have one child object of the @ref xrc_wximagelist class.
1620
1621 No additional properties.
1622
1623
1624 @subsubsection xrc_wxtreebook wxTreebook
1625
1626 A treebook can have one or more child objects of the @c treebookpage
1627 pseudo-class (similarly to @ref xrc_wxnotebook "wxNotebook" and its
1628 @c notebookpage) and one child object of the @ref xrc_wximagelist class.
1629 @c treebookpage objects have the following properties:
1630
1631 @beginTable
1632 @hdr3col{property, type, description}
1633 @row3col{depth, integer,
1634 Page's depth in the labels tree (required; see below).}
1635 @row3col{label, @ref overview_xrcformat_type_text,
1636 Sheet page's title (required).}
1637 @row3col{bitmap, @ref overview_xrcformat_type_bitmap,
1638 Bitmap shown alongside the label (default: none).}
1639 @row3col{image, integer,
1640 The zero-based index of the image associated with the item
1641 into the image list.}
1642 @row3col{selected, @ref overview_xrcformat_type_bool,
1643 Is the page selected initially (only one page can be selected; default: 0)?}
1644 @endTable
1645
1646 Each @c treebookpage has exactly one non-toplevel window as its child.
1647
1648 The tree of labels is not described using nested @c treebookpage objects, but
1649 using the @em depth property. Toplevel pages have depth 0, their child pages
1650 have depth 1 and so on. A @c treebookpage's label is inserted as child of
1651 the latest preceding page with depth equal to @em depth-1. For example, this
1652 XRC markup:
1653
1654 @code
1655 <object class="wxTreebook">
1656 ...
1657 <object class="treebookpage">
1658 <depth>0</depth>
1659 <label>Page 1</label>
1660 <object class="wxPanel">...</object>
1661 </object>
1662 <object class="treebookpage">
1663 <depth>1</depth>
1664 <label>Subpage 1A</label>
1665 <object class="wxPanel">...</object>
1666 </object>
1667 <object class="treebookpage">
1668 <depth>2</depth>
1669 <label>Subsubpage 1</label>
1670 <object class="wxPanel">...</object>
1671 </object>
1672 <object class="treebookpage">
1673 <depth>1</depth>
1674 <label>Subpage 1B</label>
1675 <object class="wxPanel">...</object>
1676 </object>
1677 <object class="treebookpage">
1678 <depth>2</depth>
1679 <label>Subsubpage 2</label>
1680 <object class="wxPanel">...</object>
1681 </object>
1682 <object class="treebookpage">
1683 <depth>0</depth>
1684 <label>Page 2</label>
1685 <object class="wxPanel">...</object>
1686 </object>
1687 </object>
1688 @endcode
1689
1690 corresponds to the following tree of labels:
1691
1692 - Page 1
1693 - Subpage 1A
1694 - Subsubpage 1
1695 - Subpage 1B
1696 - Subsubpage 2
1697 - Page 2
1698
1699
1700 @subsubsection xrc_wxwizard wxWizard
1701
1702 @beginTable
1703 @hdr3col{property, type, description}
1704 @row3col{bitmap, @ref overview_xrcformat_type_bitmap,
1705 Bitmap to display on the left side of the wizard (default: none).}
1706 @endTable
1707
1708 A wizard object can have one or more child objects of the wxWizardPage or
1709 wxWizardPageSimple classes. They both support the following properties
1710 (in addition to @ref overview_xrcformat_std_props):
1711
1712 @beginTable
1713 @hdr3col{property, type, description}
1714 @row3col{bitmap, @ref overview_xrcformat_type_bitmap,
1715 Page-specific bitmap (default: none).}
1716 @endTable
1717
1718 wxWizardPageSimple pages are automatically chained together; wxWizardPage pages
1719 transitions must be handled programatically.
1720
1721
1722 @section overview_xrcformat_sizers Sizers
1723
1724 Sizers are handled slightly differently in XRC resources than they are in
1725 wxWindow hierarchy. wxWindow's sizers hierarchy is parallel to the wxWindow
1726 children hieararchy: child windows are children of their parent window and
1727 the sizer (or sizers) form separate hierarchy attached to the window with
1728 wxWindow::SetSizer().
1729
1730 In XRC, the two hierarchies are merged together: sizers are children of other
1731 sizers or windows and they can contain child window objects.
1732
1733 If a sizer is child of a window object in the resource, it must be the only
1734 child and it will be attached to the parent with wxWindow::SetSizer().
1735 Additionally, if the window doesn't have its size explicitly set,
1736 wxSizer::Fit() is used to resize the window. If the parent window is
1737 toplevel window, wxSizer::SetSizeHints() is called to set its hints.
1738
1739 A sizer object can have one or more child objects of one of two pseudo-classes:
1740 @c sizeritem or @c spacer (see @ref overview_xrcformat_wxstddialogbuttonsizer for
1741 an exception). The former specifies an element (another sizer or a window)
1742 to include in the sizer, the latter adds empty space to the sizer.
1743
1744 @c sizeritem objects have exactly one child object: either another sizer
1745 object, or a window object. @c spacer objects don't have any children, but
1746 they have one property:
1747
1748 @beginTable
1749 @hdr3col{property, type, description}
1750 @row3col{size, @ref overview_xrcformat_type_size, Size of the empty space (required).}
1751 @endTable
1752
1753 Both @c sizeritem and @c spacer objects can have any of the following
1754 properties:
1755
1756 @beginTable
1757 @hdr3col{property, type, description}
1758 @row3col{option, integer,
1759 The "option" value for sizers. Used by wxBoxSizer to set proportion of
1760 the item in the growable direction (default: 0).}
1761 @row3col{flag, @ref overview_xrcformat_type_style,
1762 wxSizerItem flags (default: 0).}
1763 @row3col{border, @ref overview_xrcformat_type_dimension,
1764 Size of the border around the item (directions are specified in flags)
1765 (default: 0).}
1766 @row3col{minsize, @ref overview_xrcformat_type_size,
1767 Minimal size of this item (default: no min size).}
1768 @row3col{ratio, @ref overview_xrcformat_type_size,
1769 Item ratio, see wxSizer::SetRatio() (default: no ratio).}
1770 @row3col{cellpos, @ref overview_xrcformat_type_pos,
1771 (wxGridBagSizer only) Position, see wxGBSizerItem::SetPos() (required). }
1772 @row3col{cellspan, @ref overview_xrcformat_type_size,
1773 (wxGridBagSizer only) Span, see wxGBSizerItem::SetSpan() (required). }
1774 @endTable
1775
1776 Example of sizers XRC code:
1777 @code
1778 <object class="wxDialog" name="derived_dialog">
1779 <title>Derived Dialog Example</title>
1780 <centered>1</centered>
1781 <!-- this sizer is set to be this dialog's sizer: -->
1782 <object class="wxFlexGridSizer">
1783 <cols>1</cols>
1784 <rows>0</rows>
1785 <vgap>0</vgap>
1786 <hgap>0</hgap>
1787 <growablecols>0</growablecols>
1788 <growablerows>0</growablerows>
1789 <object class="sizeritem">
1790 <flag>wxALIGN_CENTRE|wxALL</flag>
1791 <border>5</border>
1792 <object class="wxButton" name="my_button">
1793 <label>My Button</label>
1794 </object>
1795 </object>
1796 <object class="sizeritem">
1797 <flag>wxALIGN_CENTRE|wxALL</flag>
1798 <border>5</border>
1799 <object class="wxBoxSizer">
1800 <orient>wxHORIZONTAL</orient>
1801 <object class="sizeritem">
1802 <flag>wxALIGN_CENTRE|wxALL</flag>
1803 <border>5</border>
1804 <object class="wxCheckBox" name="my_checkbox">
1805 <label>Enable this text control:</label>
1806 </object>
1807 </object>
1808 <object class="sizeritem">
1809 <flag>wxALIGN_CENTRE|wxALL</flag>
1810 <border>5</border>
1811 <object class="wxTextCtrl" name="my_textctrl">
1812 <size>80,-1</size>
1813 <value></value>
1814 </object>
1815 </object>
1816 </object>
1817 </object>
1818 ...
1819 </object>
1820 </object>
1821 @endcode
1822
1823 The sizer classes that can be used are listed below, together with their
1824 class-specific properties. All classes support the following properties:
1825
1826 @beginTable
1827 @hdr3col{property, type, description}
1828 @row3col{minsize, @ref overview_xrcformat_type_size,
1829 Minimal size that this sizer will have, see wxSizer::SetMinSize()
1830 (default: no min size).}
1831 @endTable
1832
1833 @subsection overview_xrcformat_wxboxsizer wxBoxSizer
1834
1835 @beginTable
1836 @hdr3col{property, type, description}
1837 @row3col{orient, @ref overview_xrcformat_type_style,
1838 Sizer orientation, "wxHORIZONTAL" or "wxVERTICAL" (default: wxHORIZONTAL).}
1839 @endTable
1840
1841 @subsection overview_xrcformat_wxstaticsboxizer wxStaticBoxSizer
1842
1843 @beginTable
1844 @hdr3col{property, type, description}
1845 @row3col{orient, @ref overview_xrcformat_type_style,
1846 Sizer orientation, "wxHORIZONTAL" or "wxVERTICAL" (default: wxHORIZONTAL).}
1847 @row3col{label, @ref overview_xrcformat_type_text,
1848 Label to be used for the static box around the sizer (required).}
1849 @endTable
1850
1851 @subsection overview_xrcformat_wxgridsizer wxGridSizer
1852
1853 @beginTable
1854 @hdr3col{property, type, description}
1855 @row3col{rows, integer, Number of rows in the grid (default: 0 - determine automatically).}
1856 @row3col{cols, integer, Number of columns in the grid (default: 0 - determine automatically).}
1857 @row3col{vgap, integer, Vertical gap between children (default: 0).}
1858 @row3col{hgap, integer, Horizontal gap between children (default: 0).}
1859 @endTable
1860
1861 @subsection overview_xrcformat_wxflexgridsizer wxFlexGridSizer
1862
1863 @beginTable
1864 @hdr3col{property, type, description}
1865 @row3col{rows, integer, Number of rows in the grid (default: 0 - determine automatically).}
1866 @row3col{cols, integer, Number of columns in the grid (default: 0 - determine automatically).}
1867 @row3col{vgap, integer, Vertical gap between children (default: 0).}
1868 @row3col{hgap, integer, Horizontal gap between children (default: 0).}
1869 @row3col{growablerows, comma-separated integers list,
1870 Comma-separated list of indexes of rows that are growable
1871 (default: none).}
1872 @row3col{growablecols, comma-separated integers list,
1873 Comma-separated list of indexes of columns that are growable
1874 (default: none).}
1875 @endTable
1876
1877 @subsection overview_xrcformat_wxgridbagsizer wxGridBagSizer
1878
1879 @beginTable
1880 @hdr3col{property, type, description}
1881 @row3col{vgap, integer, Vertical gap between children (default: 0).}
1882 @row3col{hgap, integer, Horizontal gap between children (default: 0).}
1883 @row3col{growablerows, comma-separated integers list,
1884 Comma-separated list of indexes of rows that are growable
1885 (default: none).}
1886 @row3col{growablecols, comma-separated integers list,
1887 Comma-separated list of indexes of columns that are growable
1888 (default: none).}
1889 @endTable
1890
1891 @subsection overview_xrcformat_wxwrapsizer wxWrapSizer
1892
1893 @beginTable
1894 @hdr3col{property, type, description}
1895 @row3col{orient, @ref overview_xrcformat_type_style,
1896 Sizer orientation, "wxHORIZONTAL" or "wxVERTICAL" (required).}
1897 @row3col{flag, @ref overview_xrcformat_type_style, wxWrapSizer flags (default: 0).}
1898 @endTable
1899
1900 @subsection overview_xrcformat_wxstddialogbuttonsizer wxStdDialogButtonSizer
1901
1902 Unlike other sizers, wxStdDialogButtonSizer doesn't have neither @c sizeritem
1903 nor @c spacer children. Instead, it has one or more children of the
1904 @c button pseudo-class. @c button objects have no properties and they must
1905 always have exactly one child of the @c wxButton class or a class derived from
1906 wxButton.
1907
1908 Example:
1909 @code
1910 <object class="wxStdDialogButtonSizer">
1911 <object class="button">
1912 <object class="wxButton" name="wxID_OK">
1913 <label>OK</label>
1914 </object>
1915 </object>
1916 <object class="button">
1917 <object class="wxButton" name="wxID_CANCEL">
1918 <label>Cancel</label>
1919 </object>
1920 </object>
1921 </object>
1922 @endcode
1923
1924
1925
1926 @section overview_xrcformat_other_objects Other Objects
1927
1928 In addition to describing UI elements, XRC files can contain non-windows
1929 objects such as bitmaps or icons. This is a concession to Windows developers
1930 used to storing them in Win32 resources.
1931
1932 Note that unlike Win32 resources, bitmaps included in XRC files are @em not
1933 embedded in the XRC file itself. XRC file only contains a reference to another
1934 file with bitmap data.
1935
1936 @subsection overview_xrcformat_bitmap wxBitmap
1937
1938 Bitmaps are stored in @c \<object\> element with class set to @c wxBitmap. Such
1939 bitmaps can then be loaded using wxXmlResource::LoadBitmap(). The content of
1940 the element is exactly same as in the case of
1941 @ref overview_xrcformat_type_bitmap "bitmap properties", except that toplevel
1942 @c \<object\> is used.
1943
1944 For example, instead of:
1945 @code
1946 <bitmap>mybmp.png</bitmap>
1947 <bitmap stock_id="wxART_NEW"/>
1948 @endcode
1949 toplevel wxBitmap resources would look like:
1950 @code
1951 <object class="wxBitmap" name="my_bitmap">mybmp.png</object>
1952 <object class="wxBitmap" name="my_new_bitmap" stock_id="wxART_NEW"/>
1953 @endcode
1954
1955
1956 @subsection overview_xrcformat_icon wxIcon
1957
1958 wxIcon resources are identical to @ref overview_xrcformat_bitmap "wxBitmap ones",
1959 except that the class is @c wxIcon.
1960
1961
1962 @section overview_xrcformat_platform Platform Specific Content
1963
1964 It is possible to conditionally process parts of XRC files on some platforms
1965 only and ignore them on other platforms. @em Any element in XRC file, be it
1966 toplevel or arbitrarily nested one, can have the @c platform attribute. When
1967 used, @c platform contains |-separated list of platforms that this element
1968 should be processed on. It is filtered out and ignored on any other platforms.
1969
1970 Possible elemental values are:
1971 @beginDefList
1972 @itemdef{ @c win, Windows }
1973 @itemdef{ @c mac, Mac OS X (or Mac Classic in wxWidgets version supporting it }
1974 @itemdef{ @c unix, Any Unix platform @em except OS X }
1975 @itemdef{ @c os2, OS/2 }
1976 @endDefList
1977
1978 Examples:
1979 @code
1980 <label platform="win">Windows</label>
1981 <label platform="unix">Unix</label>
1982 <label platform="mac">Mac OS X</label>
1983 <help platform="mac|unix">Not a Windows machine</help>
1984 @endcode
1985
1986
1987
1988 @section overview_xrcformat_extending Extending the XRC Format
1989
1990 The XRC format is designed to be extensible and allows specifying and loading
1991 custom controls. The three available mechanisms are described in the rest of
1992 this section in the order of increasing complexity.
1993
1994 @subsection overview_xrcformat_extending_subclass Subclassing
1995
1996 The simplest way to add custom controls is to set the @c subclass attribute
1997 of @c \<object\> element:
1998
1999 @code
2000 <object name="my_value" class="wxTextCtrl" subclass="MyTextCtrl">
2001 <style>wxTE_MULTILINE</style>
2002 ...etc., setup wxTextCtrl as usual...
2003 </object>
2004 @endcode
2005
2006 In that case, wxXmlResource will create an instance of the specified subclass
2007 (@c MyTextCtrl in the example above) instead of the class (@c wxTextCtrl above)
2008 when loading the resource. However, the rest of the object's loading (calling
2009 its Create() method, setting its properties, loading any children etc.)
2010 will proceed in @em exactly the same way as it would without @c subclass
2011 attribute. In other words, this approach is only sufficient when the custom
2012 class is just a small modification (e.g. overridden methods or customized
2013 events handling) of an already supported classes.
2014
2015 The subclass must satisfy a number of requirements:
2016
2017 -# It must be derived from the class specified in @c class attribute.
2018 -# It must be visible in wxWidget's pseudo-RTTI mechanism, i.e. there must be
2019 a DECLARE_DYNAMIC_CLASS() entry for it.
2020 -# It must support two-phase creation. In particular, this means that it has
2021 to have default constructor.
2022 -# It cannot provide custom Create() method and must be constructible using
2023 base @c class' Create() method (this is because XRC will call Create() of
2024 @c class, not @c subclass). In other words, @em creation of the control
2025 must not be customized.
2026
2027
2028 @subsection overview_xrcformat_extending_unknown Unknown Objects
2029
2030 A more flexible solution is to put a @em placeholder in the XRC file and
2031 replace it with custom control after the resource is loaded. This is done by
2032 using the @c unknown pseudo-class:
2033
2034 @code
2035 <object class="unknown" name="my_placeholder"/>
2036 @endcode
2037
2038 The placeholder is inserted as dummy wxPanel that will hold custom control in
2039 it. At runtime, after the resource is loaded and a window created from it
2040 (using e.g. wxXmlResource::LoadDialog()), use code must call
2041 wxXmlResource::AttachUnknownControl() to insert the desired control into
2042 placeholder container.
2043
2044 This method makes it possible to insert controls that are not known to XRC at
2045 all, but it's also impossible to configure the control in XRC description in
2046 any way. The only properties that can be specified are
2047 the @ref overview_xrcformat_std_props "standard window properties".
2048
2049 @note @c unknown class cannot be combined with @c subclass attribute,
2050 they are mutually exclusive.
2051
2052
2053 @subsection overview_xrcformat_extending_custom Adding Custom Classes
2054
2055 Finally, XRC allows adding completely new classes in addition to the ones
2056 listed in this document. A class for which wxXmlResourceHandler is implemented
2057 can be used as first-class object in XRC simply by passing class name as the
2058 value of @c class attribute:
2059
2060 @code
2061 <object name="my_ctrl" class="MyWidget">
2062 <my_prop>foo</my_prop>
2063 ...etc., whatever MyWidget handler accepts...
2064 </object>
2065 @endcode
2066
2067 The only requirements on the class are that
2068 -# the class must derive from wxObject
2069 -# it must support wxWidget's pseudo-RTTI mechanism
2070
2071 Child elements of @c \<object\> are handled by the custom handler and there are
2072 no limitations on them imposed by XRC format.
2073
2074 This is the only mechanism that works for toplevel objects -- custom controls
2075 are accessible using type-unsafe wxXmlResource::LoadObject() method.
2076
2077
2078
2079 @section overview_xrcformat_packed Packed XRC Files
2080
2081 In addition to plain XRC files, wxXmlResource supports (if wxFileSystem support
2082 is compiled in) compressed XRC resources. Compressed resources have either
2083 .zip or .xrs extension and are simply ZIP files that contain arbitrary
2084 number of XRC files and their dependencies (bitmaps, icons etc.).
2085
2086
2087
2088 @section overview_xrcformat_oldversions Older Format Versions
2089
2090 This section describes differences in older revisions of XRC format (i.e.
2091 files with older values of @c version attribute of @c \<resource\>).
2092
2093
2094 @subsection overview_xrcformat_pre_v2530 Versions Before 2.5.3.0
2095
2096 Version 2.5.3.0 introduced C-like handling of "\\" in text. In older versions,
2097 "\n", "\t" and "\r" escape sequences were replaced with respective characters
2098 in the same matter it's done in C, but "\\" was left intact instead of being
2099 replaced with single "\", as one would expect. Starting with 2.5.3.0, all of
2100 them are handled in C-like manner.
2101
2102
2103 @subsection overview_xrcformat_pre_v2301 Versions Before 2.3.0.1
2104
2105 Prior to version 2.3.0.1, "$" was used for accelerators instead of "_"
2106 or "&amp;". For example,
2107 @code
2108 <label>$File</label>
2109 @endcode
2110 was used in place of current version's
2111 @code
2112 <label>_File</label>
2113 @endcode
2114 (or "&amp;File").
2115
2116 */