~wxXmlResource();
-
+ //wxXmlNode* GetFirstRoot(); ** Link error
+
// Loads resources from XML files that match given filemask.
// This method understands VFS (see filesys.h).
bool Load(const wxString& filemask);
// Initialize handlers for all supported controls/windows.
void InitAllHandlers();
+
+ %disownarg( wxPyXmlResourceHandler *handler );
+
// Initialize only specific handler (or custom handler). Convention says
// that handler name is equal to control's name plus 'XmlHandler', e.g.
// wxTextCtrlXmlHandler, wxHtmlWindowXmlHandler. XML resource compiler
// Add a new handler at the begining of the handler list
void InsertHandler(wxPyXmlResourceHandler *handler);
+ %cleardisown( wxPyXmlResourceHandler *handler );
+
+
// Removes all handlers
void ClearHandlers();
// Get/Set the domain to be passed to the translation functions, defaults to NULL.
wxString GetDomain() const;
void SetDomain(const wxString& domain);
+
+ %property(Domain, GetDomain, SetDomain, doc="See `GetDomain` and `SetDomain`");
+ %property(Flags, GetFlags, SetFlags, doc="See `GetFlags` and `SetFlags`");
+ %property(Version, GetVersion, doc="See `GetVersion`");
};
//----------------------------------------------------------------------