+\begin{verbatim}
+ <?xml version="1.0" encoding="utf-8">
+ <resource version="2.3.0.1">
+ <object class="wxPanel">
+ <style>wxSUNKEN_BORDER</style>
+ <object class="wxStaticText">
+ <label>A label</label>
+ <pos>10,10</pos>
+ </object>
+ </object>
+ </resource>
+\end{verbatim}
+
+\subsubsection{XRC format high-level description}
+
+An XRC resource file is a well-formed XML 1.0 document.
+
+The root node of XRC document must be <resource>. The <resource> node has
+optional {\it version} property. Default version (in absence of the version
+property) is "0.0.0.0". The version consists of four integers separated by
+periods. Version of XRC format changes only if there was an incompatible
+change introduced (i.e. either the library cannot understand old resource
+files or older versions of the library wouldn't understand the new format).
+The first three integers are major, minor and release number of the wxWindows
+release when the change was introduced, the last one is revision number and
+is 0 for the first incompatible change in given wxWindows release, 1 for
+the second, and so on.
+
+Differences between versions are described within this document in paragraphs
+entitled {\it Version Note}.
+
+The <resource> node is only allowed to have <object> and <object_ref>
+subnodes, all of which must have the "name" property.
+
+<object> - TODO (name, class, subclass)
+
+<object_ref> - TODO (name, ref, subclass)
+
+\subsubsection{Common XRC attributes}
+
+Coming soon.
+
+\subsubsection{Supported classes}
+
+Coming soon.
+
+\subsection{Adding new resource handlers}\label{newresourcehandlers}