moving XRC to the core

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@29233 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Václav Slavík
2004-09-20 19:30:20 +00:00
parent a32f9aaf5f
commit 9a8f051375
10 changed files with 2010 additions and 888 deletions

View File

@@ -5,10 +5,6 @@
Classes: \helpref{wxXmlResource}{wxxmlresource}, \helpref{wxXmlResourceHandler}{wxxmlresourcehandler}
{\bf IMPORTANT NOTE:} XRC is not yet a part of the core wxWidgets library, so
please see the next section for how to compile and link it. Otherwise if you
try to use it, you will get link errors.
The XML-based resource system, known as XRC, allows user interface elements such as
dialogs, menu bars and toolbars, to be stored in text files and loaded into
the application at run-time. XRC files can also be compiled into binary XRS files or C++

View File

@@ -11,10 +11,6 @@ The class holds XML resources from one or more .xml files, binary files or zip a
See \helpref{XML-based resource system overview}{xrcoverview} for details.
{\bf NOTE:} XRC is not yet a part of the core wxWidgets library, so
please see the overview for how to compile and link it. Otherwise if you
try to use it, you will get link errors.
\wxheading{Derived from}
\helpref{wxObject}{wxobject}

View File

@@ -10,10 +10,6 @@ capable of creating a control from an XML node.
See \helpref{XML-based resource system overview}{xrcoverview} for details.
{\bf NOTE:} XRC is not yet a part of the core wxWidgets library, so
please see the overview for how to compile and link it. Otherwise if you
try to use it, you will get link errors.
\wxheading{Derived from}
\helpref{wxObject}{wxobject}

View File

@@ -609,6 +609,10 @@ USE_HTML=0
Do not build wxHTML library. If MONOLITHIC=1, then you must also
#define wxUSE_HTML 1 in setup.h.
USE_XRC=0
Do not build XRC resources library. If MONOLITHIC=1, then you must also
#define wxUSE_HTML 1 in setup.h.
RUNTIME_LIBS=static
Links static version of C and C++ runtime libraries into the executable, so
that the program does not depend on DLLs provided with the compiler (e.g.