gcc /vc6 workarounds
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@23161 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
175
include/wx/xti.h
175
include/wx/xti.h
@@ -1,5 +1,5 @@
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
// Name: wx/xti.h
|
||||
// Name: wx/xti.hG
|
||||
// Purpose: runtime metadata information (extended class info)
|
||||
// Author: Stefan Csomor
|
||||
// Modified by:
|
||||
@@ -43,6 +43,30 @@
|
||||
#include "wx/arrstr.h"
|
||||
#include "wx/hashmap.h"
|
||||
|
||||
// we will move this later to defs.h
|
||||
|
||||
#if !wxCHECK_GCC_VERSION( 3 , 4 )
|
||||
# define wxUSE_MEMBER_TEMPLATES 0
|
||||
#endif
|
||||
|
||||
#ifdef _MSC_VER
|
||||
# if _MSC_VER <= 1200
|
||||
# define wxUSE_MEMBER_TEMPLATES 0
|
||||
# endif
|
||||
#endif
|
||||
|
||||
#ifndef wxUSE_MEMBER_TEMPLATES
|
||||
#define wxUSE_MEMBER_TEMPLATES 1
|
||||
#endif
|
||||
|
||||
#if wxUSE_MEMBER_TEMPLATES
|
||||
#define WX_TEMPLATED_MEMBER_CALL( method , type ) method<type>()
|
||||
#define WX_TEMPLATED_MEMBER_FIX( type )
|
||||
#else
|
||||
#define WX_TEMPLATED_MEMBER_CALL( method , type ) method((type*)NULL)
|
||||
#define WX_TEMPLATED_MEMBER_FIX( type ) type* =NULL
|
||||
#endif
|
||||
|
||||
class WXDLLIMPEXP_BASE wxObject;
|
||||
class WXDLLIMPEXP_BASE wxClassInfo;
|
||||
class WXDLLIMPEXP_BASE wxHashTable;
|
||||
@@ -217,7 +241,7 @@ void wxSetToString( wxString &s , const wxBitset<e> &data )
|
||||
} \
|
||||
void FromLong##SetName( long data , wxxVariant& result ) { result = wxxVariant(SetName((unsigned long)data)) ;} \
|
||||
void ToLong##SetName( const wxxVariant& data , long &result ) { result = (long) data.Get<SetName>().to_ulong() ;} \
|
||||
template<> const wxTypeInfo* wxGetTypeInfo( SetName * ) \
|
||||
template<> const wxTypeInfo* wxGetTypeInfo( SetName * ) \
|
||||
{ \
|
||||
static wxEnumTypeInfo s_typeInfo(wxT_SET , &s_enumData##e , &wxToStringConverter<SetName> , &wxFromStringConverter<SetName> , &ToLong##SetName , &FromLong##SetName, #SetName ) ; return &s_typeInfo ; \
|
||||
}
|
||||
@@ -284,7 +308,7 @@ void wxFlagsToString( wxString &s , const e& data )
|
||||
} \
|
||||
void FromLong##e( long data , wxxVariant& result ) { result = wxxVariant(e(data)) ;} \
|
||||
void ToLong##e( const wxxVariant& data , long &result ) { result = (long) data.Get<e>().m_data ;} \
|
||||
template<> const wxTypeInfo* wxGetTypeInfo( e * ) \
|
||||
template<> const wxTypeInfo* wxGetTypeInfo( e * ) \
|
||||
{ \
|
||||
static wxEnumTypeInfo s_typeInfo(wxT_SET , &s_enumData##e , &wxToStringConverter<e> , &wxFromStringConverter<e> , &ToLong##e , &FromLong##e, #e ) ; return &s_typeInfo ; \
|
||||
}
|
||||
@@ -479,27 +503,12 @@ template<typename T> const wxTypeInfo* wxGetTypeInfo( T * ) ;
|
||||
template<> const wxTypeInfo* wxGetTypeInfo( e * ){ static wxCustomTypeInfo s_typeInfo(#e, &wxToStringConverter<e> , &wxFromStringConverter<e>) ; return &s_typeInfo ; }
|
||||
|
||||
#define WX_COLLECTION_TYPE_INFO( element , collection ) \
|
||||
template<> const wxTypeInfo* wxGetTypeInfo( collection * ) \
|
||||
template<> const wxTypeInfo* wxGetTypeInfo( collection * ) \
|
||||
{ \
|
||||
static wxCollectionTypeInfo s_typeInfo( (wxTypeInfo*) wxGetTypeInfo( (element *) NULL) , NULL , NULL , #collection ) ; \
|
||||
return &s_typeInfo ; \
|
||||
} \
|
||||
|
||||
|
||||
// templated streaming, every type must have their specialization for these methods
|
||||
|
||||
template<typename T>
|
||||
void wxStringReadValue( const wxString &s , T &data );
|
||||
|
||||
template<typename T>
|
||||
void wxStringWriteValue( wxString &s , const T &data);
|
||||
|
||||
template<typename T>
|
||||
void wxToStringConverter( const wxxVariant &v, wxString &s) { wxStringWriteValue( s , v.Get<T>() ) ; }
|
||||
|
||||
template<typename T>
|
||||
void wxFromStringConverter( const wxString &s, wxxVariant &v) { T d ; wxStringReadValue( s , d ) ; v = wxxVariant(d) ; } \
|
||||
|
||||
// sometimes a compiler invents specializations that are nowhere called, use this macro to satisfy the refs
|
||||
|
||||
#define WX_ILLEGAL_TYPE_SPECIALIZATION( a ) \
|
||||
@@ -561,7 +570,7 @@ public :
|
||||
~wxxVariant() { delete m_data ; }
|
||||
|
||||
// get a ref to the stored data
|
||||
template<typename T> T& Get()
|
||||
template<typename T> T& Get(WX_TEMPLATED_MEMBER_FIX(T))
|
||||
{
|
||||
wxxVariantDataT<T> *dataptr = dynamic_cast<wxxVariantDataT<T>*> (m_data) ;
|
||||
wxASSERT_MSG( dataptr , wxT("Cast not possible") ) ;
|
||||
@@ -569,7 +578,7 @@ public :
|
||||
}
|
||||
|
||||
// get a ref to the stored data
|
||||
template<typename T> const T& Get() const
|
||||
template<typename T> const T& Get(WX_TEMPLATED_MEMBER_FIX(T)) const
|
||||
{
|
||||
const wxxVariantDataT<T> *dataptr = dynamic_cast<const wxxVariantDataT<T>*> (m_data) ;
|
||||
wxASSERT_MSG( dataptr , wxT("Cast not possible") ) ;
|
||||
@@ -619,6 +628,20 @@ private :
|
||||
|
||||
WX_DECLARE_OBJARRAY_WITH_DECL(wxxVariant, wxxVariantArray, class WXDLLIMPEXP_BASE);
|
||||
|
||||
// templated streaming, every type must have their specialization for these methods
|
||||
|
||||
template<typename T>
|
||||
void wxStringReadValue( const wxString &s , T &data );
|
||||
|
||||
template<typename T>
|
||||
void wxStringWriteValue( wxString &s , const T &data);
|
||||
|
||||
template<typename T>
|
||||
void wxToStringConverter( const wxxVariant &v, wxString &s) { wxStringWriteValue( s , v.WX_TEMPLATED_MEMBER_CALL(Get , T) ) ; }
|
||||
|
||||
template<typename T>
|
||||
void wxFromStringConverter( const wxString &s, wxxVariant &v) { T d ; wxStringReadValue( s , d ) ; v = wxxVariant(d) ; } \
|
||||
|
||||
// ----------------------------------------------------------------------------
|
||||
// Property Support
|
||||
//
|
||||
@@ -1069,7 +1092,7 @@ struct wxConstructorBridge_1 : public wxConstructorBridge
|
||||
{
|
||||
Class *obj = dynamic_cast<Class*>(o);
|
||||
obj->Create(
|
||||
args[0].Get<T0>()
|
||||
args[0].WX_TEMPLATED_MEMBER_CALL(Get , T0)
|
||||
);
|
||||
}
|
||||
};
|
||||
@@ -1090,8 +1113,8 @@ struct wxConstructorBridge_2 : public wxConstructorBridge
|
||||
{
|
||||
Class *obj = dynamic_cast<Class*>(o);
|
||||
obj->Create(
|
||||
args[0].Get<T0>() ,
|
||||
args[1].Get<T1>()
|
||||
args[0].WX_TEMPLATED_MEMBER_CALL(Get , T0) ,
|
||||
args[1].WX_TEMPLATED_MEMBER_CALL(Get , T1)
|
||||
);
|
||||
}
|
||||
};
|
||||
@@ -1112,9 +1135,9 @@ struct wxConstructorBridge_3 : public wxConstructorBridge
|
||||
{
|
||||
Class *obj = dynamic_cast<Class*>(o);
|
||||
obj->Create(
|
||||
args[0].Get<T0>() ,
|
||||
args[1].Get<T1>() ,
|
||||
args[2].Get<T2>()
|
||||
args[0].WX_TEMPLATED_MEMBER_CALL(Get , T0) ,
|
||||
args[1].WX_TEMPLATED_MEMBER_CALL(Get , T1) ,
|
||||
args[2].WX_TEMPLATED_MEMBER_CALL(Get , T2)
|
||||
);
|
||||
}
|
||||
};
|
||||
@@ -1135,10 +1158,10 @@ struct wxConstructorBridge_4 : public wxConstructorBridge
|
||||
{
|
||||
Class *obj = dynamic_cast<Class*>(o);
|
||||
obj->Create(
|
||||
args[0].Get<T0>() ,
|
||||
args[1].Get<T1>() ,
|
||||
args[2].Get<T2>() ,
|
||||
args[3].Get<T3>()
|
||||
args[0].WX_TEMPLATED_MEMBER_CALL(Get , T0) ,
|
||||
args[1].WX_TEMPLATED_MEMBER_CALL(Get , T1) ,
|
||||
args[2].WX_TEMPLATED_MEMBER_CALL(Get , T2) ,
|
||||
args[3].WX_TEMPLATED_MEMBER_CALL(Get , T3)
|
||||
);
|
||||
}
|
||||
};
|
||||
@@ -1159,11 +1182,11 @@ struct wxConstructorBridge_5 : public wxConstructorBridge
|
||||
{
|
||||
Class *obj = dynamic_cast<Class*>(o);
|
||||
obj->Create(
|
||||
args[0].Get<T0>() ,
|
||||
args[1].Get<T1>() ,
|
||||
args[2].Get<T2>() ,
|
||||
args[3].Get<T3>() ,
|
||||
args[4].Get<T4>()
|
||||
args[0].WX_TEMPLATED_MEMBER_CALL(Get , T0) ,
|
||||
args[1].WX_TEMPLATED_MEMBER_CALL(Get , T1) ,
|
||||
args[2].WX_TEMPLATED_MEMBER_CALL(Get , T2) ,
|
||||
args[3].WX_TEMPLATED_MEMBER_CALL(Get , T3) ,
|
||||
args[4].WX_TEMPLATED_MEMBER_CALL(Get , T4)
|
||||
);
|
||||
}
|
||||
};
|
||||
@@ -1184,16 +1207,39 @@ struct wxConstructorBridge_6 : public wxConstructorBridge
|
||||
{
|
||||
Class *obj = dynamic_cast<Class*>(o);
|
||||
obj->Create(
|
||||
args[0].Get<T0>() ,
|
||||
args[1].Get<T1>() ,
|
||||
args[2].Get<T2>() ,
|
||||
args[3].Get<T3>() ,
|
||||
args[4].Get<T4>() ,
|
||||
args[5].Get<T5>()
|
||||
args[0].WX_TEMPLATED_MEMBER_CALL(Get , T0) ,
|
||||
args[1].WX_TEMPLATED_MEMBER_CALL(Get , T1) ,
|
||||
args[2].WX_TEMPLATED_MEMBER_CALL(Get , T2) ,
|
||||
args[3].WX_TEMPLATED_MEMBER_CALL(Get , T3) ,
|
||||
args[4].WX_TEMPLATED_MEMBER_CALL(Get , T4) ,
|
||||
args[5].WX_TEMPLATED_MEMBER_CALL(Get , T5)
|
||||
);
|
||||
}
|
||||
};
|
||||
|
||||
template<typename Class,
|
||||
typename T0, typename T1, typename T2, typename T3, typename T4, typename T5>
|
||||
struct wxDirectConstructorBridge_6 : public wxConstructorBridge
|
||||
{
|
||||
void Create(wxObject *o, wxxVariant *args)
|
||||
{
|
||||
Class *obj = new Class(
|
||||
args[0].WX_TEMPLATED_MEMBER_CALL(Get , T0) ,
|
||||
args[1].WX_TEMPLATED_MEMBER_CALL(Get , T1) ,
|
||||
args[2].WX_TEMPLATED_MEMBER_CALL(Get , T2) ,
|
||||
args[3].WX_TEMPLATED_MEMBER_CALL(Get , T3) ,
|
||||
args[4].WX_TEMPLATED_MEMBER_CALL(Get , T4) ,
|
||||
args[5].WX_TEMPLATED_MEMBER_CALL(Get , T5)
|
||||
);
|
||||
}
|
||||
};
|
||||
|
||||
#define WX_DIRECT_CONSTRUCTOR_6(klass,t0,v0,t1,v1,t2,v2,t3,v3,t4,v4,t5,v5) \
|
||||
wxDirectConstructorBridge_6<klass,t0,t1,t2,t3,t4,t5> constructor##klass ; \
|
||||
wxConstructorBridge* klass::sm_constructor##klass = &constructor##klass ; \
|
||||
const wxChar *klass::sm_constructorProperties##klass[] = { #v0 , #v1 , #v2 , #v3 , #v4 , #v5 } ; \
|
||||
const int klass::sm_constructorPropertiesCount##klass = 6;
|
||||
|
||||
#define WX_CONSTRUCTOR_6(klass,t0,v0,t1,v1,t2,v2,t3,v3,t4,v4,t5,v5) \
|
||||
wxConstructorBridge_6<klass,t0,t1,t2,t3,t4,t5> constructor##klass ; \
|
||||
wxConstructorBridge* klass::sm_constructor##klass = &constructor##klass ; \
|
||||
@@ -1210,13 +1256,13 @@ struct wxConstructorBridge_7 : public wxConstructorBridge
|
||||
{
|
||||
Class *obj = dynamic_cast<Class*>(o);
|
||||
obj->Create(
|
||||
args[0].Get<T0>() ,
|
||||
args[1].Get<T1>() ,
|
||||
args[2].Get<T2>() ,
|
||||
args[3].Get<T3>() ,
|
||||
args[4].Get<T4>() ,
|
||||
args[5].Get<T5>() ,
|
||||
args[6].Get<T6>()
|
||||
args[0].WX_TEMPLATED_MEMBER_CALL(Get , T0) ,
|
||||
args[1].WX_TEMPLATED_MEMBER_CALL(Get , T1) ,
|
||||
args[2].WX_TEMPLATED_MEMBER_CALL(Get , T2) ,
|
||||
args[3].WX_TEMPLATED_MEMBER_CALL(Get , T3) ,
|
||||
args[4].WX_TEMPLATED_MEMBER_CALL(Get , T4) ,
|
||||
args[5].WX_TEMPLATED_MEMBER_CALL(Get , T5) ,
|
||||
args[6].WX_TEMPLATED_MEMBER_CALL(Get , T6)
|
||||
);
|
||||
}
|
||||
};
|
||||
@@ -1237,14 +1283,14 @@ struct wxConstructorBridge_8 : public wxConstructorBridge
|
||||
{
|
||||
Class *obj = dynamic_cast<Class*>(o);
|
||||
obj->Create(
|
||||
args[0].Get<T0>() ,
|
||||
args[1].Get<T1>() ,
|
||||
args[2].Get<T2>() ,
|
||||
args[3].Get<T3>() ,
|
||||
args[4].Get<T4>() ,
|
||||
args[5].Get<T5>() ,
|
||||
args[6].Get<T6>() ,
|
||||
args[7].Get<T7>()
|
||||
args[0].WX_TEMPLATED_MEMBER_CALL(Get , T0) ,
|
||||
args[1].WX_TEMPLATED_MEMBER_CALL(Get , T1) ,
|
||||
args[2].WX_TEMPLATED_MEMBER_CALL(Get , T2) ,
|
||||
args[3].WX_TEMPLATED_MEMBER_CALL(Get , T3) ,
|
||||
args[4].WX_TEMPLATED_MEMBER_CALL(Get , T4) ,
|
||||
args[5].WX_TEMPLATED_MEMBER_CALL(Get , T5) ,
|
||||
args[6].WX_TEMPLATED_MEMBER_CALL(Get , T6) ,
|
||||
args[7].WX_TEMPLATED_MEMBER_CALL(Get , T7)
|
||||
);
|
||||
}
|
||||
};
|
||||
@@ -1294,7 +1340,7 @@ public:
|
||||
|
||||
wxClassInfo(const wxChar *_UnitName, const wxChar *_ClassName, const wxClassInfo **_Parents) : m_parents(_Parents) , m_unitName(_UnitName) ,m_className(_ClassName),
|
||||
m_objectSize(0), m_objectConstructor(NULL) , m_firstProperty(NULL ) , m_firstHandler(NULL ) , m_constructor( NULL ) ,
|
||||
m_constructorProperties(NULL) , m_constructorPropertiesCount(NULL),
|
||||
m_constructorProperties(NULL) , m_constructorPropertiesCount(0),
|
||||
m_variantOfPtrToObjectConverter( NULL ) , m_variantToObjectConverter( NULL ) , m_objectToVariantConverter( NULL ) , m_next(sm_first) ,
|
||||
m_streamingCallback( NULL )
|
||||
{
|
||||
@@ -1484,8 +1530,17 @@ public :
|
||||
virtual void SetProperty (wxObject *object, const wxChar *PropertyName, const wxxVariant &Value) const ;
|
||||
virtual wxxVariant GetProperty (wxObject *object, const wxChar *PropertyName) const ;
|
||||
|
||||
// adds a property to this class at runtime
|
||||
void AddProperty( const wxChar *propertyName , const wxTypeInfo* typeInfo ) ;
|
||||
|
||||
// removes an existing runtime-property
|
||||
void RemoveProperty( const wxChar *propertyName ) ;
|
||||
|
||||
// as a handler to this class at runtime
|
||||
void AddHandler( const wxChar *handlerName , wxObjectEventFunction address , const wxClassInfo* eventClassInfo ) ;
|
||||
|
||||
// removes an existing runtime-handler
|
||||
void RemoveHandler( const wxChar *handlerName ) ;
|
||||
} ;
|
||||
|
||||
// ----------------------------------------------------------------------------
|
||||
@@ -1698,9 +1753,9 @@ public :
|
||||
// Collection Support
|
||||
// --------------------------------------------------------------------------
|
||||
|
||||
template<typename collection_t> void wxListCollectionToVariantArray( const collection_t& coll , wxxVariantArray &value )
|
||||
template<typename iter , typename collection_t > void wxListCollectionToVariantArray( const collection_t& coll , wxxVariantArray &value )
|
||||
{
|
||||
collection_t::compatibility_iterator current = coll.GetFirst() ;
|
||||
iter current = coll.GetFirst() ;
|
||||
while (current)
|
||||
{
|
||||
value.Add( new wxxVariant(current->GetData()) ) ;
|
||||
|
@@ -22,9 +22,9 @@
|
||||
#endif
|
||||
|
||||
#ifndef WX_PRECOMP
|
||||
#include "wx/hash.h"
|
||||
#include "wx/object.h"
|
||||
#include "wx/xti.h"
|
||||
#include "wx/hash.h"
|
||||
#include "wx/object.h"
|
||||
#include "wx/xti.h"
|
||||
#endif
|
||||
|
||||
#include "wx/xml/xml.h"
|
||||
@@ -336,8 +336,8 @@ wxTypeInfo( kind , to , from , classInfo->GetClassName() )
|
||||
{ wxASSERT_MSG( kind == wxT_OBJECT_PTR || kind == wxT_OBJECT , wxT("Illegal Kind for Enum Type")) ; m_classInfo = classInfo ;}
|
||||
|
||||
wxDelegateTypeInfo::wxDelegateTypeInfo( int eventType , wxClassInfo* eventClass , converterToString_t to , converterFromString_t from ) :
|
||||
wxTypeInfo ( wxT_DELEGATE , to , from , wxEmptyString )
|
||||
{ m_eventClass = eventClass ; m_eventType = eventType ;}
|
||||
wxTypeInfo ( wxT_DELEGATE , to , from , wxEmptyString )
|
||||
{ m_eventClass = eventClass ; m_eventType = eventType ;}
|
||||
|
||||
void wxTypeInfo::Register()
|
||||
{
|
||||
@@ -352,7 +352,7 @@ void wxTypeInfo::Unregister()
|
||||
{
|
||||
if( !m_name.IsEmpty() )
|
||||
sm_typeTable->erase(m_name);
|
||||
}
|
||||
}
|
||||
|
||||
// removing header dependancy on string tokenizer
|
||||
|
||||
@@ -580,7 +580,7 @@ wxxVariant wxDynamicObject::GetProperty (const wxChar *propertyName) const
|
||||
// ----------------------------------------------------------------------------
|
||||
|
||||
wxDynamicClassInfo::wxDynamicClassInfo( const wxChar *unitName, const wxChar *className , const wxClassInfo* superClass ) :
|
||||
wxClassInfo( unitName, className , new const wxClassInfo*[2])
|
||||
wxClassInfo( unitName, className , new const wxClassInfo*[2])
|
||||
{
|
||||
GetParents()[0] = superClass ;
|
||||
GetParents()[1] = NULL ;
|
||||
@@ -646,6 +646,16 @@ void wxDynamicClassInfo::AddHandler( const wxChar *handlerName , wxObjectEventFu
|
||||
new wxHandlerInfo( m_firstHandler , handlerName , address , eventClassInfo ) ;
|
||||
}
|
||||
|
||||
// removes an existing runtime-property
|
||||
void wxDynamicClassInfo::RemoveProperty( const wxChar *propertyName )
|
||||
{
|
||||
}
|
||||
|
||||
// removes an existing runtime-handler
|
||||
void wxDynamicClassInfo::RemoveHandler( const wxChar *handlerName )
|
||||
{
|
||||
}
|
||||
|
||||
// ----------------------------------------------------------------------------
|
||||
// wxGenericPropertyAccessor
|
||||
// ----------------------------------------------------------------------------
|
||||
|
@@ -529,7 +529,7 @@ void wxCodeDepersister::AllocateObject(int objectID, wxClassInfo *classInfo ,
|
||||
wxString objectName = wxString::Format( "LocalObject_%d" , objectID ) ;
|
||||
m_fp->WriteString( wxString::Format( "\t%s *%s = new %s;\n",
|
||||
classInfo->GetClassName(),
|
||||
objectName,
|
||||
objectName.c_str(),
|
||||
classInfo->GetClassName()) );
|
||||
m_data->SetObjectName( objectID , objectName ) ;
|
||||
}
|
||||
@@ -537,7 +537,7 @@ void wxCodeDepersister::AllocateObject(int objectID, wxClassInfo *classInfo ,
|
||||
void wxCodeDepersister::DestroyObject(int objectID, wxClassInfo *WXUNUSED(classInfo))
|
||||
{
|
||||
m_fp->WriteString( wxString::Format( "\tdelete %s;\n",
|
||||
m_data->GetObjectName( objectID) ) );
|
||||
m_data->GetObjectName( objectID).c_str() ) );
|
||||
}
|
||||
|
||||
wxString wxCodeDepersister::ValueAsCode( const wxxVariant ¶m )
|
||||
@@ -548,15 +548,15 @@ wxString wxCodeDepersister::ValueAsCode( const wxxVariant ¶m )
|
||||
{
|
||||
const wxCustomTypeInfo* cti = dynamic_cast<const wxCustomTypeInfo*>(type) ;
|
||||
wxASSERT_MSG( cti , wxT("Internal error, illegal wxCustomTypeInfo") ) ;
|
||||
value.Printf( "%s(%s)",cti->GetTypeName(),param.GetAsString() );
|
||||
value.Printf( "%s(%s)",cti->GetTypeName().c_str(),param.GetAsString().c_str() );
|
||||
}
|
||||
else if ( type->GetKind() == wxT_STRING )
|
||||
{
|
||||
value.Printf( "\"%s\"",param.GetAsString() );
|
||||
value.Printf( "\"%s\"",param.GetAsString().c_str() );
|
||||
}
|
||||
else
|
||||
{
|
||||
value.Printf( "%s", param.GetAsString() );
|
||||
value.Printf( "%s", param.GetAsString().c_str() );
|
||||
}
|
||||
return value ;
|
||||
}
|
||||
@@ -571,14 +571,14 @@ void wxCodeDepersister::CreateObject(int objectID,
|
||||
)
|
||||
{
|
||||
int i;
|
||||
m_fp->WriteString( wxString::Format( "\t%s->Create(", m_data->GetObjectName(objectID) ) );
|
||||
m_fp->WriteString( wxString::Format( "\t%s->Create(", m_data->GetObjectName(objectID).c_str() ) );
|
||||
for (i = 0; i < paramCount; i++)
|
||||
{
|
||||
if ( objectIDValues[i] != wxInvalidObjectID )
|
||||
m_fp->WriteString( wxString::Format( "%s", m_data->GetObjectName( objectIDValues[i] ) ) );
|
||||
m_fp->WriteString( wxString::Format( "%s", m_data->GetObjectName( objectIDValues[i] ).c_str() ) );
|
||||
else
|
||||
{
|
||||
m_fp->WriteString( wxString::Format( "%s", ValueAsCode(params[i]) ) );
|
||||
m_fp->WriteString( wxString::Format( "%s", ValueAsCode(params[i]).c_str() ) );
|
||||
}
|
||||
if (i < paramCount - 1)
|
||||
m_fp->WriteString( ", ");
|
||||
@@ -592,9 +592,9 @@ void wxCodeDepersister::SetProperty(int objectID,
|
||||
const wxxVariant &value)
|
||||
{
|
||||
m_fp->WriteString( wxString::Format( "\t%s->%s(%s);\n",
|
||||
m_data->GetObjectName(objectID),
|
||||
propertyInfo->GetAccessor()->GetSetterName(),
|
||||
ValueAsCode(value)) );
|
||||
m_data->GetObjectName(objectID).c_str(),
|
||||
propertyInfo->GetAccessor()->GetSetterName().c_str(),
|
||||
ValueAsCode(value).c_str()) );
|
||||
}
|
||||
|
||||
void wxCodeDepersister::SetPropertyAsObject(int objectID,
|
||||
@@ -604,14 +604,14 @@ void wxCodeDepersister::SetPropertyAsObject(int objectID,
|
||||
{
|
||||
if ( propertyInfo->GetTypeInfo()->GetKind() == wxT_OBJECT )
|
||||
m_fp->WriteString( wxString::Format( "\t%s->%s(*%s);\n",
|
||||
m_data->GetObjectName(objectID),
|
||||
propertyInfo->GetAccessor()->GetSetterName(),
|
||||
m_data->GetObjectName( valueObjectId) ) );
|
||||
m_data->GetObjectName(objectID).c_str(),
|
||||
propertyInfo->GetAccessor()->GetSetterName().c_str(),
|
||||
m_data->GetObjectName( valueObjectId).c_str() ) );
|
||||
else
|
||||
m_fp->WriteString( wxString::Format( "\t%s->%s(%s);\n",
|
||||
m_data->GetObjectName(objectID),
|
||||
propertyInfo->GetAccessor()->GetSetterName(),
|
||||
m_data->GetObjectName( valueObjectId) ) );
|
||||
m_data->GetObjectName(objectID).c_str(),
|
||||
propertyInfo->GetAccessor()->GetSetterName().c_str(),
|
||||
m_data->GetObjectName( valueObjectId).c_str() ) );
|
||||
}
|
||||
|
||||
void wxCodeDepersister::AddToPropertyCollection( int objectID ,
|
||||
@@ -620,9 +620,9 @@ void wxCodeDepersister::AddToPropertyCollection( int objectID ,
|
||||
const wxxVariant &value)
|
||||
{
|
||||
m_fp->WriteString( wxString::Format( "\t%s->%s(%s);\n",
|
||||
m_data->GetObjectName(objectID),
|
||||
propertyInfo->GetAccessor()->GetAdderName(),
|
||||
ValueAsCode(value)) );
|
||||
m_data->GetObjectName(objectID).c_str(),
|
||||
propertyInfo->GetAccessor()->GetAdderName().c_str(),
|
||||
ValueAsCode(value).c_str()) );
|
||||
}
|
||||
|
||||
// sets the corresponding property (value is an object)
|
||||
@@ -648,7 +648,7 @@ void wxCodeDepersister::SetConnect(int eventSourceObjectID,
|
||||
wxString handlerName = handlerInfo->GetName() ;
|
||||
|
||||
m_fp->WriteString( wxString::Format( "\t%s->Connect( %s->GetId() , %d , (wxObjectEventFunction)(wxEventFunction) & %s::%s , NULL , %s ) ;" ,
|
||||
ehsource , ehsource , eventType , ehsinkClass , handlerName , ehsink ) );
|
||||
ehsource.c_str() , ehsource.c_str() , eventType , ehsinkClass.c_str() , handlerName.c_str() , ehsink.c_str() ) );
|
||||
}
|
||||
|
||||
#include <wx/arrimpl.cpp>
|
||||
|
@@ -185,7 +185,7 @@ void wxXmlWriter::DoWriteDelegate( const wxObject *WXUNUSED(object), const wxCl
|
||||
{
|
||||
if ( eventSink != NULL && handlerInfo != NULL )
|
||||
{
|
||||
wxXmlAddContentToNode( m_data->m_current ,wxString::Format(wxT("%d.%s"), sinkObjectID , handlerInfo->GetName()) ) ;
|
||||
wxXmlAddContentToNode( m_data->m_current ,wxString::Format(wxT("%d.%s"), sinkObjectID , handlerInfo->GetName().c_str()) ) ;
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user