X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/0c1182328f1bcc577cb6771f8d743b91b75086d8..ab67e8874db324fab5223cc8d5dff8a8de3e2b77:/include/wx/xrc/xmlreshandler.h?ds=inline diff --git a/include/wx/xrc/xmlreshandler.h b/include/wx/xrc/xmlreshandler.h index 7c7f3fece3..d581299cb0 100644 --- a/include/wx/xrc/xmlreshandler.h +++ b/include/wx/xrc/xmlreshandler.h @@ -354,6 +354,15 @@ protected: wxWindow *m_parentAsWindow; wxXmlResource *m_resource; + // provide method access to those member variables + wxXmlResource* GetResource() const { return m_resource; } + wxXmlNode* GetNode() const { return m_node; } + wxString GetClass() const { return m_class; } + wxObject* GetParent() const { return m_parent; } + wxObject* GetInstance() const { return m_instance; } + wxWindow* GetParentAsWindow() const { return m_parentAsWindow; } + + wxArrayString m_styleNames; wxArrayInt m_styleValues;