2008-03-08 13:52:38 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: xrc/xmlres.h
|
2008-03-10 15:24:38 +00:00
|
|
|
// Purpose: interface of wxXmlResource
|
2008-03-08 13:52:38 +00:00
|
|
|
// Author: wxWidgets team
|
|
|
|
// RCS-ID: $Id$
|
|
|
|
// Licence: wxWindows license
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2008-09-27 12:29:33 +00:00
|
|
|
/**
|
|
|
|
Flags which can be used with wxXmlResource::wxXmlResource.
|
|
|
|
*/
|
|
|
|
enum wxXmlResourceFlags
|
|
|
|
{
|
|
|
|
/** Translatable strings will be translated via _(). */
|
|
|
|
wxXRC_USE_LOCALE = 1,
|
|
|
|
|
|
|
|
/** Subclass property of object nodes will be ignored (useful for previews in XRC editors). */
|
|
|
|
wxXRC_NO_SUBCLASSING = 2,
|
|
|
|
|
|
|
|
/** Prevent the XRC files from being reloaded from disk in case they have been modified there
|
|
|
|
since being last loaded (may slightly speed up loading them). */
|
|
|
|
wxXRC_NO_RELOADING = 4
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2008-03-08 13:52:38 +00:00
|
|
|
/**
|
|
|
|
@class wxXmlResource
|
2008-03-08 14:43:31 +00:00
|
|
|
|
2008-03-08 13:52:38 +00:00
|
|
|
This is the main class for interacting with the XML-based resource system.
|
2008-03-08 14:43:31 +00:00
|
|
|
|
2008-03-08 13:52:38 +00:00
|
|
|
The class holds XML resources from one or more .xml files, binary files or zip
|
|
|
|
archive files.
|
2008-03-08 14:43:31 +00:00
|
|
|
|
2008-10-19 16:07:00 +00:00
|
|
|
@see @ref overview_xrc, @ref overview_xrcformat
|
2008-03-08 14:43:31 +00:00
|
|
|
|
2008-03-08 13:52:38 +00:00
|
|
|
@library{wxxrc}
|
|
|
|
@category{xrc}
|
|
|
|
*/
|
|
|
|
class wxXmlResource : public wxObject
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
/**
|
|
|
|
Constructor.
|
2008-09-27 10:27:44 +00:00
|
|
|
|
2008-09-27 12:29:33 +00:00
|
|
|
@param filemask
|
|
|
|
The XRC file, archive file, or wildcard specification that will be
|
|
|
|
used to load all resource files inside a zip archive.
|
2008-03-08 14:43:31 +00:00
|
|
|
@param flags
|
2008-09-27 12:29:33 +00:00
|
|
|
One or more value of the ::wxXmlResourceFlags enumeration.
|
2008-03-08 14:43:31 +00:00
|
|
|
@param domain
|
2008-09-27 12:29:33 +00:00
|
|
|
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.
|
2008-03-08 13:52:38 +00:00
|
|
|
*/
|
|
|
|
wxXmlResource(const wxString& filemask,
|
|
|
|
int flags = wxXRC_USE_LOCALE,
|
2008-10-28 14:29:36 +00:00
|
|
|
const wxString& domain = wxEmptyString);
|
2008-10-04 20:49:51 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
Constructor.
|
|
|
|
|
|
|
|
@param flags
|
|
|
|
One or more value of the ::wxXmlResourceFlags enumeration.
|
|
|
|
@param 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.
|
|
|
|
*/
|
2008-03-08 14:43:31 +00:00
|
|
|
wxXmlResource(int flags = wxXRC_USE_LOCALE,
|
2008-10-28 14:29:36 +00:00
|
|
|
const wxString& domain = wxEmptyString);
|
2008-03-08 13:52:38 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
Destructor.
|
|
|
|
*/
|
2008-09-27 11:21:10 +00:00
|
|
|
virtual ~wxXmlResource();
|
2008-03-08 13:52:38 +00:00
|
|
|
|
|
|
|
/**
|
2008-09-27 12:29:33 +00:00
|
|
|
Initializes only a specific handler (or custom handler).
|
|
|
|
Convention says that the handler name is equal to the control's name plus
|
|
|
|
'XmlHandler', for example 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 must be allocated on the heap, since it will be
|
|
|
|
deleted by ClearHandlers() later.
|
2008-03-08 13:52:38 +00:00
|
|
|
*/
|
|
|
|
void AddHandler(wxXmlResourceHandler* handler);
|
|
|
|
|
|
|
|
/**
|
|
|
|
Attaches an unknown control to the given panel/window/dialog.
|
2008-09-27 12:29:33 +00:00
|
|
|
Unknown controls are used in conjunction with \<object class="unknown"\>.
|
2008-03-08 13:52:38 +00:00
|
|
|
*/
|
|
|
|
bool AttachUnknownControl(const wxString& name,
|
|
|
|
wxWindow* control,
|
2008-03-09 12:33:59 +00:00
|
|
|
wxWindow* parent = NULL);
|
2008-03-08 13:52:38 +00:00
|
|
|
|
|
|
|
/**
|
2008-09-27 12:29:33 +00:00
|
|
|
Removes all handlers and deletes them (this means that any handlers
|
|
|
|
added using AddHandler() must be allocated on the heap).
|
2008-03-08 13:52:38 +00:00
|
|
|
*/
|
|
|
|
void ClearHandlers();
|
|
|
|
|
|
|
|
/**
|
2008-09-27 12:29:33 +00:00
|
|
|
Compares the XRC version to the argument.
|
|
|
|
|
|
|
|
Returns -1 if the XRC version is less than the argument,
|
|
|
|
+1 if greater, and 0 if they are equal.
|
2008-03-08 13:52:38 +00:00
|
|
|
*/
|
2008-09-27 12:29:33 +00:00
|
|
|
int CompareVersion(int major, int minor, int release, int revision) const;
|
2008-03-08 13:52:38 +00:00
|
|
|
|
2008-10-14 11:44:10 +00:00
|
|
|
/**
|
|
|
|
Returns a string ID corresponding to the given numeric ID.
|
|
|
|
|
|
|
|
The string returned is such that calling GetXRCID() with it as
|
|
|
|
parameter yields @a numId. If there is no string identifier
|
|
|
|
corresponding to the given numeric one, an empty string is returned.
|
|
|
|
|
|
|
|
Notice that, unlike GetXRCID(), this function is slow as it checks all
|
|
|
|
of the identifiers used in XRC.
|
|
|
|
|
|
|
|
@since 2.9.0
|
|
|
|
*/
|
2008-11-15 11:49:24 +00:00
|
|
|
static wxString FindXRCIDById(int numId);
|
2008-10-14 11:44:10 +00:00
|
|
|
|
2008-03-08 13:52:38 +00:00
|
|
|
/**
|
|
|
|
Gets the global resources object or creates one if none exists.
|
|
|
|
*/
|
2008-09-27 11:21:10 +00:00
|
|
|
static wxXmlResource* Get();
|
2008-03-08 13:52:38 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
Returns the domain (message catalog) that will be used to load
|
|
|
|
translatable strings in the XRC.
|
|
|
|
*/
|
2008-09-27 20:26:28 +00:00
|
|
|
const wxString& GetDomain() const;
|
2008-03-08 13:52:38 +00:00
|
|
|
|
|
|
|
/**
|
2008-09-27 12:29:33 +00:00
|
|
|
Returns flags, which may be a bitlist of ::wxXmlResourceFlags
|
|
|
|
enumeration values.
|
2008-03-08 13:52:38 +00:00
|
|
|
*/
|
2008-09-27 11:21:10 +00:00
|
|
|
int GetFlags() const;
|
2008-03-08 13:52:38 +00:00
|
|
|
|
|
|
|
/**
|
2008-09-27 12:29:33 +00:00
|
|
|
Returns version information (a.b.c.d = d + 256*c + 2562*b + 2563*a).
|
2008-03-08 13:52:38 +00:00
|
|
|
*/
|
2008-03-09 16:24:26 +00:00
|
|
|
long GetVersion() const;
|
2008-03-08 13:52:38 +00:00
|
|
|
|
|
|
|
/**
|
2008-09-27 12:29:33 +00:00
|
|
|
Returns a numeric ID that is equivalent to the string ID used in an XML resource.
|
|
|
|
|
|
|
|
If an unknown @a str_id is requested (i.e. other than wxID_XXX or integer),
|
|
|
|
a new record is created which associates the given string with a number.
|
|
|
|
|
|
|
|
If @a value_if_not_found is @c wxID_NONE, the number is obtained via
|
2008-03-10 15:24:38 +00:00
|
|
|
wxNewId(). Otherwise @a value_if_not_found is used.
|
2008-03-08 13:52:38 +00:00
|
|
|
Macro @c XRCID(name) is provided for convenient use in event tables.
|
|
|
|
*/
|
2008-09-27 12:29:33 +00:00
|
|
|
static int GetXRCID(const wxString& str_id, int value_if_not_found = wxID_NONE);
|
2008-03-08 13:52:38 +00:00
|
|
|
|
|
|
|
/**
|
2008-09-27 12:29:33 +00:00
|
|
|
Initializes handlers for all supported controls/windows.
|
|
|
|
|
|
|
|
This will make the executable quite big because it forces linking against
|
2008-03-08 13:52:38 +00:00
|
|
|
most of the wxWidgets library.
|
|
|
|
*/
|
|
|
|
void InitAllHandlers();
|
|
|
|
|
|
|
|
/**
|
|
|
|
Loads resources from XML files that match given filemask.
|
|
|
|
This method understands VFS (see filesys.h).
|
|
|
|
*/
|
|
|
|
bool Load(const wxString& filemask);
|
|
|
|
|
|
|
|
/**
|
|
|
|
Loads a bitmap resource from a file.
|
|
|
|
*/
|
|
|
|
wxBitmap LoadBitmap(const wxString& name);
|
|
|
|
|
|
|
|
/**
|
2008-09-27 12:29:33 +00:00
|
|
|
Loads a dialog. @a parent points to parent window (if any).
|
|
|
|
*/
|
|
|
|
wxDialog* LoadDialog(wxWindow* parent, const wxString& name);
|
|
|
|
|
|
|
|
/**
|
|
|
|
Loads a dialog. @a parent points to parent window (if any).
|
|
|
|
|
2008-03-08 13:52:38 +00:00
|
|
|
This form is used to finish creation of an already existing instance (the main
|
2008-09-27 12:29:33 +00:00
|
|
|
reason for this is that you may want to use derived class with a new event table).
|
2008-03-08 13:52:38 +00:00
|
|
|
Example:
|
2008-09-27 12:29:33 +00:00
|
|
|
|
|
|
|
@code
|
|
|
|
MyDialog dlg;
|
|
|
|
wxTheXmlResource->LoadDialog(&dlg, mainFrame, "my_dialog");
|
|
|
|
dlg.ShowModal();
|
|
|
|
@endcode
|
2008-03-08 13:52:38 +00:00
|
|
|
*/
|
2008-09-27 12:29:33 +00:00
|
|
|
bool LoadDialog(wxDialog* dlg, wxWindow* parent, const wxString& name);
|
2008-03-08 13:52:38 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
Loads a frame.
|
|
|
|
*/
|
|
|
|
bool LoadFrame(wxFrame* frame, wxWindow* parent,
|
|
|
|
const wxString& name);
|
|
|
|
|
|
|
|
/**
|
|
|
|
Loads an icon resource from a file.
|
|
|
|
*/
|
|
|
|
wxIcon LoadIcon(const wxString& name);
|
|
|
|
|
|
|
|
/**
|
|
|
|
Loads menu from resource. Returns @NULL on failure.
|
|
|
|
*/
|
|
|
|
wxMenu* LoadMenu(const wxString& name);
|
|
|
|
|
|
|
|
//@{
|
|
|
|
/**
|
|
|
|
Loads a menubar from resource. Returns @NULL on failure.
|
|
|
|
*/
|
|
|
|
wxMenuBar* LoadMenuBar(wxWindow* parent, const wxString& name);
|
2008-03-08 14:43:31 +00:00
|
|
|
wxMenuBar* LoadMenuBar(const wxString& name);
|
2008-03-08 13:52:38 +00:00
|
|
|
//@}
|
|
|
|
|
|
|
|
//@{
|
|
|
|
/**
|
|
|
|
Load an object from the resource specifying both the resource name and the
|
|
|
|
class name.
|
2008-09-27 12:29:33 +00:00
|
|
|
|
|
|
|
The first overload lets you load nonstandard container windows and returns
|
|
|
|
@NULL on failure. The second one lets you finish the creation of an existing
|
2008-03-08 13:52:38 +00:00
|
|
|
instance and returns @false on failure.
|
|
|
|
*/
|
|
|
|
wxObject* LoadObject(wxWindow* parent, const wxString& name,
|
|
|
|
const wxString& classname);
|
2008-03-08 14:43:31 +00:00
|
|
|
bool LoadObject(wxObject* instance, wxWindow* parent,
|
|
|
|
const wxString& name,
|
|
|
|
const wxString& classname);
|
2008-03-08 13:52:38 +00:00
|
|
|
//@}
|
|
|
|
|
|
|
|
/**
|
2008-09-27 12:29:33 +00:00
|
|
|
Loads a panel. @a panel points to parent window (if any).
|
2008-03-08 13:52:38 +00:00
|
|
|
*/
|
|
|
|
wxPanel* LoadPanel(wxWindow* parent, const wxString& name);
|
2008-09-27 12:29:33 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
Loads a panel. @a panel points to parent window (if any).
|
|
|
|
This form is used to finish creation of an already existing instance.
|
|
|
|
*/
|
|
|
|
bool LoadPanel(wxPanel* panel, wxWindow* parent, const wxString& name);
|
2008-03-08 13:52:38 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
Loads a toolbar.
|
|
|
|
*/
|
|
|
|
wxToolBar* LoadToolBar(wxWindow* parent, const wxString& name);
|
|
|
|
|
|
|
|
/**
|
2008-09-27 12:29:33 +00:00
|
|
|
Sets the global resources object and returns a pointer to the previous one
|
|
|
|
(may be @NULL).
|
2008-03-08 13:52:38 +00:00
|
|
|
*/
|
2008-09-27 11:21:10 +00:00
|
|
|
static wxXmlResource* Set(wxXmlResource* res);
|
2008-03-08 13:52:38 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
Sets the domain (message catalog) that will be used to load
|
|
|
|
translatable strings in the XRC.
|
|
|
|
*/
|
2008-09-27 20:26:28 +00:00
|
|
|
void SetDomain(const wxString& domain);
|
2008-03-08 13:52:38 +00:00
|
|
|
|
|
|
|
/**
|
2008-09-27 12:29:33 +00:00
|
|
|
Sets flags (bitlist of ::wxXmlResourceFlags enumeration values).
|
2008-03-08 13:52:38 +00:00
|
|
|
*/
|
|
|
|
void SetFlags(int flags);
|
|
|
|
|
|
|
|
/**
|
2008-09-27 12:29:33 +00:00
|
|
|
This function unloads a resource previously loaded by Load().
|
|
|
|
|
2008-03-08 13:52:38 +00:00
|
|
|
Returns @true if the resource was successfully unloaded and @false if it
|
2008-09-27 12:29:33 +00:00
|
|
|
hasn't been found in the list of loaded resources.
|
2008-03-08 13:52:38 +00:00
|
|
|
*/
|
|
|
|
bool Unload(const wxString& filename);
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2008-03-10 15:24:38 +00:00
|
|
|
|
2008-03-08 13:52:38 +00:00
|
|
|
/**
|
|
|
|
@class wxXmlResourceHandler
|
2008-03-08 14:43:31 +00:00
|
|
|
|
2008-03-08 13:52:38 +00:00
|
|
|
wxXmlResourceHandler is an abstract base class for resource handlers
|
|
|
|
capable of creating a control from an XML node.
|
2008-03-08 14:43:31 +00:00
|
|
|
|
2008-09-27 10:27:44 +00:00
|
|
|
See @ref overview_xrc for details.
|
2008-03-08 14:43:31 +00:00
|
|
|
|
2008-03-08 13:52:38 +00:00
|
|
|
@library{wxxrc}
|
|
|
|
@category{xrc}
|
|
|
|
*/
|
|
|
|
class wxXmlResourceHandler : public wxObject
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
/**
|
|
|
|
Default constructor.
|
|
|
|
*/
|
|
|
|
wxXmlResourceHandler();
|
|
|
|
|
|
|
|
/**
|
|
|
|
Destructor.
|
|
|
|
*/
|
2008-09-27 11:21:10 +00:00
|
|
|
virtual ~wxXmlResourceHandler();
|
2008-03-08 13:52:38 +00:00
|
|
|
|
|
|
|
/**
|
2008-09-27 20:26:28 +00:00
|
|
|
Creates an object (menu, dialog, control, ...) from an XML node.
|
|
|
|
Should check for validity. @a parent is a higher-level object
|
|
|
|
(usually window, dialog or panel) that is often necessary to
|
|
|
|
create the resource.
|
|
|
|
|
|
|
|
If @b instance is non-@NULL it should not create a new instance via
|
|
|
|
'new' but should rather use this one, and call its Create method.
|
2008-03-08 13:52:38 +00:00
|
|
|
*/
|
2008-09-27 20:26:28 +00:00
|
|
|
wxObject* CreateResource(wxXmlNode* node, wxObject* parent,
|
|
|
|
wxObject* instance);
|
2008-03-08 13:52:38 +00:00
|
|
|
|
|
|
|
/**
|
2008-09-27 20:26:28 +00:00
|
|
|
Called from CreateResource after variables were filled.
|
2008-03-08 13:52:38 +00:00
|
|
|
*/
|
2008-09-27 20:26:28 +00:00
|
|
|
virtual wxObject* DoCreateResource() = 0;
|
2008-03-08 13:52:38 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
Returns @true if it understands this node and can create
|
|
|
|
a resource from it, @false otherwise.
|
2008-09-27 12:29:33 +00:00
|
|
|
|
|
|
|
@note
|
|
|
|
You must not call any wxXmlResourceHandler methods except IsOfClass()
|
|
|
|
from this method! The instance is not yet initialized with node data
|
|
|
|
at the time CanHandle() is called and it is only safe to operate on
|
|
|
|
node directly or to call IsOfClass().
|
2008-03-08 13:52:38 +00:00
|
|
|
*/
|
2008-09-27 20:26:28 +00:00
|
|
|
virtual bool CanHandle(wxXmlNode* node) = 0;
|
|
|
|
|
|
|
|
/**
|
|
|
|
Sets the parent resource.
|
|
|
|
*/
|
|
|
|
void SetParentResource(wxXmlResource* res);
|
|
|
|
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
|
|
|
/**
|
|
|
|
Add a style flag (e.g. @c wxMB_DOCKABLE) to the list of flags
|
|
|
|
understood by this handler.
|
|
|
|
*/
|
|
|
|
void AddStyle(const wxString& name, int value);
|
|
|
|
|
|
|
|
/**
|
|
|
|
Add styles common to all wxWindow-derived classes.
|
|
|
|
*/
|
|
|
|
void AddWindowStyles();
|
2008-03-08 13:52:38 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
Creates children.
|
|
|
|
*/
|
2008-03-09 12:33:59 +00:00
|
|
|
void CreateChildren(wxObject* parent, bool this_hnd_only = false);
|
2008-03-08 13:52:38 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
Helper function.
|
|
|
|
*/
|
|
|
|
void CreateChildrenPrivately(wxObject* parent,
|
2008-03-09 12:33:59 +00:00
|
|
|
wxXmlNode* rootnode = NULL);
|
2008-03-08 13:52:38 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
Creates a resource from a node.
|
|
|
|
*/
|
|
|
|
wxObject* CreateResFromNode(wxXmlNode* node, wxObject* parent,
|
2008-03-09 12:33:59 +00:00
|
|
|
wxObject* instance = NULL);
|
2008-03-08 13:52:38 +00:00
|
|
|
|
|
|
|
/**
|
2008-09-27 12:29:33 +00:00
|
|
|
Creates an animation (see wxAnimation) from the filename specified in @a param.
|
2008-03-08 13:52:38 +00:00
|
|
|
*/
|
2008-09-27 12:29:33 +00:00
|
|
|
wxAnimation GetAnimation(const wxString& param = wxT("animation"));
|
2008-03-08 13:52:38 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
Gets a bitmap.
|
|
|
|
*/
|
2008-09-27 20:26:28 +00:00
|
|
|
wxBitmap GetBitmap(const wxString& param = "bitmap",
|
|
|
|
const wxArtClient& defaultArtClient = wxART_OTHER,
|
|
|
|
wxSize size = wxDefaultSize);
|
2008-03-08 13:52:38 +00:00
|
|
|
|
|
|
|
/**
|
2008-09-27 10:27:44 +00:00
|
|
|
Gets a bool flag (1, t, yes, on, true are @true, everything else is @false).
|
2008-03-08 13:52:38 +00:00
|
|
|
*/
|
2008-03-09 12:33:59 +00:00
|
|
|
bool GetBool(const wxString& param, bool defaultv = false);
|
2008-03-08 13:52:38 +00:00
|
|
|
|
|
|
|
/**
|
2008-08-29 12:15:59 +00:00
|
|
|
Gets colour in HTML syntax (\#RRGGBB).
|
2008-03-08 13:52:38 +00:00
|
|
|
*/
|
|
|
|
wxColour GetColour(const wxString& param,
|
2008-09-27 12:29:33 +00:00
|
|
|
const wxColour& defaultColour = wxNullColour);
|
2008-03-08 13:52:38 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
Returns the current file system.
|
|
|
|
*/
|
2008-09-27 20:26:28 +00:00
|
|
|
wxFileSystem& GetCurFileSystem();
|
2008-03-08 13:52:38 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
Gets a dimension (may be in dialog units).
|
|
|
|
*/
|
2008-09-27 20:26:28 +00:00
|
|
|
wxCoord GetDimension(const wxString& param, wxCoord defaultv = 0,
|
|
|
|
wxWindow* windowToUse = 0);
|
2008-03-08 13:52:38 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
Gets a font.
|
|
|
|
*/
|
2008-09-27 20:26:28 +00:00
|
|
|
wxFont GetFont(const wxString& param = "font");
|
2008-03-08 13:52:38 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
Returns the XRCID.
|
|
|
|
*/
|
2008-03-09 12:33:59 +00:00
|
|
|
int GetID();
|
2008-03-08 13:52:38 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
Returns an icon.
|
|
|
|
*/
|
2008-09-27 20:26:28 +00:00
|
|
|
wxIcon GetIcon(const wxString& param = "icon",
|
|
|
|
const wxArtClient& defaultArtClient = wxART_OTHER,
|
|
|
|
wxSize size = wxDefaultSize);
|
2008-03-08 13:52:38 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
Gets the integer value from the parameter.
|
|
|
|
*/
|
|
|
|
long GetLong(const wxString& param, long defaultv = 0);
|
|
|
|
|
|
|
|
/**
|
|
|
|
Returns the resource name.
|
|
|
|
*/
|
|
|
|
wxString GetName();
|
|
|
|
|
|
|
|
/**
|
|
|
|
Gets node content from wxXML_ENTITY_NODE.
|
|
|
|
*/
|
|
|
|
wxString GetNodeContent(wxXmlNode* node);
|
|
|
|
|
|
|
|
/**
|
|
|
|
Finds the node or returns @NULL.
|
|
|
|
*/
|
|
|
|
wxXmlNode* GetParamNode(const wxString& param);
|
|
|
|
|
|
|
|
/**
|
|
|
|
Finds the parameter value or returns the empty string.
|
|
|
|
*/
|
|
|
|
wxString GetParamValue(const wxString& param);
|
|
|
|
|
|
|
|
/**
|
|
|
|
Gets the position (may be in dialog units).
|
|
|
|
*/
|
2008-09-27 12:29:33 +00:00
|
|
|
wxPoint GetPosition(const wxString& param = wxT("pos"));
|
2008-03-08 13:52:38 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
Gets the size (may be in dialog units).
|
|
|
|
*/
|
2008-09-27 20:26:28 +00:00
|
|
|
wxSize GetSize(const wxString& param = "size", wxWindow* windowToUse = 0);
|
2008-03-08 13:52:38 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
Gets style flags from text in form "flag | flag2| flag3 |..."
|
2008-09-27 12:29:33 +00:00
|
|
|
Only understands flags added with AddStyle().
|
2008-03-08 13:52:38 +00:00
|
|
|
*/
|
2008-09-27 12:29:33 +00:00
|
|
|
int GetStyle(const wxString& param = wxT("style"), int defaults = 0);
|
2008-03-08 13:52:38 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
Gets text from param and does some conversions:
|
2008-09-27 10:27:44 +00:00
|
|
|
- replaces \\n, \\r, \\t by respective characters (according to C syntax)
|
|
|
|
- replaces @c $ by @c and @c $$ by @c $ (needed for @c _File to @c File
|
|
|
|
translation because of XML syntax)
|
|
|
|
- calls wxGetTranslations (unless disabled in wxXmlResource)
|
2008-03-08 13:52:38 +00:00
|
|
|
*/
|
2008-09-27 20:26:28 +00:00
|
|
|
wxString GetText(const wxString& param, bool translate = true);
|
2008-03-08 13:52:38 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
Check to see if a parameter exists.
|
|
|
|
*/
|
|
|
|
bool HasParam(const wxString& param);
|
|
|
|
|
|
|
|
/**
|
2008-09-27 12:29:33 +00:00
|
|
|
Convenience function.
|
|
|
|
Returns @true if the node has a property class equal to classname,
|
2008-03-08 13:52:38 +00:00
|
|
|
e.g. object class="wxDialog".
|
|
|
|
*/
|
|
|
|
bool IsOfClass(wxXmlNode* node, const wxString& classname);
|
|
|
|
|
|
|
|
/**
|
|
|
|
Sets common window options.
|
|
|
|
*/
|
|
|
|
void SetupWindow(wxWindow* wnd);
|
|
|
|
};
|
2008-03-10 15:24:38 +00:00
|
|
|
|