X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/154b6b0f0eda0007d7ffbbfacff7e57c5861c28b..c63312c472c83be6d3b935f0ceeef484a7d611ce:/docs/latex/wx/xmlres.tex diff --git a/docs/latex/wx/xmlres.tex b/docs/latex/wx/xmlres.tex index c14a210f07..0f924330d2 100644 --- a/docs/latex/wx/xmlres.tex +++ b/docs/latex/wx/xmlres.tex @@ -35,7 +35,9 @@ enum wxXmlResourceFlags \membersection{wxXmlResource::wxXmlResource}\label{wxxmlresourcector} -\func{}{wxXmlResource}{\param{const wxString\& }{filemask}, \param{int }{flags = wxXRC\_USE\_LOCALE}} +\func{}{wxXmlResource}{\param{const wxString\& }{filemask}, + \param{int }{flags = wxXRC\_USE\_LOCALE}, + \param{const wxString& }{domain = wxEmptyString}} Constructor. @@ -46,7 +48,13 @@ load all resource files inside a zip archive.} wxXRC\_NO\_SUBCLASSING: subclass property of object nodes will be ignored (useful for previews in XRC editors).} -\func{}{wxXmlResource}{\param{int }{flags = wxXRC\_USE\_LOCALE}} +\docparam{domain}{The name of the gettext catalog to search for + translatable strings. By default all loaded catalogs will be + searched. This provides a way to allow the strings to only come + from a specific catalog.} + +\func{}{wxXmlResource}{\param{int }{flags = wxXRC\_USE\_LOCALE}, + \param{const wxString& }{domain = wxEmptyString}} Constructor. @@ -56,6 +64,11 @@ wxXRC\_NO\_SUBCLASSING: subclass property of object nodes will be ignored XRC files from being reloaded from disk in case they have been modified there since being last loaded (may slightly speed up loading them).} +\docparam{domain}{The name of the gettext catalog to search for + translatable strings. By default all loaded catalogs will be + searched. This provides a way to allow the strings to only come + from a specific catalog.} + \membersection{wxXmlResource::\destruct{wxXmlResource}}\label{wxxmlresourcedtor} @@ -73,7 +86,8 @@ that the handler name is equal to the control's name plus 'XmlHandler', for exam wxTextCtrlXmlHandler, wxHtmlWindowXmlHandler. The XML resource compiler (wxxrc) can create include file that contains initialization code for all controls used within the resource. Note that this handler should be -located on heap instead of stack, since it will get destroyed on shutdown. +allocated on the heap, since it will be delete by +\helpref{ClearHandlers}{wxxmlresourceclearhandlers} later. \membersection{wxXmlResource::AttachUnknownControl}\label{wxxmlresourceattachunknowncontrol} @@ -88,7 +102,8 @@ Unknown controls are used in conjunction with . \func{void}{ClearHandlers}{\void} -Removes all handlers. +Removes all handlers and deletes them (this means that any handlers added using +\helpref{AddHandler}{wxxmlresourceaddhandler} must be allocated on the heap). \membersection{wxXmlResource::CompareVersion}\label{wxxmlresourcecompareversion} @@ -252,3 +267,20 @@ This function unloads a resource previously loaded by Returns \true if the resource was successfully unloaded and \false if it hasn't been found in the list of loaded resources. + + +\membersection{wxXmlResource::GetDomain}\label{wxxmlresourcegetdomain} + +\func{wxChar*}{GetDomain}{} + +Returns the domain (message catalog) that will be used to load +translatable strings in the XRC. + + +\membersection{wxXmlResource::SetDomain}\label{wxxmlresourcesetdomain} + +\func{wxChar*}{SetDomain}{\param{const wxChar* }{domain}} + +Sets the domain (message catalog) that will be used to load +translatable strings in the XRC. +