]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/xrc/xmlreshandler.h
Don't define __STRICT_ANSI__, we should build both with and without it.
[wxWidgets.git] / include / wx / xrc / xmlreshandler.h
index 7c7f3fece39fd12ae03509ea6b14267a3d964d50..7aa12b7bc6fe006c6f38ae72db92d3e492ee593c 100644 (file)
@@ -131,6 +131,12 @@ public:
     // it, SetImpl() needs to be called as done by wxXmlResource::AddHandler().
     wxXmlResourceHandler()
     {
+        m_node = NULL;
+        m_parent =
+        m_instance = NULL;
+        m_parentAsWindow = NULL;
+        m_resource = NULL;
+
         m_impl = NULL;
     }
 
@@ -354,6 +360,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;