• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/docs/latex/wx/

Lines Matching refs:XRC

8 The XML-based resource system, known as XRC, allows user interface elements such as
10 the application at run-time. XRC files can also be compiled into binary XRS files or C++
14 There are several advantages to using XRC resources.
23 \item The XRC format uses sizers for flexibility, allowing dialogs to be resizable
25 \item The XRC format is a wxWidgets standard,
30 XRC was written by Vaclav Slavik.
32 \subsection{XRC concepts}\label{xrcconcepts}
34 These are the typical steps for using XRC files in your application.
44 \item set up event tables as usual but use the {\tt XRCID(str)} macro to translate from XRC string names
48 To create an XRC file, you can use one of the following methods.
57 \item use \urlref{wxGlade}{http://wxglade.sf.net}, a GUI designer written in wxPython. At the moment it can generate Python, C++ and XRC;
58 \item convert WIN32 RC files to XRC with the tool in {\tt contrib/utils/convertrc}.
61 A complete list of third-party tools that write to XRC can be found at \urlref{www.wxwidgets.org/wiki/index.php/Tools}{http://www.wxwidgets.org/wiki/index.php/Tools}.
64 XRC files by hand.
67 You can pass an XRC file (XML-based text resource file)
68 or a \helpref{zip-compressed file}{binaryresourcefiles} (extension ZIP or XRS) containing other XRC.
75 (the input XRC files) and the following switches and options:
81 containing class definitions for the windows defined by the XRC file (see special subsection)
114 exe file). XRC provides means to convert resources into regular C++ file that
130 \subsection{XRC C++ sample}\label{xrccppsample}
132 This is the C++ source file (xrcdemo.cpp) for the XRC sample.
254 \subsection{XRC resource file sample}\label{xrcsample}
256 This is the XML file (resource.xrc) for the XRC sample.
415 \subsection{XRC file format}\label{xrcfileformat}
423 containing class definitions for the GUI windows defined in the XRC file.
424 This code generation can make it easier to use XRC and automate program
427 programmer from dealing with most of the XRC specifics (e.g. {\tt XRCCTRL}).
429 For each top level window defined in the XRC file a C++ class definition is
432 all XRC loading is done and all class members representing widgets are initialized.
435 a XRC file defining a top level window {\tt TestWnd\_Base}, which subclasses {\tt wxFrame} (any
437 The XRC file and corresponding class definition in the header file will be something like: