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