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