]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/xti.cpp
unicode compilation fix
[wxWidgets.git] / src / common / xti.cpp
index 85d50e2eb85eaaae289cbc45a202a3cfb9d01ae6..38ed197501e6f0cf7461cebbce2a929658650086 100644 (file)
 
 #if wxUSE_EXTENDED_RTTI
 
 
 #if wxUSE_EXTENDED_RTTI
 
+#include "wx/beforestd.h"
 #include <map>
 #include <string>
 #include <map>
 #include <string>
+#include "wx/afterstd.h"
 
 using namespace std ;
 
 
 using namespace std ;
 
@@ -169,6 +171,12 @@ template<> const wxTypeInfo* wxGetTypeInfo( wxString * )
        return &s_typeInfo ;
 }
 
        return &s_typeInfo ;
 }
 
+template<> const wxTypeInfo* wxGetTypeInfo( wxWindowList * )
+{
+    static wxCollectionTypeInfo s_typeInfo( (wxTypeInfo*) wxGetTypeInfo( (wxWindow **) NULL) ) ;
+    return &s_typeInfo ;
+}
+
 // this are compiler induced specialization which are never used anywhere
 
 WX_ILLEGAL_TYPE_SPECIALIZATION( char const * )
 // this are compiler induced specialization which are never used anywhere
 
 WX_ILLEGAL_TYPE_SPECIALIZATION( char const * )
@@ -502,6 +510,24 @@ wxxVariant wxClassInfo::GetProperty(wxObject *object, const char *propertyName)
     return accessor->GetProperty(object);
 }
 
     return accessor->GetProperty(object);
 }
 
+wxxVariantArray wxClassInfo::GetPropertyCollection(wxObject *object, const wxChar *propertyName) const 
+{
+    const wxPropertyAccessor *accessor;
+
+    accessor = FindAccessor(propertyName);
+    wxASSERT(accessor->HasGetter());
+    return accessor->GetPropertyCollection(object);
+}
+
+void wxClassInfo::AddToPropertyCollection(wxObject *object, const wxChar *propertyName , const wxxVariant& value) const 
+{
+    const wxPropertyAccessor *accessor;
+
+    accessor = FindAccessor(propertyName);
+    wxASSERT(accessor->HasAdder());
+    accessor->AddToPropertyCollection( object , value ) ;
+}
+
 /*
 VARIANT TO OBJECT
 */
 /*
 VARIANT TO OBJECT
 */
@@ -570,9 +596,9 @@ wxDynamicClassInfo::~wxDynamicClassInfo()
     delete[] GetParents() ;
 }
 
     delete[] GetParents() ;
 }
 
-wxObject *wxDynamicClassInfo::CreateObject() const 
+wxObject *wxDynamicClassInfo::AllocateObject() const 
 {
 {
-    wxObject* parent = GetParents()[0]->CreateObject() ;
+    wxObject* parent = GetParents()[0]->AllocateObject() ;
     return new wxDynamicObject( parent , this ) ;
 }
 
     return new wxDynamicObject( parent , this ) ;
 }
 
@@ -617,7 +643,7 @@ wxxVariant wxDynamicClassInfo::GetProperty(wxObject *object, const char *propert
 
 void wxDynamicClassInfo::AddProperty( const wxChar *propertyName , const wxTypeInfo* typeInfo ) 
 {
 
 void wxDynamicClassInfo::AddProperty( const wxChar *propertyName , const wxTypeInfo* typeInfo ) 
 {
-    new wxPropertyInfo( m_firstProperty , propertyName , "" , typeInfo , new wxGenericPropertyAccessor( propertyName ) , wxxVariant() ) ;
+    new wxPropertyInfo( m_firstProperty , propertyName , typeInfo , new wxGenericPropertyAccessor( propertyName ) , wxxVariant() ) ;
 }
 
 void wxDynamicClassInfo::AddHandler( const wxChar *handlerName , wxObjectEventFunction address , const wxClassInfo* eventClassInfo ) 
 }
 
 void wxDynamicClassInfo::AddHandler( const wxChar *handlerName , wxObjectEventFunction address , const wxClassInfo* eventClassInfo )