From: Václav Slavík Date: Sat, 9 Jun 2001 22:43:51 +0000 (+0000) Subject: changed wxXML to XRC, wx/xml/*.h->wx/xrc/*.h X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/78d14f80e9a72041ede52c30d912ec5cef21b1b3 changed wxXML to XRC, wx/xml/*.h->wx/xrc/*.h git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@10490 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/contrib/src/xrc/FORMAT.txt b/contrib/src/xrc/FORMAT.txt new file mode 100644 index 0000000000..6d93b5d28b --- /dev/null +++ b/contrib/src/xrc/FORMAT.txt @@ -0,0 +1,324 @@ + + XML resources file format + =============================== + + 1. Basics +----------- + +XML resource is well-formed XML document, i.e. all tags are paired +and there is only one root node, which is always . + +In the following text, I will use standard XML terminology: + + + + + +Here, tag_one is a node (the word 'tag' refers to the type of the node), +prop1 and prop2 are properties and tag_two is a child node of tag_one. +Property's default value is the value that will be assigned to the property +if you do not specify it explicitly. + +I will use the term "primary node" to refer to nodes than represent controls, +dialogs etc. "Secondary nodes" are nodes used to store data: + + primary + Demo Dialog... secondary + 100,200d secondary + secondary + + + + +In the example above,