1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: runtime metadata information (extended class info)
4 // Author: Stefan Csomor
8 // Copyright: (c) 1997 Julian Smart
9 // (c) 2003 Stefan Csomor
10 // Licence: wxWindows licence
11 /////////////////////////////////////////////////////////////////////////////
16 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
17 #pragma interface "xti.h"
20 // We want to support properties, event sources and events sinks through
21 // explicit declarations, using templates and specialization to make the
22 // effort as painless as possible.
24 // This means we have the following domains :
26 // - Type Information for categorizing built in types as well as custom types
27 // this includes information about enums, their values and names
28 // - Type safe value storage : a kind of wxVariant, called right now wxxVariant
29 // which will be merged with wxVariant
30 // - Property Information and Property Accessors providing access to a class'
31 // values and exposed event delegates
32 // - Information about event handlers
33 // - extended Class Information for accessing all these
35 // ----------------------------------------------------------------------------
37 // ----------------------------------------------------------------------------
40 #include "wx/memory.h"
42 #include "wx/string.h"
43 #include "wx/arrstr.h"
44 #include "wx/hashmap.h"
50 // we will move this later to defs.h
52 #if !wxCHECK_GCC_VERSION( 3 , 4 )
53 # define wxUSE_MEMBER_TEMPLATES 0
58 # define wxUSE_MEMBER_TEMPLATES 0
62 #ifndef wxUSE_MEMBER_TEMPLATES
63 #define wxUSE_MEMBER_TEMPLATES 1
66 #if wxUSE_MEMBER_TEMPLATES
67 #define wxTEMPLATED_MEMBER_CALL( method , type ) method<type>()
68 #define wxTEMPLATED_MEMBER_FIX( type )
70 #define wxTEMPLATED_MEMBER_CALL( method , type ) method((type*)NULL)
71 #define wxTEMPLATED_MEMBER_FIX( type ) type* =NULL
74 class WXDLLIMPEXP_BASE wxObject
;
75 class WXDLLIMPEXP_BASE wxClassInfo
;
76 class WXDLLIMPEXP_BASE wxDynamicClassInfo
;
77 class WXDLLIMPEXP_BASE wxHashTable
;
78 class WXDLLIMPEXP_BASE wxObjectRefData
;
79 class WXDLLIMPEXP_BASE wxEvent
;
81 typedef void (wxObject::*wxObjectEventFunction
)(wxEvent
&);
83 // ----------------------------------------------------------------------------
86 // In the header files there would no change from pure c++ code, in the
87 // implementation, an enum would have
88 // to be enumerated eg :
90 // wxBEGIN_ENUM( wxFlavor )
91 // wxENUM_MEMBER( Vanilla )
92 // wxENUM_MEMBER( Chocolate )
93 // wxENUM_MEMBER( Strawberry )
94 // wxEND_ENUM( wxFlavor )
95 // ----------------------------------------------------------------------------
97 struct WXDLLIMPEXP_BASE wxEnumMemberData
103 class WXDLLIMPEXP_BASE wxEnumData
106 wxEnumData( wxEnumMemberData
* data
) ;
108 // returns true if the member has been found and sets the int value
109 // pointed to accordingly (if ptr != null )
110 // if not found returns false, value left unchanged
111 bool HasEnumMemberValue( const wxChar
*name
, int *value
= NULL
) const ;
113 // returns the value of the member, if not found in debug mode an
114 // assert is issued, in release 0 is returned
115 int GetEnumMemberValue(const wxChar
*name
) const ;
117 // returns the name of the enum member having the passed in value
118 // returns an emtpy string if not found
119 const wxChar
*GetEnumMemberName(int value
) const ;
121 // returns the number of members in this enum
122 int GetEnumCount() const { return m_count
; }
124 // returns the value of the nth member
125 int GetEnumMemberValueByIndex( int n
) const ;
127 // returns the value of the nth member
128 const wxChar
*GetEnumMemberNameByIndex( int n
) const ;
130 wxEnumMemberData
*m_members
;
134 #define wxBEGIN_ENUM( e ) \
135 wxEnumMemberData s_enumDataMembers##e[] = {
137 #define wxENUM_MEMBER( v ) { wxT(#v), v } ,
139 #define wxEND_ENUM( e ) { NULL , 0 } } ; \
140 wxEnumData s_enumData##e( s_enumDataMembers##e ) ; \
141 wxEnumData *wxGetEnumData(e) { return &s_enumData##e ; } \
142 template<> void wxStringReadValue(const wxString& s , e &data ) \
144 data = (e) s_enumData##e.GetEnumMemberValue(s) ; \
146 template<> void wxStringWriteValue(wxString &s , const e &data ) \
148 s = s_enumData##e.GetEnumMemberName((int)data) ; \
150 void FromLong##e( long data , wxxVariant& result ) { result = wxxVariant((e)data) ;} \
151 void ToLong##e( const wxxVariant& data , long &result ) { result = (long) data.Get<e>() ;} \
152 wxEnumTypeInfo s_typeInfo##e(wxT_ENUM , &s_enumData##e , &wxToStringConverter<e> , &wxFromStringConverter<e> , &ToLong##e , &FromLong##e , typeid(e).name() ) ;
154 // ----------------------------------------------------------------------------
166 // typedef wxBitset<wxFlavor> wxCoupe ;
168 // in the implementation file :
170 // wxBEGIN_ENUM( wxFlavor )
171 // wxENUM_MEMBER( Vanilla )
172 // wxENUM_MEMBER( Chocolate )
173 // wxENUM_MEMBER( Strawberry )
174 // wxEND_ENUM( wxFlavor )
176 // wxIMPLEMENT_SET_STREAMING( wxCoupe , wxFlavor )
178 // implementation note : no partial specialization for streaming, but a delegation to a
181 // ----------------------------------------------------------------------------
183 // in order to remove dependancy on string tokenizer
184 void wxSetStringToArray( const wxString
&s
, wxArrayString
&array
) ;
187 void wxSetFromString(const wxString
&s
, wxBitset
<e
> &data
)
189 wxEnumData
* edata
= wxGetEnumData((e
) 0) ;
192 wxArrayString array
;
193 wxSetStringToArray( s
, array
) ;
195 for ( int i
= 0 ; i
< array
.Count() ; ++i
)
199 if ( edata
->HasEnumMemberValue( flag
, &ivalue
) )
201 data
.set( (e
) ivalue
) ;
207 void wxSetToString( wxString
&s
, const wxBitset
<e
> &data
)
209 wxEnumData
* edata
= wxGetEnumData((e
) 0) ;
210 int count
= edata
->GetEnumCount() ;
213 for ( i
= 0 ; i
< count
; i
++ )
215 e value
= (e
) edata
->GetEnumMemberValueByIndex(i
) ;
216 if ( data
.test( value
) )
218 // this could also be done by the templated calls
221 s
+= edata
->GetEnumMemberNameByIndex(i
) ;
226 #define wxIMPLEMENT_SET_STREAMING(SetName,e) \
227 template<> void wxStringReadValue(const wxString &s , wxBitset<e> &data ) \
229 wxSetFromString( s , data ) ; \
231 template<> void wxStringWriteValue( wxString &s , const wxBitset<e> &data ) \
233 wxSetToString( s , data ) ; \
235 void FromLong##SetName( long data , wxxVariant& result ) { result = wxxVariant(SetName((unsigned long)data)) ;} \
236 void ToLong##SetName( const wxxVariant& data , long &result ) { result = (long) data.Get<SetName>().to_ulong() ;} \
237 wxEnumTypeInfo s_typeInfo##SetName(wxT_SET , &s_enumData##e , &wxToStringConverter<SetName> , &wxFromStringConverter<SetName> , &ToLong##SetName , &FromLong##SetName, typeid(SetName).name() ) ; \
241 void wxFlagsFromString(const wxString
&s
, e
&data
)
243 wxEnumData
* edata
= wxGetEnumData((e
*) 0) ;
246 wxArrayString array
;
247 wxSetStringToArray( s
, array
) ;
249 for ( size_t i
= 0 ; i
< array
.Count() ; ++i
)
253 if ( edata
->HasEnumMemberValue( flag
, &ivalue
) )
255 data
.m_data
|= ivalue
;
261 void wxFlagsToString( wxString
&s
, const e
& data
)
263 wxEnumData
* edata
= wxGetEnumData((e
*) 0) ;
264 int count
= edata
->GetEnumCount() ;
267 long dataValue
= data
.m_data
;
268 for ( i
= 0 ; i
< count
; i
++ )
270 int value
= edata
->GetEnumMemberValueByIndex(i
) ;
271 // make this to allow for multi-bit constants to work
272 if ( value
&& ( dataValue
& value
) == value
)
274 // clear the flags we just set
275 dataValue
&= ~value
;
276 // this could also be done by the templated calls
279 s
+= edata
->GetEnumMemberNameByIndex(i
) ;
284 #define wxBEGIN_FLAGS( e ) \
285 wxEnumMemberData s_enumDataMembers##e[] = {
287 #define wxFLAGS_MEMBER( v ) { wxT(#v), v } ,
289 #define wxEND_FLAGS( e ) { NULL , 0 } } ; \
290 wxEnumData s_enumData##e( s_enumDataMembers##e ) ; \
291 wxEnumData *wxGetEnumData(e*) { return &s_enumData##e ; } \
292 template<> void wxStringReadValue(const wxString &s , e &data ) \
294 wxFlagsFromString<e>( s , data ) ; \
296 template<> void wxStringWriteValue( wxString &s , const e& data ) \
298 wxFlagsToString<e>( s , data ) ; \
300 void FromLong##e( long data , wxxVariant& result ) { result = wxxVariant(e(data)) ;} \
301 void ToLong##e( const wxxVariant& data , long &result ) { result = (long) data.Get<e>().m_data ;} \
302 wxEnumTypeInfo s_typeInfo##e(wxT_SET , &s_enumData##e , &wxToStringConverter<e> , &wxFromStringConverter<e> , &ToLong##e , &FromLong##e, typeid(e).name() ) ;
303 // ----------------------------------------------------------------------------
305 // ----------------------------------------------------------------------------
308 // All data exposed by the RTTI is characterized using the following classes.
309 // The first characterization is done by wxTypeKind. All enums up to and including
310 // wxT_CUSTOM represent so called simple types. These cannot be divided any further.
311 // They can be converted to and from wxStrings, that's all.
316 wxT_VOID
= 0, // unknown type
326 wxT_STRING
, // must be wxString
327 wxT_SET
, // must be wxBitset<> template
329 wxT_CUSTOM
, // user defined type (e.g. wxPoint)
331 wxT_LAST_SIMPLE_TYPE_KIND
= wxT_CUSTOM
,
333 wxT_OBJECT_PTR
, // object reference
334 wxT_OBJECT
, // embedded object
335 wxT_COLLECTION
, // collection
337 wxT_DELEGATE
, // for connecting against an event source
339 wxT_LAST_TYPE_KIND
= wxT_DELEGATE
// sentinel for bad data, asserts, debugging
342 class WXDLLIMPEXP_BASE wxxVariant
;
343 class WXDLLIMPEXP_BASE wxTypeInfo
;
345 WX_DECLARE_STRING_HASH_MAP_WITH_DECL( wxTypeInfo
* , wxTypeInfoMap
, class WXDLLIMPEXP_BASE
) ;
347 class WXDLLIMPEXP_BASE wxTypeInfo
350 typedef void (*converterToString_t
)( const wxxVariant
& data
, wxString
&result
) ;
351 typedef void (*converterFromString_t
)( const wxString
& data
, wxxVariant
&result
) ;
353 wxTypeInfo(wxTypeKind kind
,
354 converterToString_t to
= NULL
, converterFromString_t from
= NULL
,
355 const wxString
&name
= wxEmptyString
):
356 m_toString(to
), m_fromString(from
), m_kind(kind
), m_name(name
)
361 wxTypeInfo(wxTypeKind kind
,
362 converterToString_t to
= NULL
, converterFromString_t from
= NULL
,
363 const char *name
= ""):
364 m_toString(to
), m_fromString(from
), m_kind(kind
), m_name(wxString::FromAscii(name
))
370 virtual ~wxTypeInfo()
375 // return the kind of this type (wxT_... constants)
376 wxTypeKind
GetKind() const { return m_kind
; }
378 // returns the unique name of this type
379 const wxString
& GetTypeName() const { return m_name
; }
381 // is this type a delegate type
382 bool IsDelegateType() const { return m_kind
== wxT_DELEGATE
; }
384 // is this type a custom type
385 bool IsCustomType() const { return m_kind
== wxT_CUSTOM
; }
387 // is this type an object type
388 bool IsObjectType() const { return m_kind
== wxT_OBJECT
|| m_kind
== wxT_OBJECT_PTR
; }
390 // can the content of this type be converted to and from strings ?
391 bool HasStringConverters() const { return m_toString
!= NULL
&& m_fromString
!= NULL
; }
393 // convert a wxxVariant holding data of this type into a string
394 void ConvertToString( const wxxVariant
& data
, wxString
&result
) const
396 { if ( m_toString
) (*m_toString
)( data
, result
) ; else wxLogError( _("String conversions not supported") ) ; }
398 // convert a string into a wxxVariant holding the corresponding data in this type
399 void ConvertFromString( const wxString
& data
, wxxVariant
&result
) const
400 { if( m_fromString
) (*m_fromString
)( data
, result
) ; else wxLogError( _("String conversions not supported") ) ; }
403 static wxTypeInfo
*FindType(const char *typeName
) { return FindType( wxString::FromAscii(typeName
) ) ; }
405 static wxTypeInfo
*FindType(const wxChar
*typeName
);
412 converterToString_t m_toString
;
413 converterFromString_t m_fromString
;
415 static wxTypeInfoMap
* sm_typeTable
;
421 class WXDLLIMPEXP_BASE wxBuiltInTypeInfo
: public wxTypeInfo
424 wxBuiltInTypeInfo( wxTypeKind kind
, converterToString_t to
= NULL
, converterFromString_t from
= NULL
, const wxString
&name
= wxEmptyString
) :
425 wxTypeInfo( kind
, to
, from
, name
)
426 { wxASSERT_MSG( GetKind() < wxT_SET
, wxT("Illegal Kind for Base Type") ) ; }
428 wxBuiltInTypeInfo( wxTypeKind kind
, converterToString_t to
, converterFromString_t from
, const char *name
) :
429 wxTypeInfo( kind
, to
, from
, name
)
430 { wxASSERT_MSG( GetKind() < wxT_SET
, wxT("Illegal Kind for Base Type") ) ; }
434 class WXDLLIMPEXP_BASE wxCustomTypeInfo
: public wxTypeInfo
437 wxCustomTypeInfo( const wxString
&name
, converterToString_t to
, converterFromString_t from
) :
438 wxTypeInfo( wxT_CUSTOM
, to
, from
, name
)
441 wxCustomTypeInfo( const char *name
, converterToString_t to
, converterFromString_t from
) :
442 wxTypeInfo( wxT_CUSTOM
, to
, from
, name
)
447 class WXDLLIMPEXP_BASE wxEnumTypeInfo
: public wxTypeInfo
450 typedef void (*converterToLong_t
)( const wxxVariant
& data
, long &result
) ;
451 typedef void (*converterFromLong_t
)( long data
, wxxVariant
&result
) ;
453 wxEnumTypeInfo( wxTypeKind kind
, wxEnumData
* enumInfo
, converterToString_t to
, converterFromString_t from
,
454 converterToLong_t toLong
, converterFromLong_t fromLong
, const wxString
&name
) :
455 wxTypeInfo( kind
, to
, from
, name
) , m_toLong( toLong
) , m_fromLong( fromLong
)
456 { wxASSERT_MSG( kind
== wxT_ENUM
|| kind
== wxT_SET
, wxT("Illegal Kind for Enum Type")) ; m_enumInfo
= enumInfo
;}
459 wxEnumTypeInfo( wxTypeKind kind
, wxEnumData
* enumInfo
, converterToString_t to
, converterFromString_t from
,
460 converterToLong_t toLong
, converterFromLong_t fromLong
, const char * name
) :
461 wxTypeInfo( kind
, to
, from
, name
) , m_toLong( toLong
) , m_fromLong( fromLong
)
462 { wxASSERT_MSG( kind
== wxT_ENUM
|| kind
== wxT_SET
, wxT("Illegal Kind for Enum Type")) ; m_enumInfo
= enumInfo
;}
464 const wxEnumData
* GetEnumData() const { return m_enumInfo
; }
466 // convert a wxxVariant holding data of this type into a long
467 void ConvertToLong( const wxxVariant
& data
, long &result
) const
469 { if( m_toLong
) (*m_toLong
)( data
, result
) ; else wxLogError( _("Long Conversions not supported") ) ; }
471 // convert a long into a wxxVariant holding the corresponding data in this type
472 void ConvertFromLong( long data
, wxxVariant
&result
) const
473 { if( m_fromLong
) (*m_fromLong
)( data
, result
) ; else wxLogError( _("Long Conversions not supported") ) ;}
476 converterToLong_t m_toLong
;
477 converterFromLong_t m_fromLong
;
479 wxEnumData
*m_enumInfo
; // Kind == wxT_ENUM or Kind == wxT_SET
482 class WXDLLIMPEXP_BASE wxClassTypeInfo
: public wxTypeInfo
485 wxClassTypeInfo( wxTypeKind kind
, wxClassInfo
* classInfo
, converterToString_t to
= NULL
, converterFromString_t from
= NULL
, const wxString
&name
= wxEmptyString
) ;
487 wxClassTypeInfo( wxTypeKind kind
, wxClassInfo
* classInfo
, converterToString_t to
, converterFromString_t from
, const char *name
) ;
489 const wxClassInfo
*GetClassInfo() const { return m_classInfo
; }
491 wxClassInfo
*m_classInfo
; // Kind == wxT_OBJECT - could be NULL
494 class WXDLLIMPEXP_BASE wxCollectionTypeInfo
: public wxTypeInfo
497 wxCollectionTypeInfo( const wxString
&elementName
, converterToString_t to
, converterFromString_t from
, const wxString
&name
) :
498 wxTypeInfo( wxT_COLLECTION
, to
, from
, name
)
499 { m_elementTypeName
= elementName
; m_elementType
= NULL
;}
501 wxCollectionTypeInfo( const char *elementName
, converterToString_t to
, converterFromString_t from
, const char *name
) :
502 wxTypeInfo( wxT_COLLECTION
, to
, from
, name
)
503 { m_elementTypeName
= wxString::FromAscii( elementName
) ; m_elementType
= NULL
;}
505 const wxTypeInfo
* GetElementType() const
507 if ( m_elementType
== NULL
)
508 m_elementType
= wxTypeInfo::FindType( m_elementTypeName
) ;
509 return m_elementType
; }
511 mutable wxTypeInfo
* m_elementType
;
512 wxString m_elementTypeName
;
515 // a delegate is an exposed event source
517 class WXDLLIMPEXP_BASE wxDelegateTypeInfo
: public wxTypeInfo
520 wxDelegateTypeInfo( int eventType
, wxClassInfo
* eventClass
, converterToString_t to
= NULL
, converterFromString_t from
= NULL
) ;
521 wxDelegateTypeInfo( int eventType
, int lastEventType
, wxClassInfo
* eventClass
, converterToString_t to
= NULL
, converterFromString_t from
= NULL
) ;
522 int GetEventType() const { return m_eventType
; }
523 int GetLastEventType() const { return m_lastEventType
; }
524 const wxClassInfo
* GetEventClass() const { return m_eventClass
; }
526 const wxClassInfo
*m_eventClass
; // (extended will merge into classinfo)
528 int m_lastEventType
;
531 template<typename T
> const wxTypeInfo
* wxGetTypeInfo( T
* ) { return wxTypeInfo::FindType(typeid(T
).name()) ; }
533 // this macro is for usage with custom, non-object derived classes and structs, wxPoint is such a custom type
535 #define wxCUSTOM_TYPE_INFO( e , toString , fromString ) \
536 wxCustomTypeInfo s_typeInfo##e(typeid(e).name() , &toString , &fromString) ;
538 #define wxCOLLECTION_TYPE_INFO( element , collection ) \
539 wxCollectionTypeInfo s_typeInfo##collection( typeid(element).name() , NULL , NULL , typeid(collection).name() ) ;
541 // sometimes a compiler invents specializations that are nowhere called, use this macro to satisfy the refs, currently
542 // we don't have to play tricks, but if we will have to according to the compiler, we will use that macro for that
544 #define wxILLEGAL_TYPE_SPECIALIZATION( a )
546 // ----------------------------------------------------------------------------
547 // wxxVariant as typesafe data holder
548 // ----------------------------------------------------------------------------
550 class WXDLLIMPEXP_BASE wxxVariantData
553 virtual ~wxxVariantData() {}
555 // return a heap allocated duplicate
556 virtual wxxVariantData
* Clone() const = 0 ;
558 // returns the type info of the contentc
559 virtual const wxTypeInfo
* GetTypeInfo() const = 0 ;
562 template<typename T
> class wxxVariantDataT
: public wxxVariantData
565 wxxVariantDataT(const T
& d
) : m_data(d
) {}
566 virtual ~wxxVariantDataT() {}
568 // get a ref to the stored data
569 T
& Get() { return m_data
; }
571 // get a const ref to the stored data
572 const T
& Get() const { return m_data
; }
575 void Set(const T
& d
) { m_data
= d
; }
577 // return a heap allocated duplicate
578 virtual wxxVariantData
* Clone() const { return new wxxVariantDataT
<T
>( Get() ) ; }
580 // returns the type info of the contentc
581 virtual const wxTypeInfo
* GetTypeInfo() const { return wxGetTypeInfo( (T
*) NULL
) ; }
587 class WXDLLIMPEXP_BASE wxxVariant
590 wxxVariant() { m_data
= NULL
; }
591 wxxVariant( wxxVariantData
* data
, const wxString
& name
= wxT("") ) : m_data(data
) , m_name(name
) {}
592 wxxVariant( const wxxVariant
&d
) { if ( d
.m_data
) m_data
= d
.m_data
->Clone() ; else m_data
= NULL
; m_name
= d
.m_name
; }
594 template<typename T
> wxxVariant( const T
& data
, const wxString
& name
= wxT("") ) :
595 m_data(new wxxVariantDataT
<T
>(data
) ), m_name(name
) {}
597 ~wxxVariant() { delete m_data
; }
599 // get a ref to the stored data
600 template<typename T
> T
& Get(wxTEMPLATED_MEMBER_FIX(T
))
602 wxxVariantDataT
<T
> *dataptr
= dynamic_cast<wxxVariantDataT
<T
>*> (m_data
) ;
603 wxASSERT_MSG( dataptr
, wxT("Cast not possible") ) ;
604 return dataptr
->Get() ;
607 // get a ref to the stored data
608 template<typename T
> const T
& Get(wxTEMPLATED_MEMBER_FIX(T
)) const
610 const wxxVariantDataT
<T
> *dataptr
= dynamic_cast<const wxxVariantDataT
<T
>*> (m_data
) ;
611 wxASSERT_MSG( dataptr
, wxT("Cast not possible") ) ;
612 return dataptr
->Get() ;
615 bool IsEmpty() const { return m_data
== NULL
; }
617 template<typename T
> bool HasData() const
619 const wxxVariantDataT
<T
> *dataptr
= dynamic_cast<const wxxVariantDataT
<T
>*> (m_data
) ;
620 return dataptr
!= NULL
;
624 template<typename T
> void Set(const T
& data
) const
627 m_data
= new wxxVariantDataT
<T
>(data
) ;
630 wxxVariant
& operator=(const wxxVariant
&d
)
632 m_data
= d
.m_data
->Clone() ;
637 // gets the stored data casted to a wxObject* , returning NULL if cast is not possible
638 wxObject
* GetAsObject() ;
640 // get the typeinfo of the stored object
641 const wxTypeInfo
* GetTypeInfo() const { return m_data
->GetTypeInfo() ; }
643 // returns this value as string
644 wxString
GetAsString() const
647 GetTypeInfo()->ConvertToString( *this , s
) ;
650 const wxString
& GetName() const { return m_name
; }
652 wxxVariantData
* m_data
;
656 #include <wx/dynarray.h>
658 WX_DECLARE_OBJARRAY_WITH_DECL(wxxVariant
, wxxVariantArray
, class WXDLLIMPEXP_BASE
);
660 // templated streaming, every type must have their specialization for these methods
663 void wxStringReadValue( const wxString
&s
, T
&data
);
666 void wxStringWriteValue( wxString
&s
, const T
&data
);
669 void wxToStringConverter( const wxxVariant
&v
, wxString
&s
) { wxStringWriteValue( s
, v
.wxTEMPLATED_MEMBER_CALL(Get
, T
) ) ; }
672 void wxFromStringConverter( const wxString
&s
, wxxVariant
&v
) { T d
; wxStringReadValue( s
, d
) ; v
= wxxVariant(d
) ; } \
674 // ----------------------------------------------------------------------------
677 // wxPropertyInfo is used to inquire of the property by name. It doesn't
678 // provide access to the property, only information about it. If you
679 // want access, look at wxPropertyAccessor.
680 // ----------------------------------------------------------------------------
682 class WXDLLIMPEXP_BASE wxSetter
685 wxSetter( const wxString name
) { m_name
= name
; }
686 virtual ~wxSetter() {}
687 virtual void Set( wxObject
*object
, const wxxVariant
&variantValue
) const = 0;
688 const wxString
& GetName() const { return m_name
; }
693 class WXDLLIMPEXP_BASE wxGetter
696 wxGetter( const wxString name
) { m_name
= name
; }
697 virtual ~wxGetter() {}
698 virtual void Get( const wxObject
*object
, wxxVariant
& result
) const = 0;
699 const wxString
& GetName() const { return m_name
; }
704 class WXDLLIMPEXP_BASE wxCollectionGetter
707 wxCollectionGetter( const wxString name
) { m_name
= name
; }
708 virtual ~wxCollectionGetter() {}
709 virtual void Get( const wxObject
*object
, wxxVariantArray
& result
) const = 0;
710 const wxString
& GetName() const { return m_name
; }
715 template<typename coll_t
> void wxCollectionToVariantArray( const coll_t
& coll
, wxxVariantArray
& result
) ;
717 class WXDLLIMPEXP_BASE wxAdder
720 wxAdder( const wxString name
) { m_name
= name
; }
721 virtual ~wxAdder() {}
722 virtual void Add( wxObject
*object
, const wxxVariant
&variantValue
) const= 0;
723 const wxString
& GetName() const { return m_name
; }
730 #define wxSETTER( property, Klass, valueType, setterMethod ) \
731 class wxSetter##property : public wxSetter \
734 wxSetter##property() : wxSetter( wxT(#setterMethod) ) {} \
735 ~wxSetter##property() {} \
736 void Set( wxObject *object, const wxxVariant &variantValue ) const \
738 Klass *obj = dynamic_cast<Klass*>(object) ; \
739 if ( variantValue.HasData<valueType>() ) \
740 obj->setterMethod(variantValue.Get<valueType>()) ; \
742 obj->setterMethod(*variantValue.Get<valueType*>()) ; \
746 #define wxGETTER( property, Klass, valueType , gettermethod ) \
747 class wxGetter##property : public wxGetter \
750 wxGetter##property() : wxGetter( wxT(#gettermethod) ) {} \
751 ~wxGetter##property() {} \
752 void Get( const wxObject *object , wxxVariant &result) const \
754 const Klass *obj = dynamic_cast<const Klass*>(object) ; \
755 result = wxxVariant( obj->gettermethod() ) ; \
759 #define wxADDER( property, Klass, valueType , addermethod ) \
760 class wxAdder##property : public wxAdder \
763 wxAdder##property() : wxAdder( wxT(#addermethod) ) {} \
764 ~wxAdder##property() {} \
765 void Add( wxObject *object, const wxxVariant &variantValue ) const \
767 Klass *obj = dynamic_cast<Klass*>(object) ; \
768 if ( variantValue.HasData<valueType>() ) \
769 obj->addermethod(variantValue.Get<valueType>()) ; \
771 obj->addermethod(*variantValue.Get<valueType*>()) ; \
775 #define wxCOLLECTION_GETTER( property, Klass, valueType , gettermethod ) \
776 class wxCollectionGetter##property : public wxCollectionGetter \
779 wxCollectionGetter##property() : wxCollectionGetter( wxT(#gettermethod) ) {} \
780 ~wxCollectionGetter##property() {} \
781 void Get( const wxObject *object , wxxVariantArray &result) const \
783 const Klass *obj = dynamic_cast<const Klass*>(object) ; \
784 wxCollectionToVariantArray( obj->gettermethod() , result ) ; \
788 class WXDLLIMPEXP_BASE wxPropertyAccessor
791 wxPropertyAccessor( wxSetter
*setter
, wxGetter
*getter
, wxAdder
*adder
, wxCollectionGetter
*collectionGetter
)
792 { m_setter
= setter
; m_getter
= getter
; m_adder
= adder
; m_collectionGetter
= collectionGetter
;}
794 virtual ~wxPropertyAccessor() {}
796 // Setting a simple property (non-collection)
797 virtual void SetProperty(wxObject
*object
, const wxxVariant
&value
) const
798 { if ( m_setter
) m_setter
->Set( object
, value
) ; else wxLogError( _("SetProperty called w/o valid setter") ) ;}
800 // Getting a simple property (non-collection)
801 virtual void GetProperty(const wxObject
*object
, wxxVariant
&result
) const
802 { if ( m_getter
) m_getter
->Get( object
, result
) ; else wxLogError( _("GetProperty called w/o valid getter") ) ;}
804 // Adding an element to a collection property
805 virtual void AddToPropertyCollection(wxObject
*object
, const wxxVariant
&value
) const
806 { if ( m_adder
) m_adder
->Add( object
, value
) ; else wxLogError( _("AddToPropertyCollection called w/o valid adder") ) ;}
808 // Getting a collection property
809 virtual void GetPropertyCollection( const wxObject
*obj
, wxxVariantArray
&result
) const
810 { if ( m_collectionGetter
) m_collectionGetter
->Get( obj
, result
) ; else wxLogError( _("GetPropertyCollection called w/o valid collection getter") ) ;}
812 virtual bool HasSetter() const { return m_setter
!= NULL
; }
813 virtual bool HasCollectionGetter() const { return m_collectionGetter
!= NULL
; }
814 virtual bool HasGetter() const { return m_getter
!= NULL
; }
815 virtual bool HasAdder() const { return m_adder
!= NULL
; }
817 virtual const wxString
& GetCollectionGetterName() const
818 { return m_collectionGetter
->GetName() ; }
819 virtual const wxString
& GetGetterName() const
820 { return m_getter
->GetName() ; }
821 virtual const wxString
& GetSetterName() const
822 { return m_setter
->GetName() ; }
823 virtual const wxString
& GetAdderName() const
824 { return m_adder
->GetName() ; }
830 wxCollectionGetter
* m_collectionGetter
;
833 class WXDLLIMPEXP_BASE wxGenericPropertyAccessor
: public wxPropertyAccessor
836 wxGenericPropertyAccessor( const wxString
&propName
) ;
837 ~wxGenericPropertyAccessor() ;
839 void RenameProperty( const wxString
&oldName
, const wxString
&newName
)
841 wxASSERT( oldName
== m_propertyName
) ; m_propertyName
= newName
;
843 virtual bool HasSetter() const { return true ; }
844 virtual bool HasGetter() const { return true ; }
845 virtual bool HasAdder() const { return false ; }
846 virtual bool HasCollectionGetter() const { return false ; }
848 virtual const wxString
& GetGetterName() const
849 { return m_getterName
; }
850 virtual const wxString
& GetSetterName() const
851 { return m_setterName
; }
853 virtual void SetProperty(wxObject
*object
, const wxxVariant
&value
) const ;
854 virtual void GetProperty(const wxObject
*object
, wxxVariant
&value
) const ;
856 // Adding an element to a collection property
857 virtual void AddToPropertyCollection(wxObject
*WXUNUSED(object
), const wxxVariant
&WXUNUSED(value
)) const
858 { wxLogError( _("AddToPropertyCollection called on a generic accessor") ) ;}
860 // Getting a collection property
861 virtual void GetPropertyCollection( const wxObject
*WXUNUSED(obj
), wxxVariantArray
&WXUNUSED(result
)) const
862 { wxLogError ( _("GetPropertyCollection called on a generic accessor") ) ;}
864 struct wxGenericPropertyAccessorInternal
;
865 wxGenericPropertyAccessorInternal
* m_data
;
866 wxString m_propertyName
;
867 wxString m_setterName
;
868 wxString m_getterName
;
871 typedef long wxPropertyInfoFlags
;
873 // will be removed in future releases
874 wxPROP_DEPRECATED
= 0x00000001 ,
875 // object graph property, will be streamed with priority (after constructor properties)
876 wxPROP_OBJECT_GRAPH
= 0x00000002 ,
877 // this will only be streamed out and in as enum/set, the internal representation is still a long
878 wxPROP_ENUM_STORE_LONG
= 0x00000004 ,
879 // don't stream out this property, needed eg to avoid streaming out children that are always created by their parents
880 wxPROP_DONT_STREAM
= 0x00000008 ,
883 class WXDLLIMPEXP_BASE wxPropertyInfo
885 friend class WXDLLIMPEXP_BASE wxDynamicClassInfo
;
887 wxPropertyInfo(wxPropertyInfo
* &iter
,
888 wxClassInfo
* itsClass
,
889 const wxString
& name
,
890 const wxString
& typeName
,
891 wxPropertyAccessor
*accessor
,
893 wxPropertyInfoFlags flags
= 0,
894 const wxString
& helpString
= wxEmptyString
,
895 const wxString
& groupString
= wxEmptyString
) :
896 m_itsClass(itsClass
),
899 m_typeName(typeName
) ,
900 m_collectionElementTypeInfo(NULL
),
901 m_accessor(accessor
),
904 m_helpString(helpString
),
905 m_groupString(groupString
)
911 wxPropertyInfo(wxPropertyInfo
* &iter
,
912 wxClassInfo
* itsClass
,
913 const wxString
& name
,
914 const char* typeName
,
915 wxPropertyAccessor
*accessor
,
917 wxPropertyInfoFlags flags
= 0,
918 const wxString
& helpString
= wxEmptyString
,
919 const wxString
& groupString
= wxEmptyString
) :
920 m_itsClass(itsClass
),
923 m_typeName(wxString::FromAscii(typeName
)) ,
924 m_collectionElementTypeInfo(NULL
),
925 m_accessor(accessor
),
928 m_helpString(helpString
),
929 m_groupString(groupString
)
934 wxPropertyInfo(wxPropertyInfo
* &iter
,
935 wxClassInfo
* itsClass
,
936 const wxString
& name
,
937 wxDelegateTypeInfo
* type
,
938 wxPropertyAccessor
*accessor
,
940 wxPropertyInfoFlags flags
= 0,
941 const wxString
& helpString
= wxEmptyString
,
942 const wxString
& groupString
= wxEmptyString
) :
943 m_itsClass(itsClass
),
946 m_collectionElementTypeInfo(NULL
),
947 m_accessor(accessor
),
950 m_helpString(helpString
),
951 m_groupString(groupString
)
956 wxPropertyInfo(wxPropertyInfo
* &iter
,
957 wxClassInfo
* itsClass
, const wxString
& name
,
958 const wxString
& collectionTypeName
,
959 const wxString
& elementTypeName
,
960 wxPropertyAccessor
*accessor
,
961 wxPropertyInfoFlags flags
= 0,
962 const wxString
& helpString
= wxEmptyString
,
963 const wxString
& groupString
= wxEmptyString
) :
964 m_itsClass(itsClass
),
967 m_typeName(collectionTypeName
) ,
968 m_collectionElementTypeInfo(NULL
),
969 m_collectionElementTypeName(elementTypeName
),
970 m_accessor(accessor
) ,
972 m_helpString(helpString
),
973 m_groupString(groupString
)
979 wxPropertyInfo(wxPropertyInfo
* &iter
,
980 wxClassInfo
* itsClass
, const wxString
& name
,
981 const char* collectionTypeName
,
982 const char* elementTypeName
,
983 wxPropertyAccessor
*accessor
,
984 wxPropertyInfoFlags flags
= 0,
985 const wxString
& helpString
= wxEmptyString
,
986 const wxString
& groupString
= wxEmptyString
) :
987 m_itsClass(itsClass
),
990 m_typeName(wxString::FromAscii(collectionTypeName
)) ,
991 m_collectionElementTypeInfo(NULL
),
992 m_collectionElementTypeName(wxString::FromAscii(elementTypeName
)),
993 m_accessor(accessor
) ,
995 m_helpString(helpString
),
996 m_groupString(groupString
)
1003 // return the class this property is declared in
1004 const wxClassInfo
* GetDeclaringClass() const { return m_itsClass
; }
1006 // return the name of this property
1007 const wxString
& GetName() const { return m_name
; }
1009 // returns the flags of this property
1010 wxPropertyInfoFlags
GetFlags() const { return m_flags
;}
1012 // returns the short help string of this property
1013 const wxString
& GetHelpString() const { return m_helpString
; }
1015 // returns the group string of this property
1016 const wxString
& GetGroupString() const { return m_groupString
; }
1018 // return the element type info of this property (for collections, otherwise NULL)
1019 const wxTypeInfo
* GetCollectionElementTypeInfo() const
1021 if ( m_collectionElementTypeInfo
== NULL
)
1022 m_collectionElementTypeInfo
= wxTypeInfo::FindType(m_collectionElementTypeName
) ;
1023 return m_collectionElementTypeInfo
;
1026 // return the type info of this property
1027 const wxTypeInfo
* GetTypeInfo() const
1029 if ( m_typeInfo
== NULL
)
1030 m_typeInfo
= wxTypeInfo::FindType(m_typeName
) ;
1034 // return the accessor for this property
1035 wxPropertyAccessor
* GetAccessor() const { return m_accessor
; }
1037 // returns NULL if this is the last property of this class
1038 wxPropertyInfo
* GetNext() const { return m_next
; }
1040 // returns the default value of this property, its kind may be wxT_VOID if it is not valid
1041 wxxVariant
GetDefaultValue() const { return m_defaultValue
; }
1043 void Insert(wxPropertyInfo
* &iter
)
1050 wxPropertyInfo
* i
= iter
;
1058 wxClassInfo
* m_itsClass
;
1060 mutable wxTypeInfo
* m_typeInfo
;
1061 wxString m_typeName
;
1062 mutable wxTypeInfo
* m_collectionElementTypeInfo
;
1063 wxString m_collectionElementTypeName
;
1064 wxPropertyAccessor
* m_accessor
;
1065 wxxVariant m_defaultValue
;
1066 wxPropertyInfoFlags m_flags
;
1067 wxString m_helpString
;
1068 wxString m_groupString
;
1069 // string representation of the default value
1070 // to be assigned by the designer to the property
1071 // when the component is dropped on the container.
1072 wxPropertyInfo
* m_next
;
1075 WX_DECLARE_STRING_HASH_MAP_WITH_DECL( wxPropertyInfo
* , wxPropertyInfoMap
, class WXDLLIMPEXP_BASE
) ;
1077 #define wxBEGIN_PROPERTIES_TABLE(theClass) \
1078 wxPropertyInfo *theClass::GetPropertiesStatic() \
1080 typedef theClass class_t; \
1081 static wxPropertyInfo* first = NULL ;
1083 #define wxEND_PROPERTIES_TABLE() \
1086 #define wxHIDE_PROPERTY( pname ) \
1087 static wxPropertyInfo _propertyInfo##pname( first , class_t::GetClassInfoStatic() , wxT(#pname) , typeid(void).name() ,NULL , wxxVariant() , wxPROP_DONT_STREAM , wxEmptyString , wxEmptyString ) ;
1089 #define wxPROPERTY( pname , type , setter , getter ,defaultValue , flags , help , group) \
1090 wxSETTER( pname , class_t , type , setter ) \
1091 static wxSetter##pname _setter##pname ; \
1092 wxGETTER( pname , class_t , type , getter ) \
1093 static wxGetter##pname _getter##pname ; \
1094 static wxPropertyAccessor _accessor##pname( &_setter##pname , &_getter##pname , NULL , NULL ) ; \
1095 static wxPropertyInfo _propertyInfo##pname( first , class_t::GetClassInfoStatic() , wxT(#pname) , typeid(type).name() ,&_accessor##pname , wxxVariant(defaultValue) , flags , group , help ) ;
1097 #define wxPROPERTY_FLAGS( pname , flags , type , setter , getter ,defaultValue , pflags , help , group) \
1098 wxSETTER( pname , class_t , type , setter ) \
1099 static wxSetter##pname _setter##pname ; \
1100 wxGETTER( pname , class_t , type , getter ) \
1101 static wxGetter##pname _getter##pname ; \
1102 static wxPropertyAccessor _accessor##pname( &_setter##pname , &_getter##pname , NULL , NULL ) ; \
1103 static wxPropertyInfo _propertyInfo##pname( first , class_t::GetClassInfoStatic() , wxT(#pname) , typeid(flags).name() ,&_accessor##pname , wxxVariant(defaultValue), wxPROP_ENUM_STORE_LONG | pflags , help , group ) ;
1105 #define wxREADONLY_PROPERTY( pname , type , getter ,defaultValue , flags , help , group) \
1106 wxGETTER( pname , class_t , type , getter ) \
1107 static wxGetter##pname _getter##pname ; \
1108 static wxPropertyAccessor _accessor##pname( NULL , &_getter##pname , NULL , NULL ) ; \
1109 static wxPropertyInfo _propertyInfo##pname( first , class_t::GetClassInfoStatic() , wxT(#pname) , typeid(type).name() ,&_accessor##pname , wxxVariant(defaultValue), flags , help , group ) ;
1111 #define wxREADONLY_PROPERTY_FLAGS( pname , flags , type , getter ,defaultValue , pflags , help , group) \
1112 wxGETTER( pname , class_t , type , getter ) \
1113 static wxGetter##pname _getter##pname ; \
1114 static wxPropertyAccessor _accessor##pname( NULL , &_getter##pname , NULL , NULL ) ; \
1115 static wxPropertyInfo _propertyInfo##pname( first , class_t::GetClassInfoStatic() , wxT(#pname) , typeid(flags).name() ,&_accessor##pname , wxxVariant(defaultValue), wxPROP_ENUM_STORE_LONG | pflags , help , group ) ;
1117 #define wxPROPERTY_COLLECTION( pname , colltype , addelemtype , adder , getter , flags , help , group ) \
1118 wxADDER( pname , class_t , addelemtype , adder ) \
1119 static wxAdder##pname _adder##pname ; \
1120 wxCOLLECTION_GETTER( pname , class_t , colltype , getter ) \
1121 static wxCollectionGetter##pname _collectionGetter##pname ; \
1122 static wxPropertyAccessor _accessor##pname( NULL , NULL ,&_adder##pname , &_collectionGetter##pname ) ; \
1123 static wxPropertyInfo _propertyInfo##pname( first , class_t::GetClassInfoStatic() , wxT(#pname) , typeid(colltype).name() ,typeid(addelemtype).name() ,&_accessor##pname , flags , help , group ) ;
1125 #define wxREADONLY_PROPERTY_COLLECTION( pname , colltype , addelemtype , getter , flags , help , group) \
1126 wxCOLLECTION_GETTER( pname , class_t , colltype , getter ) \
1127 static wxCollectionGetter##pname _collectionGetter##pname ; \
1128 static wxPropertyAccessor _accessor##pname( NULL , NULL , NULL , &_collectionGetter##pname ) ; \
1129 static wxPropertyInfo _propertyInfo##pname( first ,class_t::GetClassInfoStatic() , wxT(#pname) , typeid(colltype).name() ,typeid(addelemtype).name() ,&_accessor##pname , flags , help , group ) ;
1132 #define wxEVENT_PROPERTY( name , eventType , eventClass ) \
1133 static wxDelegateTypeInfo _typeInfo##name( eventType , CLASSINFO( eventClass ) ) ; \
1134 static wxPropertyInfo _propertyInfo##name( first ,class_t::GetClassInfoStatic() , wxT(#name) , &_typeInfo##name , NULL , wxxVariant() ) ; \
1136 #define wxEVENT_RANGE_PROPERTY( name , eventType , lastEventType , eventClass ) \
1137 static wxDelegateTypeInfo _typeInfo##name( eventType , lastEventType , CLASSINFO( eventClass ) ) ; \
1138 static wxPropertyInfo _propertyInfo##name( first , class_t::GetClassInfoStatic() , wxT(#name) , &_typeInfo##name , NULL , wxxVariant() ) ; \
1140 // ----------------------------------------------------------------------------
1141 // Implementation Helper for Simple Properties
1142 // ----------------------------------------------------------------------------
1144 #define wxIMPLEMENT_PROPERTY(name, type) \
1148 void Set##name( type const & p) { m_##name = p; } \
1149 type const & Get##name() const { return m_##name; }
1151 // ----------------------------------------------------------------------------
1154 // this is describing an event sink
1155 // ----------------------------------------------------------------------------
1157 class WXDLLIMPEXP_BASE wxHandlerInfo
1159 friend class WXDLLIMPEXP_BASE wxDynamicClassInfo
;
1161 wxHandlerInfo(wxHandlerInfo
* &iter
,
1162 wxClassInfo
* itsClass
,
1163 const wxString
& name
,
1164 wxObjectEventFunction address
,
1165 const wxClassInfo
* eventClassInfo
) :
1166 m_eventFunction(address
),
1168 m_eventClassInfo(eventClassInfo
) ,
1169 m_itsClass(itsClass
)
1176 wxHandlerInfo
* i
= iter
;
1186 // return the name of this handler
1187 const wxString
& GetName() const { return m_name
; }
1189 // return the class info of the event
1190 const wxClassInfo
* GetEventClassInfo() const { return m_eventClassInfo
; }
1192 // get the handler function pointer
1193 wxObjectEventFunction
GetEventFunction() const { return m_eventFunction
; }
1195 // returns NULL if this is the last handler of this class
1196 wxHandlerInfo
* GetNext() const { return m_next
; }
1198 // return the class this property is declared in
1199 const wxClassInfo
* GetDeclaringClass() const { return m_itsClass
; }
1202 wxObjectEventFunction m_eventFunction
;
1204 const wxClassInfo
* m_eventClassInfo
;
1205 wxHandlerInfo
* m_next
;
1206 wxClassInfo
* m_itsClass
;
1209 #define wxHANDLER(name,eventClassType) \
1210 static wxHandlerInfo _handlerInfo##name( first , class_t::GetClassInfoStatic() , wxT(#name) , (wxObjectEventFunction) (wxEventFunction) &name , CLASSINFO( eventClassType ) ) ;
1212 #define wxBEGIN_HANDLERS_TABLE(theClass) \
1213 wxHandlerInfo *theClass::GetHandlersStatic() \
1215 typedef theClass class_t; \
1216 static wxHandlerInfo* first = NULL ;
1218 #define wxEND_HANDLERS_TABLE() \
1221 // ----------------------------------------------------------------------------
1222 // Constructor Bridges
1224 // allow to set up constructors with params during runtime
1225 // ----------------------------------------------------------------------------
1227 class WXDLLIMPEXP_BASE wxConstructorBridge
1230 virtual void Create(wxObject
* &o
, wxxVariant
*args
) = 0;
1233 // a direct constructor bridge calls the operator new for this class and
1234 // passes all params to the constructor. needed for classes that cannot be
1235 // instantiated using alloc-create semantics
1236 class WXDLLIMPEXP_BASE wxDirectConstructorBrigde
: public wxConstructorBridge
1239 virtual void Create(wxObject
* &o
, wxxVariant
*args
) = 0;
1242 // Creator Bridges for all Numbers of Params
1246 template<typename Class
>
1247 struct wxConstructorBridge_0
: public wxConstructorBridge
1249 void Create(wxObject
* &o
, wxxVariant
*)
1251 Class
*obj
= dynamic_cast<Class
*>(o
);
1256 struct wxConstructorBridge_Dummy
: public wxConstructorBridge
1258 void Create(wxObject
*&, wxxVariant
*)
1263 #define wxCONSTRUCTOR_0(klass) \
1264 wxConstructorBridge_0<klass> constructor##klass ; \
1265 wxConstructorBridge* klass::sm_constructor##klass = &constructor##klass ; \
1266 const wxChar *klass::sm_constructorProperties##klass[] = { NULL } ; \
1267 const int klass::sm_constructorPropertiesCount##klass = 0 ;
1269 #define wxCONSTRUCTOR_DUMMY(klass) \
1270 wxConstructorBridge_Dummy constructor##klass ; \
1271 wxConstructorBridge* klass::sm_constructor##klass = &constructor##klass ; \
1272 const wxChar *klass::sm_constructorProperties##klass[] = { NULL } ; \
1273 const int klass::sm_constructorPropertiesCount##klass = 0 ;
1277 template<typename Class
, typename T0
>
1278 struct wxConstructorBridge_1
: public wxConstructorBridge
1280 void Create(wxObject
* &o
, wxxVariant
*args
)
1282 Class
*obj
= dynamic_cast<Class
*>(o
);
1284 args
[0].wxTEMPLATED_MEMBER_CALL(Get
, T0
)
1289 #define wxCONSTRUCTOR_1(klass,t0,v0) \
1290 wxConstructorBridge_1<klass,t0> constructor##klass ; \
1291 wxConstructorBridge* klass::sm_constructor##klass = &constructor##klass ; \
1292 const wxChar *klass::sm_constructorProperties##klass[] = { wxT(#v0) } ; \
1293 const int klass::sm_constructorPropertiesCount##klass = 1 ;
1297 template<typename Class
,
1298 typename T0
, typename T1
>
1299 struct wxConstructorBridge_2
: public wxConstructorBridge
1301 void Create(wxObject
* &o
, wxxVariant
*args
)
1303 Class
*obj
= dynamic_cast<Class
*>(o
);
1305 args
[0].wxTEMPLATED_MEMBER_CALL(Get
, T0
) ,
1306 args
[1].wxTEMPLATED_MEMBER_CALL(Get
, T1
)
1311 #define wxCONSTRUCTOR_2(klass,t0,v0,t1,v1) \
1312 wxConstructorBridge_2<klass,t0,t1> constructor##klass ; \
1313 wxConstructorBridge* klass::sm_constructor##klass = &constructor##klass ; \
1314 const wxChar *klass::sm_constructorProperties##klass[] = { wxT(#v0) , wxT(#v1) } ; \
1315 const int klass::sm_constructorPropertiesCount##klass = 2;
1317 // direct constructor version
1319 template<typename Class
,
1320 typename T0
, typename T1
>
1321 struct wxDirectConstructorBridge_2
: public wxDirectConstructorBrigde
1323 void Create(wxObject
* &o
, wxxVariant
*args
)
1326 args
[0].wxTEMPLATED_MEMBER_CALL(Get
, T0
) ,
1327 args
[1].wxTEMPLATED_MEMBER_CALL(Get
, T1
)
1332 #define wxDIRECT_CONSTRUCTOR_2(klass,t0,v0,t1,v1) \
1333 wxDirectConstructorBridge_2<klass,t0,t1> constructor##klass ; \
1334 wxConstructorBridge* klass::sm_constructor##klass = &constructor##klass ; \
1335 const wxChar *klass::sm_constructorProperties##klass[] = { wxT(#v0) , wxT(#v1) } ; \
1336 const int klass::sm_constructorPropertiesCount##klass = 2;
1341 template<typename Class
,
1342 typename T0
, typename T1
, typename T2
>
1343 struct wxConstructorBridge_3
: public wxConstructorBridge
1345 void Create(wxObject
* &o
, wxxVariant
*args
)
1347 Class
*obj
= dynamic_cast<Class
*>(o
);
1349 args
[0].wxTEMPLATED_MEMBER_CALL(Get
, T0
) ,
1350 args
[1].wxTEMPLATED_MEMBER_CALL(Get
, T1
) ,
1351 args
[2].wxTEMPLATED_MEMBER_CALL(Get
, T2
)
1356 #define wxCONSTRUCTOR_3(klass,t0,v0,t1,v1,t2,v2) \
1357 wxConstructorBridge_3<klass,t0,t1,t2> constructor##klass ; \
1358 wxConstructorBridge* klass::sm_constructor##klass = &constructor##klass ; \
1359 const wxChar *klass::sm_constructorProperties##klass[] = { wxT(#v0) , wxT(#v1) , wxT(#v2) } ; \
1360 const int klass::sm_constructorPropertiesCount##klass = 3 ;
1364 template<typename Class
,
1365 typename T0
, typename T1
, typename T2
, typename T3
>
1366 struct wxConstructorBridge_4
: public wxConstructorBridge
1368 void Create(wxObject
* &o
, wxxVariant
*args
)
1370 Class
*obj
= dynamic_cast<Class
*>(o
);
1372 args
[0].wxTEMPLATED_MEMBER_CALL(Get
, T0
) ,
1373 args
[1].wxTEMPLATED_MEMBER_CALL(Get
, T1
) ,
1374 args
[2].wxTEMPLATED_MEMBER_CALL(Get
, T2
) ,
1375 args
[3].wxTEMPLATED_MEMBER_CALL(Get
, T3
)
1380 #define wxCONSTRUCTOR_4(klass,t0,v0,t1,v1,t2,v2,t3,v3) \
1381 wxConstructorBridge_4<klass,t0,t1,t2,t3> constructor##klass ; \
1382 wxConstructorBridge* klass::sm_constructor##klass = &constructor##klass ; \
1383 const wxChar *klass::sm_constructorProperties##klass[] = { wxT(#v0) , wxT(#v1) , wxT(#v2) , wxT(#v3) } ; \
1384 const int klass::sm_constructorPropertiesCount##klass = 4 ;
1388 template<typename Class
,
1389 typename T0
, typename T1
, typename T2
, typename T3
, typename T4
>
1390 struct wxConstructorBridge_5
: public wxConstructorBridge
1392 void Create(wxObject
* &o
, wxxVariant
*args
)
1394 Class
*obj
= dynamic_cast<Class
*>(o
);
1396 args
[0].wxTEMPLATED_MEMBER_CALL(Get
, T0
) ,
1397 args
[1].wxTEMPLATED_MEMBER_CALL(Get
, T1
) ,
1398 args
[2].wxTEMPLATED_MEMBER_CALL(Get
, T2
) ,
1399 args
[3].wxTEMPLATED_MEMBER_CALL(Get
, T3
) ,
1400 args
[4].wxTEMPLATED_MEMBER_CALL(Get
, T4
)
1405 #define wxCONSTRUCTOR_5(klass,t0,v0,t1,v1,t2,v2,t3,v3,t4,v4) \
1406 wxConstructorBridge_5<klass,t0,t1,t2,t3,t4> constructor##klass ; \
1407 wxConstructorBridge* klass::sm_constructor##klass = &constructor##klass ; \
1408 const wxChar *klass::sm_constructorProperties##klass[] = { wxT(#v0) , wxT(#v1) , wxT(#v2) , wxT(#v3) , wxT(#v4) } ; \
1409 const int klass::sm_constructorPropertiesCount##klass = 5;
1413 template<typename Class
,
1414 typename T0
, typename T1
, typename T2
, typename T3
, typename T4
, typename T5
>
1415 struct wxConstructorBridge_6
: public wxConstructorBridge
1417 void Create(wxObject
* &o
, wxxVariant
*args
)
1419 Class
*obj
= dynamic_cast<Class
*>(o
);
1421 args
[0].wxTEMPLATED_MEMBER_CALL(Get
, T0
) ,
1422 args
[1].wxTEMPLATED_MEMBER_CALL(Get
, T1
) ,
1423 args
[2].wxTEMPLATED_MEMBER_CALL(Get
, T2
) ,
1424 args
[3].wxTEMPLATED_MEMBER_CALL(Get
, T3
) ,
1425 args
[4].wxTEMPLATED_MEMBER_CALL(Get
, T4
) ,
1426 args
[5].wxTEMPLATED_MEMBER_CALL(Get
, T5
)
1431 #define wxCONSTRUCTOR_6(klass,t0,v0,t1,v1,t2,v2,t3,v3,t4,v4,t5,v5) \
1432 wxConstructorBridge_6<klass,t0,t1,t2,t3,t4,t5> constructor##klass ; \
1433 wxConstructorBridge* klass::sm_constructor##klass = &constructor##klass ; \
1434 const wxChar *klass::sm_constructorProperties##klass[] = { wxT(#v0) , wxT(#v1) , wxT(#v2) , wxT(#v3) , wxT(#v4) , wxT(#v5) } ; \
1435 const int klass::sm_constructorPropertiesCount##klass = 6;
1437 // direct constructor version
1439 template<typename Class
,
1440 typename T0
, typename T1
, typename T2
, typename T3
, typename T4
, typename T5
>
1441 struct wxDirectConstructorBridge_6
: public wxDirectConstructorBrigde
1443 void Create(wxObject
* &o
, wxxVariant
*args
)
1446 args
[0].wxTEMPLATED_MEMBER_CALL(Get
, T0
) ,
1447 args
[1].wxTEMPLATED_MEMBER_CALL(Get
, T1
) ,
1448 args
[2].wxTEMPLATED_MEMBER_CALL(Get
, T2
) ,
1449 args
[3].wxTEMPLATED_MEMBER_CALL(Get
, T3
) ,
1450 args
[4].wxTEMPLATED_MEMBER_CALL(Get
, T4
) ,
1451 args
[5].wxTEMPLATED_MEMBER_CALL(Get
, T5
)
1456 #define wxDIRECT_CONSTRUCTOR_6(klass,t0,v0,t1,v1,t2,v2,t3,v3,t4,v4,t5,v5) \
1457 wxDirectConstructorBridge_6<klass,t0,t1,t2,t3,t4,t5> constructor##klass ; \
1458 wxConstructorBridge* klass::sm_constructor##klass = &constructor##klass ; \
1459 const wxChar *klass::sm_constructorProperties##klass[] = { wxT(#v0) , wxT(#v1) , wxT(#v2) , wxT(#v3) , wxT(#v4) , wxT(#v5) } ; \
1460 const int klass::sm_constructorPropertiesCount##klass = 6;
1464 template<typename Class
,
1465 typename T0
, typename T1
, typename T2
, typename T3
, typename T4
, typename T5
, typename T6
>
1466 struct wxConstructorBridge_7
: public wxConstructorBridge
1468 void Create(wxObject
* &o
, wxxVariant
*args
)
1470 Class
*obj
= dynamic_cast<Class
*>(o
);
1472 args
[0].wxTEMPLATED_MEMBER_CALL(Get
, T0
) ,
1473 args
[1].wxTEMPLATED_MEMBER_CALL(Get
, T1
) ,
1474 args
[2].wxTEMPLATED_MEMBER_CALL(Get
, T2
) ,
1475 args
[3].wxTEMPLATED_MEMBER_CALL(Get
, T3
) ,
1476 args
[4].wxTEMPLATED_MEMBER_CALL(Get
, T4
) ,
1477 args
[5].wxTEMPLATED_MEMBER_CALL(Get
, T5
) ,
1478 args
[6].wxTEMPLATED_MEMBER_CALL(Get
, T6
)
1483 #define wxCONSTRUCTOR_7(klass,t0,v0,t1,v1,t2,v2,t3,v3,t4,v4,t5,v5,t6,v6) \
1484 wxConstructorBridge_7<klass,t0,t1,t2,t3,t4,t5,t6> constructor##klass ; \
1485 wxConstructorBridge* klass::sm_constructor##klass = &constructor##klass ; \
1486 const wxChar *klass::sm_constructorProperties##klass[] = { wxT(#v0) , wxT(#v1) , wxT(#v2) , wxT(#v3) , wxT(#v4) , wxT(#v5) , wxT(#v6) } ; \
1487 const int klass::sm_constructorPropertiesCount##klass = 7;
1491 template<typename Class
,
1492 typename T0
, typename T1
, typename T2
, typename T3
, typename T4
, typename T5
, typename T6
, typename T7
>
1493 struct wxConstructorBridge_8
: public wxConstructorBridge
1495 void Create(wxObject
* &o
, wxxVariant
*args
)
1497 Class
*obj
= dynamic_cast<Class
*>(o
);
1499 args
[0].wxTEMPLATED_MEMBER_CALL(Get
, T0
) ,
1500 args
[1].wxTEMPLATED_MEMBER_CALL(Get
, T1
) ,
1501 args
[2].wxTEMPLATED_MEMBER_CALL(Get
, T2
) ,
1502 args
[3].wxTEMPLATED_MEMBER_CALL(Get
, T3
) ,
1503 args
[4].wxTEMPLATED_MEMBER_CALL(Get
, T4
) ,
1504 args
[5].wxTEMPLATED_MEMBER_CALL(Get
, T5
) ,
1505 args
[6].wxTEMPLATED_MEMBER_CALL(Get
, T6
) ,
1506 args
[7].wxTEMPLATED_MEMBER_CALL(Get
, T7
)
1511 #define wxCONSTRUCTOR_8(klass,t0,v0,t1,v1,t2,v2,t3,v3,t4,v4,t5,v5,t6,v6,t7,v7) \
1512 wxConstructorBridge_8<klass,t0,t1,t2,t3,t4,t5,t6,t7> constructor##klass ; \
1513 wxConstructorBridge* klass::sm_constructor##klass = &constructor##klass ; \
1514 const wxChar *klass::sm_constructorProperties##klass[] = { wxT(#v0) , wxT(#v1) , wxT(#v2) , wxT(#v3) , wxT(#v4) , wxT(#v5) , wxT(#v6) , wxT(#v7) } ; \
1515 const int klass::sm_constructorPropertiesCount##klass = 8;
1516 // ----------------------------------------------------------------------------
1518 // ----------------------------------------------------------------------------
1520 typedef wxObject
*(*wxObjectConstructorFn
)(void);
1521 typedef wxObject
* (*wxVariantToObjectConverter
)( wxxVariant
&data
) ;
1522 typedef wxxVariant (*wxObjectToVariantConverter
)( wxObject
* ) ;
1524 class WXDLLIMPEXP_BASE wxWriter
;
1525 class WXDLLIMPEXP_BASE wxPersister
;
1527 typedef bool (*wxObjectStreamingCallback
) ( const wxObject
*, wxWriter
* , wxPersister
* , wxxVariantArray
& ) ;
1529 class WXDLLIMPEXP_BASE wxClassInfo
1531 friend class WXDLLIMPEXP_BASE wxPropertyInfo
;
1532 friend class WXDLLIMPEXP_BASE wxHandlerInfo
;
1534 wxClassInfo(const wxClassInfo
**_Parents
,
1535 const wxChar
*_UnitName
,
1536 const wxChar
*_ClassName
,
1538 wxObjectConstructorFn ctor
,
1539 wxPropertyInfo
*_Props
,
1540 wxHandlerInfo
*_Handlers
,
1541 wxConstructorBridge
* _Constructor
,
1542 const wxChar
** _ConstructorProperties
,
1543 const int _ConstructorPropertiesCount
,
1544 wxVariantToObjectConverter _PtrConverter1
,
1545 wxVariantToObjectConverter _Converter2
,
1546 wxObjectToVariantConverter _Converter3
,
1547 wxObjectStreamingCallback _streamingCallback
= NULL
1550 m_className(_ClassName
),
1552 m_objectConstructor(ctor
),
1554 m_firstProperty(_Props
),
1555 m_firstHandler(_Handlers
),
1556 m_parents(_Parents
),
1557 m_unitName(_UnitName
),
1558 m_constructor(_Constructor
),
1559 m_constructorProperties(_ConstructorProperties
),
1560 m_constructorPropertiesCount(_ConstructorPropertiesCount
),
1561 m_variantOfPtrToObjectConverter(_PtrConverter1
),
1562 m_variantToObjectConverter(_Converter2
),
1563 m_objectToVariantConverter(_Converter3
),
1564 m_streamingCallback(_streamingCallback
)
1570 wxClassInfo(const wxChar
*_UnitName
, const wxChar
*_ClassName
,
1571 const wxClassInfo
**_Parents
) :
1572 m_className(_ClassName
),
1574 m_objectConstructor(NULL
),
1576 m_firstProperty(NULL
),
1577 m_firstHandler(NULL
),
1578 m_parents(_Parents
),
1579 m_unitName(_UnitName
),
1580 m_constructor(NULL
),
1581 m_constructorProperties(NULL
),
1582 m_constructorPropertiesCount(0),
1583 m_variantOfPtrToObjectConverter(NULL
),
1584 m_variantToObjectConverter(NULL
),
1585 m_objectToVariantConverter(NULL
),
1586 m_streamingCallback(NULL
)
1592 virtual ~wxClassInfo() ;
1594 // allocates an instance of this class, this object does not have to be initialized or fully constructed
1595 // as this call will be followed by a call to Create
1596 virtual wxObject
*AllocateObject() const { return m_objectConstructor
? (*m_objectConstructor
)() : 0; }
1598 // 'old naming' for AllocateObject staying here for backward compatibility
1599 wxObject
*CreateObject() const { return AllocateObject() ; }
1601 // direct construction call for classes that cannot construct instances via alloc/create
1602 wxObject
*ConstructObject(int ParamCount
, wxxVariant
*Params
) const
1604 if ( ParamCount
!= m_constructorPropertiesCount
)
1606 wxLogError( _("Illegal Parameter Count for ConstructObject Method") ) ;
1609 wxObject
*object
= NULL
;
1610 m_constructor
->Create( object
, Params
) ;
1614 bool NeedsDirectConstruction() const { return dynamic_cast<wxDirectConstructorBrigde
*>( m_constructor
) != NULL
; }
1616 const wxChar
*GetClassName() const { return m_className
; }
1617 const wxChar
*GetBaseClassName1() const
1618 { return m_parents
[0] ? m_parents
[0]->GetClassName() : NULL
; }
1619 const wxChar
*GetBaseClassName2() const
1620 { return (m_parents
[0] && m_parents
[1]) ? m_parents
[1]->GetClassName() : NULL
; }
1621 const wxChar
*GetIncludeName() const { return m_unitName
; }
1622 const wxClassInfo
**GetParents() const { return m_parents
; }
1623 int GetSize() const { return m_objectSize
; }
1625 wxObjectConstructorFn
GetConstructor() const { return m_objectConstructor
; }
1626 static const wxClassInfo
*GetFirst() { return sm_first
; }
1627 const wxClassInfo
*GetNext() const { return m_next
; }
1628 static wxClassInfo
*FindClass(const wxChar
*className
);
1630 // Climb upwards through inheritance hierarchy.
1631 // Dual inheritance is catered for.
1633 bool IsKindOf(const wxClassInfo
*info
) const
1640 for ( int i
= 0 ; m_parents
[i
] ; ++ i
)
1642 if ( m_parents
[i
]->IsKindOf( info
) )
1649 // if there is a callback registered with that class it will be called
1650 // before this object will be written to disk, it can veto streaming out
1651 // this object by returning false, if this class has not registered a
1652 // callback, the search will go up the inheritance tree if no callback has
1653 // been registered true will be returned by default
1654 bool BeforeWriteObject( const wxObject
*obj
, wxWriter
*streamer
, wxPersister
*persister
, wxxVariantArray
&metadata
) const ;
1656 // gets the streaming callback from this class or any superclass
1657 wxObjectStreamingCallback
GetStreamingCallback() const ;
1659 #ifdef WXWIN_COMPATIBILITY_2_4
1660 // Initializes parent pointers and hash table for fast searching.
1661 wxDEPRECATED( static void InitializeClasses() );
1662 // Cleans up hash table used for fast searching.
1663 wxDEPRECATED( static void CleanUpClasses() );
1665 static void CleanUp();
1667 // returns the first property
1668 const wxPropertyInfo
* GetFirstProperty() const { return m_firstProperty
; }
1670 // returns the first handler
1671 const wxHandlerInfo
* GetFirstHandler() const { return m_firstHandler
; }
1673 // Call the Create upon an instance of the class, in the end the object is fully
1675 virtual void Create (wxObject
*object
, int ParamCount
, wxxVariant
*Params
) const
1677 if ( ParamCount
!= m_constructorPropertiesCount
)
1679 wxLogError( _("Illegal Parameter Count for Create Method") ) ;
1682 m_constructor
->Create( object
, Params
) ;
1685 // get number of parameters for constructor
1686 virtual int GetCreateParamCount() const { return m_constructorPropertiesCount
; }
1688 // get n-th constructor parameter
1689 virtual const wxChar
* GetCreateParamName(int n
) const { return m_constructorProperties
[n
] ; }
1691 // Runtime access to objects for simple properties (get/set) by property name, and variant data
1692 virtual void SetProperty (wxObject
*object
, const wxChar
*propertyName
, const wxxVariant
&value
) const ;
1693 virtual wxxVariant
GetProperty (wxObject
*object
, const wxChar
*propertyName
) const;
1695 // Runtime access to objects for collection properties by property name
1696 virtual wxxVariantArray
GetPropertyCollection(wxObject
*object
, const wxChar
*propertyName
) const ;
1697 virtual void AddToPropertyCollection(wxObject
*object
, const wxChar
*propertyName
, const wxxVariant
& value
) const ;
1699 // we must be able to cast variants to wxObject pointers, templates seem not to be suitable
1700 wxObject
* VariantToInstance( wxxVariant
&data
) const
1701 { if ( data
.GetTypeInfo()->GetKind() == wxT_OBJECT
)
1702 return m_variantToObjectConverter( data
) ;
1704 return m_variantOfPtrToObjectConverter( data
) ;
1707 wxxVariant
InstanceToVariant( wxObject
*object
) const { return m_objectToVariantConverter( object
) ; }
1709 // find property by name
1710 virtual const wxPropertyInfo
*FindPropertyInfo (const wxChar
*PropertyName
) const ;
1712 // find handler by name
1713 virtual const wxHandlerInfo
*FindHandlerInfo (const wxChar
*PropertyName
) const ;
1715 // find property by name
1716 virtual wxPropertyInfo
*FindPropertyInfoInThisClass (const wxChar
*PropertyName
) const ;
1718 // find handler by name
1719 virtual wxHandlerInfo
*FindHandlerInfoInThisClass (const wxChar
*PropertyName
) const ;
1721 // puts all the properties of this class and its superclasses in the map, as long as there is not yet
1722 // an entry with the same name (overriding mechanism)
1723 void GetProperties( wxPropertyInfoMap
&map
) const ;
1725 const wxChar
*m_className
;
1727 wxObjectConstructorFn m_objectConstructor
;
1729 // class info object live in a linked list:
1730 // pointers to its head and the next element in it
1732 static wxClassInfo
*sm_first
;
1733 wxClassInfo
*m_next
;
1735 // FIXME: this should be private (currently used directly by way too
1737 static wxHashTable
*sm_classTable
;
1740 wxPropertyInfo
* m_firstProperty
;
1741 wxHandlerInfo
* m_firstHandler
;
1743 const wxClassInfo
** m_parents
;
1744 const wxChar
* m_unitName
;
1746 wxConstructorBridge
* m_constructor
;
1747 const wxChar
** m_constructorProperties
;
1748 const int m_constructorPropertiesCount
;
1749 wxVariantToObjectConverter m_variantOfPtrToObjectConverter
;
1750 wxVariantToObjectConverter m_variantToObjectConverter
;
1751 wxObjectToVariantConverter m_objectToVariantConverter
;
1752 wxObjectStreamingCallback m_streamingCallback
;
1753 const wxPropertyAccessor
*FindAccessor (const wxChar
*propertyName
) const ;
1756 // InitializeClasses() helper
1757 static wxClassInfo
*GetBaseByName(const wxChar
*name
) ;
1760 // registers the class
1764 DECLARE_NO_COPY_CLASS(wxClassInfo
)
1768 WXDLLIMPEXP_BASE wxObject
*wxCreateDynamicObject(const wxChar
*name
);
1770 // ----------------------------------------------------------------------------
1772 // ----------------------------------------------------------------------------
1774 // this object leads to having a pure runtime-instantiation
1776 class WXDLLIMPEXP_BASE wxDynamicClassInfo
: public wxClassInfo
1778 friend class WXDLLIMPEXP_BASE wxDynamicObject
;
1780 wxDynamicClassInfo( const wxChar
*_UnitName
, const wxChar
*_ClassName
, const wxClassInfo
* superClass
) ;
1781 virtual ~wxDynamicClassInfo() ;
1783 // constructs a wxDynamicObject with an instance
1784 virtual wxObject
*AllocateObject() const ;
1786 // Call the Create method for a class
1787 virtual void Create (wxObject
*object
, int ParamCount
, wxxVariant
*Params
) const ;
1789 // get number of parameters for constructor
1790 virtual int GetCreateParamCount() const ;
1792 // get i-th constructor parameter
1793 virtual const wxChar
* GetCreateParamName(int i
) const ;
1795 // Runtime access to objects by property name, and variant data
1796 virtual void SetProperty (wxObject
*object
, const wxChar
*PropertyName
, const wxxVariant
&Value
) const ;
1797 virtual wxxVariant
GetProperty (wxObject
*object
, const wxChar
*PropertyName
) const ;
1799 // adds a property to this class at runtime
1800 void AddProperty( const wxChar
*propertyName
, const wxTypeInfo
* typeInfo
) ;
1802 // removes an existing runtime-property
1803 void RemoveProperty( const wxChar
*propertyName
) ;
1805 // renames an existing runtime-property
1806 void RenameProperty( const wxChar
*oldPropertyName
, const wxChar
*newPropertyName
) ;
1808 // as a handler to this class at runtime
1809 void AddHandler( const wxChar
*handlerName
, wxObjectEventFunction address
, const wxClassInfo
* eventClassInfo
) ;
1811 // removes an existing runtime-handler
1812 void RemoveHandler( const wxChar
*handlerName
) ;
1814 // renames an existing runtime-handler
1815 void RenameHandler( const wxChar
*oldHandlerName
, const wxChar
*newHandlerName
) ;
1817 struct wxDynamicClassInfoInternal
;
1818 wxDynamicClassInfoInternal
* m_data
;
1821 // ----------------------------------------------------------------------------
1822 // Dynamic class macros
1823 // ----------------------------------------------------------------------------
1825 #define _DECLARE_DYNAMIC_CLASS(name) \
1827 static wxClassInfo sm_class##name; \
1828 static const wxClassInfo* sm_classParents##name[] ; \
1829 static wxPropertyInfo* GetPropertiesStatic() ; \
1830 static wxHandlerInfo* GetHandlersStatic() ; \
1831 static wxClassInfo *GetClassInfoStatic() \
1832 { return &name::sm_class##name; } \
1833 virtual wxClassInfo *GetClassInfo() const \
1834 { return &name::sm_class##name; }
1836 #define DECLARE_DYNAMIC_CLASS(name) \
1837 static wxConstructorBridge* sm_constructor##name ; \
1838 static const wxChar * sm_constructorProperties##name[] ; \
1839 static const int sm_constructorPropertiesCount##name ; \
1840 _DECLARE_DYNAMIC_CLASS(name)
1842 #define DECLARE_DYNAMIC_CLASS_NO_ASSIGN(name) \
1843 DECLARE_NO_ASSIGN_CLASS(name) \
1844 DECLARE_DYNAMIC_CLASS(name)
1846 #define DECLARE_DYNAMIC_CLASS_NO_COPY(name) \
1847 DECLARE_NO_COPY_CLASS(name) \
1848 DECLARE_DYNAMIC_CLASS(name)
1850 #define DECLARE_ABSTRACT_CLASS(name) _DECLARE_DYNAMIC_CLASS(name)
1851 #define DECLARE_CLASS(name) DECLARE_DYNAMIC_CLASS(name)
1853 // -----------------------------------
1854 // for concrete classes
1855 // -----------------------------------
1857 // Single inheritance with one base class
1859 #define _TYPEINFO_CLASSES(n , toString , fromString ) \
1860 wxClassTypeInfo s_typeInfo##n(wxT_OBJECT , &n::sm_class##n , toString , fromString , typeid(n).name()) ; \
1861 wxClassTypeInfo s_typeInfoPtr##n(wxT_OBJECT_PTR , &n::sm_class##n , toString , fromString , typeid(n*).name()) ;
1863 #define _IMPLEMENT_DYNAMIC_CLASS(name, basename, unit , callback) \
1864 wxObject* wxConstructorFor##name() \
1865 { return new name; } \
1866 const wxClassInfo* name::sm_classParents##name[] = { &basename::sm_class##basename ,NULL } ; \
1867 wxObject* wxVariantOfPtrToObjectConverter##name ( wxxVariant &data ) { return data.Get<name*>() ; } \
1868 wxxVariant wxObjectToVariantConverter##name ( wxObject *data ) { return wxxVariant( dynamic_cast<name*> (data) ) ; } \
1869 wxClassInfo name::sm_class##name(sm_classParents##name , wxT(unit) , wxT(#name), \
1870 (int) sizeof(name), \
1871 (wxObjectConstructorFn) wxConstructorFor##name , \
1872 name::GetPropertiesStatic(),name::GetHandlersStatic(),name::sm_constructor##name , name::sm_constructorProperties##name , \
1873 name::sm_constructorPropertiesCount##name , wxVariantOfPtrToObjectConverter##name , NULL , wxObjectToVariantConverter##name , callback);
1875 #define _IMPLEMENT_DYNAMIC_CLASS_WITH_COPY(name, basename, unit, callback ) \
1876 wxObject* wxConstructorFor##name() \
1877 { return new name; } \
1878 const wxClassInfo* name::sm_classParents##name[] = { &basename::sm_class##basename ,NULL } ; \
1879 wxObject* wxVariantToObjectConverter##name ( wxxVariant &data ) { return &data.Get<name>() ; } \
1880 wxObject* wxVariantOfPtrToObjectConverter##name ( wxxVariant &data ) { return data.Get<name*>() ; } \
1881 wxxVariant wxObjectToVariantConverter##name ( wxObject *data ) { return wxxVariant( dynamic_cast<name*> (data) ) ; } \
1882 wxClassInfo name::sm_class##name(sm_classParents##name , wxT(unit) , wxT(#name), \
1883 (int) sizeof(name), \
1884 (wxObjectConstructorFn) wxConstructorFor##name , \
1885 name::GetPropertiesStatic(),name::GetHandlersStatic(),name::sm_constructor##name , name::sm_constructorProperties##name , \
1886 name::sm_constructorPropertiesCount##name , wxVariantOfPtrToObjectConverter##name , wxVariantToObjectConverter##name , wxObjectToVariantConverter##name, callback);
1888 #define IMPLEMENT_DYNAMIC_CLASS_WITH_COPY( name , basename ) \
1889 _IMPLEMENT_DYNAMIC_CLASS_WITH_COPY( name , basename , "" , NULL ) \
1890 _TYPEINFO_CLASSES(name, NULL , NULL) \
1891 const wxPropertyInfo *name::GetPropertiesStatic() { return (wxPropertyInfo*) NULL ; } \
1892 const wxHandlerInfo *name::GetHandlersStatic() { return (wxHandlerInfo*) NULL ; } \
1893 wxCONSTRUCTOR_DUMMY( name )
1895 #define IMPLEMENT_DYNAMIC_CLASS( name , basename ) \
1896 _IMPLEMENT_DYNAMIC_CLASS( name , basename , "" , NULL ) \
1897 _TYPEINFO_CLASSES(name, NULL , NULL) \
1898 wxPropertyInfo *name::GetPropertiesStatic() { return (wxPropertyInfo*) NULL ; } \
1899 wxHandlerInfo *name::GetHandlersStatic() { return (wxHandlerInfo*) NULL ; } \
1900 wxCONSTRUCTOR_DUMMY( name )
1902 #define IMPLEMENT_DYNAMIC_CLASS_XTI( name , basename , unit ) \
1903 _IMPLEMENT_DYNAMIC_CLASS( name , basename , unit , NULL ) \
1904 _TYPEINFO_CLASSES(name, NULL , NULL)
1906 #define IMPLEMENT_DYNAMIC_CLASS_XTI_CALLBACK( name , basename , unit , callback ) \
1907 _IMPLEMENT_DYNAMIC_CLASS( name , basename , unit , &callback ) \
1908 _TYPEINFO_CLASSES(name, NULL , NULL)
1910 #define IMPLEMENT_DYNAMIC_CLASS_WITH_COPY_XTI( name , basename , unit ) \
1911 _IMPLEMENT_DYNAMIC_CLASS_WITH_COPY( name , basename , unit , NULL ) \
1912 _TYPEINFO_CLASSES(name, NULL , NULL)
1914 #define IMPLEMENT_DYNAMIC_CLASS_WITH_COPY_AND_STREAMERS_XTI( name , basename , unit , toString , fromString ) \
1915 _IMPLEMENT_DYNAMIC_CLASS_WITH_COPY( name , basename , unit , NULL ) \
1916 _TYPEINFO_CLASSES(name, toString , fromString)
1918 // this is for classes that do not derive from wxobject, there are no creators for these
1920 #define IMPLEMENT_DYNAMIC_CLASS_NO_WXOBJECT_NO_BASE_XTI( name , unit ) \
1921 const wxClassInfo* name::sm_classParents##name[] = { NULL } ; \
1922 wxClassInfo name::sm_class##name(sm_classParents##name , wxT("") , wxT(#name), \
1923 (int) sizeof(name), \
1924 (wxObjectConstructorFn) 0 , \
1925 name::GetPropertiesStatic(),name::GetHandlersStatic(),0 , 0 , \
1927 _TYPEINFO_CLASSES(name, NULL , NULL)
1929 // this is for subclasses that still do not derive from wxobject
1931 #define IMPLEMENT_DYNAMIC_CLASS_NO_WXOBJECT_XTI( name , basename, unit ) \
1932 const wxClassInfo* name::sm_classParents##name[] = { &basename::sm_class##basename ,NULL } ; \
1933 wxClassInfo name::sm_class##name(sm_classParents##name , wxT("") , wxT(#name), \
1934 (int) sizeof(name), \
1935 (wxObjectConstructorFn) 0 , \
1936 name::GetPropertiesStatic(),name::GetHandlersStatic(),0 , 0 , \
1938 _TYPEINFO_CLASSES(name, NULL , NULL)
1941 // Multiple inheritance with two base classes
1943 #define _IMPLEMENT_DYNAMIC_CLASS2(name, basename, basename2, unit) \
1944 wxObject* wxConstructorFor##name() \
1945 { return new name; } \
1946 const wxClassInfo* name::sm_classParents##name[] = { &basename::sm_class##basename ,&basename2::sm_class##basename2 , NULL } ; \
1947 wxObject* wxVariantToObjectConverter##name ( wxxVariant &data ) { return data.Get<name*>() ; } \
1948 wxxVariant wxObjectToVariantConverter##name ( wxObject *data ) { return wxxVariant( dynamic_cast<name*> (data) ) ; } \
1949 wxClassInfo name::sm_class##name(sm_classParents##name , wxT(unit) , wxT(#name), \
1950 (int) sizeof(name), \
1951 (wxObjectConstructorFn) wxConstructorFor##name , \
1952 name::GetPropertiesStatic(),name::GetHandlersStatic(),name::sm_constructor##name , name::sm_constructorProperties##name , \
1953 name::sm_constructorPropertiesCount##name , wxVariantToObjectConverter##name , wxObjectToVariantConverter##name); \
1955 #define IMPLEMENT_DYNAMIC_CLASS2( name , basename , basename2) \
1956 _IMPLEMENT_DYNAMIC_CLASS2( name , basename , basename2 , "") \
1957 _TYPEINFO_CLASSES(name, NULL , NULL) \
1958 wxPropertyInfo *name::GetPropertiesStatic() { return (wxPropertyInfo*) NULL ; } \
1959 wxHandlerInfo *name::GetHandlersStatic() { return (wxHandlerInfo*) NULL ; } \
1960 wxCONSTRUCTOR_DUMMY( name )
1962 #define IMPLEMENT_DYNAMIC_CLASS2_XTI( name , basename , basename2, unit) \
1963 _IMPLEMENT_DYNAMIC_CLASS2( name , basename , basename2 , unit) \
1964 _TYPEINFO_CLASSES(name, NULL , NULL)
1967 // -----------------------------------
1968 // for abstract classes
1969 // -----------------------------------
1971 // Single inheritance with one base class
1973 #define _IMPLEMENT_ABSTRACT_CLASS(name, basename) \
1974 const wxClassInfo* name::sm_classParents##name[] = { &basename::sm_class##basename ,NULL } ; \
1975 wxObject* wxVariantToObjectConverter##name ( wxxVariant &data ) { return data.Get<name*>() ; } \
1976 wxObject* wxVariantOfPtrToObjectConverter##name ( wxxVariant &data ) { return data.Get<name*>() ; } \
1977 wxxVariant wxObjectToVariantConverter##name ( wxObject *data ) { return wxxVariant( dynamic_cast<name*> (data) ) ; } \
1978 wxClassInfo name::sm_class##name(sm_classParents##name , wxT("") , wxT(#name), \
1979 (int) sizeof(name), \
1980 (wxObjectConstructorFn) 0 , \
1981 name::GetPropertiesStatic(),name::GetHandlersStatic(),0 , 0 , \
1982 0 , wxVariantOfPtrToObjectConverter##name ,wxVariantToObjectConverter##name , wxObjectToVariantConverter##name); \
1983 _TYPEINFO_CLASSES(name, NULL , NULL)
1985 #define IMPLEMENT_ABSTRACT_CLASS( name , basename ) \
1986 _IMPLEMENT_ABSTRACT_CLASS( name , basename ) \
1987 wxHandlerInfo *name::GetHandlersStatic() { return (wxHandlerInfo*) NULL ; } \
1988 wxPropertyInfo *name::GetPropertiesStatic() { return (wxPropertyInfo*) NULL ; }
1990 // Multiple inheritance with two base classes
1992 #define IMPLEMENT_ABSTRACT_CLASS2(name, basename1, basename2) \
1993 wxClassInfo name::sm_class##name(wxT(#name), wxT(#basename1), \
1994 wxT(#basename2), (int) sizeof(name), \
1995 (wxObjectConstructorFn) 0);
1997 #define IMPLEMENT_CLASS IMPLEMENT_ABSTRACT_CLASS
1998 #define IMPLEMENT_CLASS2 IMPLEMENT_ABSTRACT_CLASS2
2000 #define wxBEGIN_EVENT_TABLE( a , b ) BEGIN_EVENT_TABLE( a , b )
2001 #define wxEND_EVENT_TABLE() END_EVENT_TABLE()
2003 // --------------------------------------------------------------------------
2004 // Collection Support
2005 // --------------------------------------------------------------------------
2007 template<typename iter
, typename collection_t
> void wxListCollectionToVariantArray( const collection_t
& coll
, wxxVariantArray
&value
)
2009 iter current
= coll
.GetFirst() ;
2012 value
.Add( new wxxVariant(current
->GetData()) ) ;
2013 current
= current
->GetNext();
2017 template<typename collection_t
> void wxArrayCollectionToVariantArray( const collection_t
& coll
, wxxVariantArray
&value
)
2019 for( size_t i
= 0 ; i
< coll
.GetCount() ; i
++ )
2021 value
.Add( new wxxVariant(coll
[i
]) ) ;