xti introduction
[wxWidgets.git] / include / wx / xti.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/xti.h
3 // Purpose: runtime metadata information (extended class info)
4 // Author: Stefan Csomor
5 // Modified by:
6 // Created: 27/07/03
7 // RCS-ID: $Id$
8 // Copyright: (c) 1997 Julian Smart
9 // (c) 2003 Stefan Csomor
10 // Licence: wxWindows licence
11 /////////////////////////////////////////////////////////////////////////////
12
13 #ifndef _WX_XTIH__
14 #define _WX_XTIH__
15
16 #if defined(__GNUG__) && !defined(__APPLE__)
17 #pragma interface "xti.h"
18 #endif
19
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.
23 //
24 // This means we have the following domains :
25 //
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
34
35 // ----------------------------------------------------------------------------
36 // headers
37 // ----------------------------------------------------------------------------
38
39 #include "wx/defs.h"
40 #include "wx/memory.h"
41 #include "wx/set.h"
42 #include "wx/string.h"
43
44 class WXDLLIMPEXP_BASE wxObject;
45 class WXDLLIMPEXP_BASE wxClassInfo;
46 class WXDLLIMPEXP_BASE wxHashTable;
47 class WXDLLIMPEXP_BASE wxObjectRefData;
48 class WXDLLIMPEXP_BASE wxEvent;
49
50 typedef void (wxObject::*wxObjectEventFunction)(wxEvent&);
51
52 // ----------------------------------------------------------------------------
53 // Enum Support
54 //
55 // In the header files there would no change from pure c++ code, in the
56 // implementation, an enum would have
57 // to be enumerated eg :
58 //
59 // WX_BEGIN_ENUM( wxFlavor )
60 // WX_ENUM_MEMBER( Vanilla )
61 // WX_ENUM_MEMBER( Chocolate )
62 // WX_ENUM_MEMBER( Strawberry )
63 // WX_END_ENUM( wxFlavor )
64 // ----------------------------------------------------------------------------
65
66 struct WXDLLIMPEXP_BASE wxEnumMemberData
67 {
68 const wxChar* m_name;
69 int m_value;
70 };
71
72 class WXDLLIMPEXP_BASE wxEnumData
73 {
74 public :
75 wxEnumData( wxEnumMemberData* data ) ;
76
77 // returns true if the member has been found and sets the int value
78 // pointed to accordingly (if ptr != null )
79 // if not found returns false, value left unchanged
80 bool HasEnumMemberValue( const wxChar *name , int *value = NULL ) ;
81
82 // returns the value of the member, if not found in debug mode an
83 // assert is issued, in release 0 is returned
84 int GetEnumMemberValue(const wxChar *name );
85
86 // returns the name of the enum member having the passed in value
87 // returns an emtpy string if not found
88 const wxChar *GetEnumMemberName(int value);
89
90 // returns the number of members in this enum
91 int GetEnumCount() { return m_count ; }
92
93 // returns the value of the nth member
94 int GetEnumMemberValueByIndex( int n ) ;
95
96 // returns the value of the nth member
97 const wxChar *GetEnumMemberNameByIndex( int n ) ;
98 private :
99 wxEnumMemberData *m_members;
100 int m_count ;
101 };
102
103 #define WX_BEGIN_ENUM( e ) \
104 wxEnumMemberData s_enumDataMembers##e[] = {
105
106 #define WX_ENUM_MEMBER( v ) { #v, v } ,
107
108 #define WX_END_ENUM( e ) { NULL , 0 } } ; \
109 wxEnumData s_enumData##e( s_enumDataMembers##e ) ; \
110 wxEnumData *wxGetEnumData(e) { return &s_enumData##e ; } \
111 template<> const wxTypeInfo* wxGetTypeInfo( e * ){ static wxEnumTypeInfo s_typeInfo(wxT_ENUM , &s_enumData##e) ; return &s_typeInfo ; } \
112 template<> void wxStringReadValue(const wxString& s , e &data ) \
113 { \
114 data = (e) s_enumData##e.GetEnumMemberValue(s) ; \
115 } \
116 template<> void wxStringWriteValue(wxString &s , const e &data ) \
117 { \
118 s = s_enumData##e.GetEnumMemberName((int)data) ; \
119 }
120
121 // ----------------------------------------------------------------------------
122 // Set Support
123 //
124 // in the header :
125 //
126 // enum wxFlavor
127 // {
128 // Vanilla,
129 // Chocolate,
130 // Strawberry,
131 // };
132 //
133 // typedef wxSet<wxFlavor> wxCoupe ;
134 //
135 // in the implementation file :
136 //
137 // WX_BEGIN_ENUM( wxFlavor )
138 // WX_ENUM_MEMBER( Vanilla )
139 // WX_ENUM_MEMBER( Chocolate )
140 // WX_ENUM_MEMBER( Strawberry )
141 // WX_END_ENUM( wxFlavor )
142 //
143 // WX_IMPLEMENT_SET_STREAMING( wxCoupe , wxFlavor )
144 //
145 // implementation note : no partial specialization for streaming, but a delegation to a
146 // different class
147 //
148 // ----------------------------------------------------------------------------
149
150 // in order to remove dependancy on string tokenizer
151 void wxSetStringToArray( const wxString &s , wxArrayString &array ) ;
152
153 template<typename e>
154 void wxSetFromString(const wxString &s , wxSet<e> &data )
155 {
156 wxEnumData* edata = wxGetEnumData((e) 0) ;
157 data.Clear() ;
158
159 wxArrayString array ;
160 wxSetStringToArray( s , array ) ;
161 wxString flag;
162 for ( int i = 0 ; i < array.Count() ; ++i )
163 {
164 flag = array[i] ;
165 int ivalue ;
166 if ( edata->HasEnumMemberValue( flag , &ivalue ) )
167 {
168 data.Set( (e) ivalue ) ;
169 }
170 }
171 }
172
173 template<typename e>
174 void wxSetToString( wxString &s , const wxSet<e> &data )
175 {
176 wxEnumData* edata = wxGetEnumData((e) 0) ;
177 int count = edata->GetEnumCount() ;
178 int i ;
179 s.Clear() ;
180 for ( i = 0 ; i < count ; i++ )
181 {
182 e value = (e) edata->GetEnumMemberValueByIndex(i) ;
183 if ( data.Contains( value ) )
184 {
185 // this could also be done by the templated calls
186 if ( !s.IsEmpty() )
187 s +="|" ;
188 s += edata->GetEnumMemberNameByIndex(i) ;
189 }
190 }
191 }
192
193 // if the wxSet specialization above does not work for all compilers, add this to the WX_IMPLEMENT_SET_STREAMING macro
194 // template<> const wxTypeInfo* wxGetTypeInfo( SetName * ){ static wxEnumTypeInfo s_typeInfo(wxT_SET , &s_enumData##e) ; return &s_typeInfo ; }\
195
196 #define WX_IMPLEMENT_SET_STREAMING(SetName,e) \
197 template<> void wxStringReadValue(const wxString &s , wxSet<e> &data ) \
198 { \
199 wxSetFromString( s , data ) ; \
200 } \
201 template<> void wxStringWriteValue( wxString &s , const wxSet<e> &data ) \
202 { \
203 wxSetToString( s , data ) ; \
204 } \
205
206
207 // ----------------------------------------------------------------------------
208 // Type Information
209 // ----------------------------------------------------------------------------
210
211 enum wxTypeKind
212 {
213 wxT_VOID = 0, // unknown type
214 wxT_BOOL,
215 wxT_CHAR,
216 wxT_UCHAR,
217 wxT_INT,
218 wxT_UINT,
219 wxT_LONG,
220 wxT_ULONG,
221 wxT_FLOAT,
222 wxT_DOUBLE,
223 wxT_STRING, // must be wxString
224 wxT_SET, // must be wxSet<> template
225 wxT_ENUM,
226 wxT_OBJECT, // must be a component (pointer !!!)
227 wxT_CUSTOM, // user defined type (e.g. wxPoint)
228 wxT_DELEGATE , // for connecting against an event source
229 wxT_LAST_TYPE_KIND // sentinel for bad data, asserts, debugging
230 };
231
232 class WXDLLIMPEXP_BASE wxTypeInfo
233 {
234 public :
235 wxTypeInfo() : m_kind( wxT_VOID) {}
236 virtual ~wxTypeInfo() {}
237 wxTypeKind GetKind() const { return m_kind ; }
238 protected :
239 wxTypeKind m_kind ;
240 };
241
242 class WXDLLIMPEXP_BASE wxBuiltInTypeInfo : public wxTypeInfo
243 {
244 public :
245 wxBuiltInTypeInfo( wxTypeKind kind ) { assert( kind < wxT_SET ) ; m_kind = kind ;}
246 } ;
247
248 class WXDLLIMPEXP_BASE wxCustomTypeInfo : public wxTypeInfo
249 {
250 public :
251 wxCustomTypeInfo( const wxChar *typeName )
252 { m_kind = wxT_CUSTOM ; m_typeName = typeName ;}
253 const wxChar *GetTypeName() const { assert( m_kind == wxT_CUSTOM ) ; return m_typeName ; }
254 private :
255 const wxChar *m_typeName; // Kind == wxT_CUSTOM
256 } ;
257
258 class WXDLLIMPEXP_BASE wxEnumTypeInfo : public wxTypeInfo
259 {
260 public :
261 wxEnumTypeInfo( wxTypeKind kind , wxEnumData* enumInfo )
262 { assert( kind == wxT_ENUM || kind == wxT_SET ) ; m_kind = kind ; m_enumInfo = enumInfo ;}
263 const wxEnumData* GetEnumData() const { assert( m_kind == wxT_ENUM || m_kind == wxT_SET ) ; return m_enumInfo ; }
264 private :
265 wxEnumData *m_enumInfo; // Kind == wxT_ENUM or Kind == wxT_SET
266 } ;
267
268 class WXDLLIMPEXP_BASE wxClassTypeInfo : public wxTypeInfo
269 {
270 public :
271 wxClassTypeInfo( wxClassInfo* classInfo )
272 { m_kind = wxT_OBJECT ; m_classInfo = classInfo ;}
273 const wxClassInfo *GetClassInfo() const { assert( m_kind == wxT_OBJECT ) ; return m_classInfo ; }
274 private :
275 wxClassInfo *m_classInfo; // Kind == wxT_OBJECT - could be NULL
276 } ;
277
278 // a delegate is an exposed event source
279
280 class WXDLLIMPEXP_BASE wxDelegateTypeInfo : public wxTypeInfo
281 {
282 public :
283 wxDelegateTypeInfo( int eventType , wxClassInfo* eventClass )
284 { m_kind = wxT_DELEGATE ; m_eventClass = eventClass ; m_eventType = eventType ;}
285 const wxClassInfo *GetEventClass() const { assert( m_kind == wxT_DELEGATE ) ; return m_eventClass ; }
286 int GetEventType() const { assert( m_kind == wxT_DELEGATE ) ; return m_eventType ; }
287 private :
288 const wxClassInfo *m_eventClass; // (extended will merge into classinfo)
289 int m_eventType ;
290 } ;
291
292 template<typename T> const wxTypeInfo* wxGetTypeInfo( T * ) ;
293
294 template<typename T> const wxTypeInfo* wxGetTypeInfo( wxSet<T> * )
295 {
296 static wxEnumTypeInfo s_typeInfo(wxT_SET , wxGetEnumData((T) 0) ) ; return &s_typeInfo ;
297 }
298
299 // this macro is for usage with custom, non-object derived classes and structs, wxPoint is such a custom type
300
301 #define WX_CUSTOM_TYPE_INFO( e ) \
302 template<> const wxTypeInfo* wxGetTypeInfo( e * ){ static wxCustomTypeInfo s_typeInfo(#e) ; return &s_typeInfo ; } \
303
304 // ----------------------------------------------------------------------------
305 // value streaming
306 //
307 // streaming is defined for xml constructs right now, the aim is to make this
308 // pluggable in the future
309 // ----------------------------------------------------------------------------
310
311 // convenience function (avoids including xml headers in users code)
312
313 class wxXmlNode ;
314 void wxXmlAddContentToNode( wxXmlNode* node , const wxString& data ) ;
315 wxString wxXmlGetContentFromNode( wxXmlNode *node ) ;
316
317 // templated streaming, every type must have their specialization for these methods
318
319 template<typename T>
320 void wxStringReadValue( const wxString &s , T &data ) ;
321
322 template<typename T>
323 void wxStringWriteValue( wxString &s , const T &data) ;
324
325 // for simple types this default implementation is ok, composited structures will have to
326 // loop through their properties
327
328 template<typename T>
329 void wxXmlReadValue( wxXmlNode *node , T &data )
330 {
331 wxStringReadValue<T>( wxXmlGetContentFromNode( node ) , data ) ;
332 }
333
334 template<typename T>
335 void wxXmlWriteValue( wxXmlNode *node , const T &data)
336 {
337 wxString s ;
338 wxStringWriteValue<T>( s, data ) ;
339 wxXmlAddContentToNode( node ,s ) ;
340 }
341
342 // ----------------------------------------------------------------------------
343 // wxxVariant as typesafe data holder
344 // ----------------------------------------------------------------------------
345
346 class WXDLLIMPEXP_BASE wxxVariantData
347 {
348 public:
349 virtual ~wxxVariantData() {}
350
351 // return a heap allocated duplicate
352 virtual wxxVariantData* Clone() const = 0 ;
353
354 // returns the type info of the contentc
355 virtual const wxTypeInfo* GetTypeInfo() const = 0 ;
356
357 // write the value into an xml node
358 virtual void Write( wxXmlNode* node ) const = 0 ;
359
360 // read the value from the xml node
361 virtual void Read( wxXmlNode* node ) = 0 ;
362
363 // write the value into a string
364 virtual void Write( wxString &s ) const = 0 ;
365
366 // read the value from a string
367 virtual void Read( const wxString &s) = 0 ;
368 } ;
369
370 template<typename T> class WXDLLIMPEXP_BASE wxxVariantDataT : public wxxVariantData
371 {
372 public:
373 wxxVariantDataT(T d) : m_data(d) {}
374 virtual ~wxxVariantDataT() {}
375
376 // get a copy of the stored data
377 T Get() const { return m_data; }
378
379 // set the data
380 void Set(T d) { m_data = d; }
381
382 // return a heap allocated duplicate
383 virtual wxxVariantData* Clone() const { return new wxxVariantDataT<T>( Get() ) ; }
384
385 // returns the type info of the contentc
386 virtual const wxTypeInfo* GetTypeInfo() const { return wxGetTypeInfo( (T*) NULL ) ; }
387
388 // write the value into an xml node
389 virtual void Write( wxXmlNode* node ) const { wxXmlWriteValue( node , m_data ) ; }
390
391 // read the value from the xml node
392 virtual void Read( wxXmlNode* node ) { wxXmlReadValue( node , m_data ) ; }
393
394 // write the value into a string
395 virtual void Write( wxString &s ) const { wxStringWriteValue( s , m_data ) ; }
396
397 // read the value from a string
398 virtual void Read( const wxString &s) { wxStringReadValue( s , m_data ) ; }
399
400 private:
401 T m_data;
402 };
403
404 class WXDLLIMPEXP_BASE wxxVariant
405 {
406 public :
407 wxxVariant() { m_data = NULL ; }
408 wxxVariant( wxxVariantData* data , const wxString& name = wxT("") ) : m_data(data) , m_name(name) {}
409 wxxVariant( const wxxVariant &d ) { if ( d.m_data ) m_data = d.m_data->Clone() ; else m_data = NULL ; m_name = d.m_name ; }
410
411 template<typename T> wxxVariant( T data , const wxString& name = wxT("") ) :
412 m_data(new wxxVariantDataT<T>(data) ), m_name(name) {}
413 ~wxxVariant() { delete m_data ; }
414
415 // get a copy of the stored data
416 template<typename T> T Get() const
417 {
418 wxxVariantDataT<T> *dataptr = dynamic_cast<wxxVariantDataT<T>*> (m_data) ;
419 assert( dataptr ) ;
420 return dataptr->Get() ;
421 }
422
423 // stores the data
424 template<typename T> Set(T data) const
425 {
426 delete m_data ;
427 m_data = new wxxVariantDataT<T>(data) ;
428 }
429
430 wxxVariant& operator=(const wxxVariant &d)
431 {
432 m_data = d.m_data->Clone() ;
433 m_name = d.m_name ;
434 return *this ;
435 }
436
437 // gets the stored data casted to a wxObject* , returning NULL if cast is not possible
438 wxObject* GetAsObject() const ;
439
440 // write the value into an xml node
441 void Write( wxXmlNode* node ) const { m_data->Write( node ) ; }
442
443 // read the value from the xml node
444 void Read( wxXmlNode* node ) { m_data->Read( node ) ; }
445
446 // write the value into a string
447 void Write( wxString &s ) const { m_data->Write( s ) ; }
448
449 // read the value from a string
450 void Read( const wxString &s) { m_data->Read( s ) ; }
451
452 // returns this value as string
453 wxString GetAsString() const
454 {
455 wxString s ;
456 Write( s ) ;
457 return s ;
458 }
459
460 void SetFromString( const wxString &s)
461 {
462 Read( s ) ;
463 }
464 private :
465 wxxVariantData* m_data ;
466 wxString m_name ;
467 } ;
468
469 // ----------------------------------------------------------------------------
470 // Property Support
471 //
472 // wxPropertyInfo is used to inquire of the property by name. It doesn't
473 // provide access to the property, only information about it. If you
474 // want access, look at wxPropertyAccessor.
475 // ----------------------------------------------------------------------------
476
477 class WXDLLIMPEXP_BASE wxPropertyAccessor
478 {
479 public :
480 virtual void SetProperty(wxObject *object, const wxxVariant &value) const = 0 ;
481 virtual wxxVariant GetProperty(wxObject *object) const = 0 ;
482 virtual bool HasSetter() const = 0 ;
483 virtual bool HasGetter() const = 0 ;
484 const char * GetGetterName() const { return m_setterName ; }
485 const char * GetSetterName() const { return m_getterName ; }
486 virtual wxxVariant ReadValue( wxXmlNode* node ) const = 0 ;
487 virtual void WriteValue( wxXmlNode* node , wxObject *o ) const = 0 ;
488 virtual wxxVariant ReadValue( const wxString &value ) const = 0 ;
489 virtual void WriteValue( wxString& value , wxObject *o ) const = 0 ;
490 protected :
491 const char *m_setterName ;
492 const char *m_getterName ;
493 };
494
495 template<typename T>
496 void wxXmlReadValue( wxXmlNode *node , T &data ) ;
497
498 template<typename T>
499 void wxXmlWriteValue( wxXmlNode *node , const T &data) ;
500
501 template<class Klass, typename T>
502 class WXDLLIMPEXP_BASE wxPropertyAccessorT : public wxPropertyAccessor
503 {
504 public:
505 typedef void (Klass::*setter_t)(T value);
506 typedef void (Klass::*setter_ref_t)(T& value);
507 typedef T (Klass::*getter_t)() const;
508 typedef const T& (Klass::*getter_ref_t)() const;
509
510 wxPropertyAccessorT(setter_t setter, getter_t getter, const char *g, const char *s)
511 : m_setter(setter), m_setter_ref(NULL), m_getter(getter) ,m_getter_ref(NULL) {m_setterName = s;m_getterName=g ;}
512 wxPropertyAccessorT(setter_ref_t setter, getter_t getter, const char *g, const char *s)
513 : m_setter(NULL), m_setter_ref(setter), m_getter(getter) , m_getter_ref(NULL){m_setterName = s;m_getterName=g ;}
514 wxPropertyAccessorT(setter_ref_t setter, getter_ref_t getter, const char *g, const char *s)
515 : m_setter(NULL), m_setter_ref(setter), m_getter(NULL) , m_getter_ref(getter){m_setterName = s;m_getterName=g ;}
516 wxPropertyAccessorT(setter_t setter, getter_ref_t getter, const char *g, const char *s)
517 : m_setter(NULL), m_setter(setter), m_getter(NULL) , m_getter_ref(getter){m_setterName = s;m_getterName=g ;}
518
519 // returns true if this accessor has a setter
520 bool HasSetter() const { return m_setter != NULL || m_setter_ref != NULL ; }
521
522 // return true if this accessor has a getter
523 bool HasGetter() const { return m_getter != NULL || m_getter_ref != NULL ; }
524
525 // set the property this accessor is responsible for in an object
526 void SetProperty(wxObject *o, const wxxVariant &v) const
527 {
528 Klass *obj = dynamic_cast<Klass*>(o);
529 T value = v.Get<T>();
530 if (m_setter)
531 (obj->*(m_setter))(value);
532 else
533 (obj->*(m_setter_ref))(value);
534 }
535
536 // gets the property this accessor is responsible for from an object
537 wxxVariant GetProperty(wxObject *o) const
538 {
539 return wxxVariant( (wxxVariantData* ) DoGetProperty( o ) ) ;
540 }
541
542 // write the property this accessor is responsible for from an object into
543 // a xml node
544 void WriteValue( wxXmlNode* node , wxObject *o ) const
545 {
546 DoGetProperty( o )->Write( node ) ;
547 }
548
549 // write the property this accessor is responsible for from an object into
550 // a string
551 void WriteValue( wxString& s , wxObject *o ) const
552 {
553 DoGetProperty( o )->Write( s ) ;
554 }
555
556 // read a wxxVariant having the correct type for the property this accessor
557 // is responsible for from an xml node
558 wxxVariant ReadValue( wxXmlNode* node ) const
559 {
560 T data ;
561 wxXmlReadValue( node , data ) ;
562 return wxxVariant( data ) ;
563 }
564
565 // read a wxxVariant having the correct type for the property this accessor
566 // is responsible for from a string
567 wxxVariant ReadValue( const wxString &value ) const
568 {
569 T data ;
570 wxStringReadValue( value , data ) ;
571 return wxxVariant( data ) ;
572 }
573
574 private :
575 wxxVariantDataT<T>* DoGetProperty(wxObject *o) const
576 {
577 Klass *obj = dynamic_cast<Klass*>(o);
578 if ( m_getter )
579 return new wxxVariantDataT<T>( (obj->*(m_getter))() ) ;
580 else
581 return new wxxVariantDataT<T>( (obj->*(m_getter_ref))() ) ;
582 }
583
584 setter_t m_setter;
585 setter_ref_t m_setter_ref;
586 getter_t m_getter;
587 getter_ref_t m_getter_ref ;
588 };
589
590 class WXDLLIMPEXP_BASE wxPropertyInfo
591 {
592 public :
593 wxPropertyInfo( wxPropertyInfo* &iter , const char *name , const char *typeName , const wxTypeInfo* typeInfo , wxPropertyAccessor *accessor , wxxVariant dv ) :
594 m_name( name ) , m_typeName(typeName) , m_typeInfo( typeInfo ) , m_accessor( accessor ) , m_defaultValue( dv )
595 {
596 m_next = iter ;
597 iter = this ;
598 }
599 // return the name of this property
600 const char * GetName() const { return m_name ; }
601
602 // return the typename of this property
603 const char * GetTypeName() const { return m_typeName ; }
604
605 // return the type info of this property
606 const wxTypeInfo * GetTypeInfo() const { return m_typeInfo ; }
607
608 // return the accessor for this property
609 wxPropertyAccessor* GetAccessor() const { return m_accessor ; }
610
611 // returns NULL if this is the last property of this class
612 wxPropertyInfo* GetNext() const { return m_next ; }
613 private :
614 const char * m_name;
615 const char * m_typeName ;
616 const wxTypeInfo* m_typeInfo ;
617 wxPropertyAccessor* m_accessor ;
618 wxxVariant m_defaultValue;
619 // string representation of the default value
620 // to be assigned by the designer to the property
621 // when the component is dropped on the container.
622 wxPropertyInfo* m_next ;
623 };
624
625 #define WX_BEGIN_PROPERTIES_TABLE(theClass) \
626 const wxPropertyInfo *theClass::GetPropertiesStatic() \
627 { \
628 typedef theClass class_t; \
629 static wxPropertyInfo* first = NULL ;
630
631 #define WX_END_PROPERTIES_TABLE() \
632 return first ; }
633
634 #define WX_PROPERTY( name , type , setter , getter ,defaultValue ) \
635 static wxPropertyAccessorT<class_t , type> _accessor##name( setter , getter , #setter , #getter ) ; \
636 static wxPropertyInfo _propertyInfo##name( first , #name , #type , wxGetTypeInfo( (type*) NULL ) ,&_accessor##name , wxxVariant(defaultValue) ) ;
637
638 #define WX_DELEGATE( name , eventType , eventClass ) \
639 static wxDelegateTypeInfo _typeInfo##name( eventType , CLASSINFO( eventClass ) ) ; \
640 static wxPropertyInfo _propertyInfo##name( first , #name , NULL , &_typeInfo##name , NULL , wxxVariant() ) ; \
641
642 // ----------------------------------------------------------------------------
643 // Handler Info
644 //
645 // this is describing an event sink
646 // ----------------------------------------------------------------------------
647
648 class wxHandlerInfo
649 {
650 public :
651 wxHandlerInfo( wxHandlerInfo* &iter , const wxChar *name , wxObjectEventFunction address , const wxClassInfo* eventClassInfo ) :
652 m_name( name ) , m_eventClassInfo( eventClassInfo ) , m_eventFunction( address )
653 {
654 m_next = iter ;
655 iter = this ;
656 }
657
658 // get the name of the handler method
659 const char * GetName() const { return m_name ; }
660
661 // return the class info of the event
662 const wxClassInfo * GetEventClassInfo() const { return m_eventClassInfo ; }
663
664 // get the handler function pointer
665 wxObjectEventFunction GetEventFunction() const { return m_eventFunction ; }
666
667 // returns NULL if this is the last handler of this class
668 wxHandlerInfo* GetNext() const { return m_next ; }
669 private :
670 const wxChar * m_name;
671 wxObjectEventFunction m_eventFunction ;
672 const wxClassInfo* m_eventClassInfo ;
673 wxHandlerInfo* m_next ;
674 };
675
676 #define WX_HANDLER(name,eventClassType) \
677 static wxHandlerInfo _handlerInfo##name( first , #name , (wxObjectEventFunction) &name , CLASSINFO( eventClassType ) ) ;
678
679 #define WX_BEGIN_HANDLERS_TABLE(theClass) \
680 const wxHandlerInfo *theClass::GetHandlersStatic() \
681 { \
682 typedef theClass class_t; \
683 static wxHandlerInfo* first = NULL ;
684
685 #define WX_END_HANDLERS_TABLE() \
686 return first ; }
687
688 // ----------------------------------------------------------------------------
689 // Constructor Bridges
690 //
691 // allow to set up constructors with params during runtime
692 // ----------------------------------------------------------------------------
693
694 class WXDLLIMPEXP_BASE wxConstructorBridge
695 {
696 public :
697 virtual void Create(wxObject *o, wxxVariant *args) = 0;
698 };
699
700 // Creator Bridges for all Numbers of Params
701
702 // no params
703
704 template<typename Class>
705 struct wxConstructorBridge_0 : public wxConstructorBridge
706 {
707 void Create(wxObject *o, wxxVariant *)
708 {
709 Class *obj = dynamic_cast<Class*>(o);
710 obj->Create();
711 }
712 };
713
714 struct wxConstructorBridge_Dummy : public wxConstructorBridge
715 {
716 void Create(wxObject *, wxxVariant *)
717 {
718 }
719 } ;
720
721 #define WX_CONSTRUCTOR_0(klass) \
722 wxConstructorBridge_0<klass> constructor##klass ; \
723 wxConstructorBridge* klass::sm_constructor##klass = &constructor##klass ; \
724 const char *klass::sm_constructorProperties##klass[] = { NULL } ; \
725 const int klass::sm_constructorPropertiesCount##klass = 0 ;
726
727 #define WX_CONSTRUCTOR_DUMMY(klass) \
728 wxConstructorBridge_Dummy constructor##klass ; \
729 wxConstructorBridge* klass::sm_constructor##klass = &constructor##klass ; \
730 const char *klass::sm_constructorProperties##klass[] = { NULL } ; \
731 const int klass::sm_constructorPropertiesCount##klass = 0 ;
732
733 // 1 param
734
735 template<typename Class, typename T0>
736 struct wxConstructorBridge_1 : public wxConstructorBridge
737 {
738 void Create(wxObject *o, wxxVariant *args)
739 {
740 Class *obj = dynamic_cast<Class*>(o);
741 obj->Create(
742 args[0].Get<T0>()
743 );
744 }
745 };
746
747 #define WX_CONSTRUCTOR_1(klass,t0,v0) \
748 wxConstructorBridge_1<klass,t0> constructor##klass ; \
749 wxConstructorBridge* klass::sm_constructor##klass = &constructor##klass ; \
750 const char *klass::sm_constructorProperties##klass[] = { #v0 } ; \
751 const int klass::sm_constructorPropertiesCount##klass = 1 ;
752
753 // 2 params
754
755 template<typename Class,
756 typename T0, typename T1>
757 struct wxConstructorBridge_2 : public wxConstructorBridge
758 {
759 void Create(wxObject *o, wxxVariant *args[])
760 {
761 Class *obj = dynamic_cast<Class*>(o);
762 obj->Create(
763 args[0].Get<T0>() ,
764 args[1].Get<T1>()
765 );
766 }
767 };
768
769 #define WX_CONSTRUCTOR_2(klass,t0,v0,t1,v1) \
770 wxConstructorBridge_2<klass,t0,t1> constructor##klass ; \
771 klass::sm_constructor##klass = &constructor##klass ; \
772 klass::sm_constructorProperties##klass[] = { #v0 , #v1 } ; \
773 klass::sm_constructorPropertiesCount##klass = 2;
774
775 // 3 params
776
777 template<typename Class,
778 typename T0, typename T1, typename T2>
779 struct wxConstructorBridge_3 : public wxConstructorBridge
780 {
781 void Create(wxObject *o, wxxVariant *args[])
782 {
783 Class *obj = dynamic_cast<Class*>(o);
784 obj->Create(
785 args[0].Get<T0>() ,
786 args[1].Get<T1>() ,
787 args[2].Get<T2>()
788 );
789 }
790 };
791
792 #define WX_CONSTRUCTOR_3(klass,t0,v0,t1,v1,t2,v2) \
793 wxConstructorBridge_3<klass,t0,t1,t2> constructor##klass ; \
794 klass::sm_constructor##klass = &constructor##klass ; \
795 klass::sm_constructorProperties##klass[] = { #v0 , #v1 , #v2 } ; \
796 klass::sm_constructorPropertiesCount##klass = 3 ;
797
798 // 4 params
799
800 template<typename Class,
801 typename T0, typename T1, typename T2, typename T3>
802 struct wxConstructorBridge_4 : public wxConstructorBridge
803 {
804 void Create(wxObject *o, wxxVariant *args[])
805 {
806 Class *obj = dynamic_cast<Class*>(o);
807 obj->Create(
808 args[0].Get<T0>() ,
809 args[1].Get<T1>() ,
810 args[2].Get<T2>() ,
811 args[3].Get<T3>()
812 );
813 }
814 };
815
816 #define WX_CONSTRUCTOR_4(klass,t0,v0,t1,v1,t2,v2,t3,v3) \
817 wxConstructorBridge_4<klass,t0,t1,t2,t3> constructor##klass ; \
818 klass::sm_constructor##klass = &constructor##klass ; \
819 klass::sm_constructorProperties##klass[] = { #v0 , #v1 , #v2 , #v3 } ; \
820 klass::sm_constructorPropertiesCount##klass = 4 ;
821
822 // ----------------------------------------------------------------------------
823 // wxClassInfo
824 // ----------------------------------------------------------------------------
825
826 typedef wxObject *(*wxObjectConstructorFn)(void);
827 typedef wxObject* (*wxVariantToObjectConverter)( const wxxVariant &data ) ;
828 typedef wxxVariant (*wxObjectToVariantConverter)( wxObject* ) ;
829
830 class WXDLLIMPEXP_BASE wxClassInfo
831 {
832 public:
833 wxClassInfo(const wxClassInfo **_Parents,
834 const char *_UnitName,
835 const char *_ClassName,
836 int size,
837 wxObjectConstructorFn ctor ,
838 const wxPropertyInfo *_Props ,
839 wxConstructorBridge* _Constructor ,
840 const char ** _ConstructorProperties ,
841 const int _ConstructorPropertiesCount ,
842 wxVariantToObjectConverter _Converter1 ,
843 wxObjectToVariantConverter _Converter2
844 ) : m_parents(_Parents) , m_unitName(_UnitName) ,m_className(_ClassName),
845 m_objectSize(size), m_objectConstructor(ctor) , m_firstProperty(_Props ) , m_constructor( _Constructor ) ,
846 m_constructorProperties(_ConstructorProperties) , m_constructorPropertiesCount(_ConstructorPropertiesCount),
847 m_variantToObjectConverter( _Converter1 ) , m_objectToVariantConverter( _Converter2 ) , m_next(sm_first)
848 {
849 sm_first = this;
850 Register( m_className , this ) ;
851 }
852
853 ~wxClassInfo() ;
854
855 wxObject *CreateObject() { return m_objectConstructor ? (*m_objectConstructor)() : 0; }
856
857 const wxChar *GetClassName() const { return m_className; }
858 const wxClassInfo **GetParents() const { return m_parents; }
859 int GetSize() const { return m_objectSize; }
860
861 wxObjectConstructorFn GetConstructor() const { return m_objectConstructor; }
862 static const wxClassInfo *GetFirst() { return sm_first; }
863 const wxClassInfo *GetNext() const { return m_next; }
864 static wxClassInfo *FindClass(const wxChar *className);
865
866 // Climb upwards through inheritance hierarchy.
867 // Dual inheritance is catered for.
868
869 bool IsKindOf(const wxClassInfo *info) const
870 {
871 if ( info != 0 )
872 {
873 if ( info == this )
874 return true ;
875
876 for ( int i = 0 ; m_parents[i] ; ++ i )
877 {
878 if ( m_parents[i]->IsKindOf( info ) )
879 return true ;
880 }
881 }
882 return false ;
883 }
884
885 // Initializes parent pointers and hash table for fast searching.
886 // this is going to be removed by Register/Unregister calls
887 // in Constructor / Destructor together with making the hash map private
888
889 static void InitializeClasses();
890
891 // Cleans up hash table used for fast searching.
892
893 static void CleanUpClasses();
894
895 // returns the first property
896 const wxPropertyInfo* GetFirstProperty() const { return m_firstProperty ; }
897
898 // returns the first handler
899 const wxHandlerInfo* GetFirstHandler() const { return m_firstHandler ; }
900
901 // Call the Create method for a class
902 virtual void Create (wxObject *object, int ParamCount, wxxVariant *Params)
903 {
904 wxASSERT( ParamCount == m_constructorPropertiesCount ) ;
905 m_constructor->Create( object , Params ) ;
906 }
907
908 // get number of parameters for constructor
909 virtual int GetCreateParamCount() const { return m_constructorPropertiesCount; }
910
911 // get i-th constructor parameter
912 virtual const wxChar* GetCreateParamName(int i) const { return m_constructorProperties[i] ; }
913
914 // Runtime access to objects by property name, and variant data
915 virtual void SetProperty (wxObject *object, const char *PropertyName, const wxxVariant &Value);
916 virtual wxxVariant GetProperty (wxObject *object, const char *PropertyName);
917
918 // we must be able to cast variants to wxObject pointers, templates seem not to be suitable
919 wxObject* VariantToInstance( const wxxVariant &data ) const { return m_variantToObjectConverter( data ) ; }
920 wxxVariant InstanceToVariant( wxObject *object ) const { return m_objectToVariantConverter( object ) ; }
921
922 // find property by name
923 virtual const wxPropertyInfo *FindPropInfo (const char *PropertyName) const ;
924
925 public:
926 const wxChar *m_className;
927 int m_objectSize;
928 wxObjectConstructorFn m_objectConstructor;
929
930 // class info object live in a linked list:
931 // pointers to its head and the next element in it
932
933 static wxClassInfo *sm_first;
934 wxClassInfo *m_next;
935
936 // FIXME: this should be private (currently used directly by way too
937 // many clients)
938 static wxHashTable *sm_classTable;
939
940 private:
941 const wxClassInfo** m_parents ;
942 const wxPropertyInfo * m_firstProperty ;
943 const wxHandlerInfo * m_firstHandler ;
944 const wxChar* m_unitName;
945
946 wxConstructorBridge* m_constructor ;
947 const wxChar ** m_constructorProperties ;
948 const int m_constructorPropertiesCount ;
949 wxVariantToObjectConverter m_variantToObjectConverter ;
950 wxObjectToVariantConverter m_objectToVariantConverter ;
951
952 const wxPropertyAccessor *FindAccessor (const char *propertyName);
953
954 // registers the class
955 static void Register(const wxChar *name, wxClassInfo *info);
956
957 static void Unregister(const wxChar *name);
958
959 // InitializeClasses() helper
960 static wxClassInfo *GetBaseByName(const wxChar *name);
961
962 DECLARE_NO_COPY_CLASS(wxClassInfo)
963 };
964
965 WXDLLIMPEXP_BASE wxObject *wxCreateDynamicObject(const wxChar *name);
966
967 // ----------------------------------------------------------------------------
968 // Dynamic class macros
969 // ----------------------------------------------------------------------------
970
971 #define _DECLARE_DYNAMIC_CLASS(name) \
972 public: \
973 static wxClassInfo sm_class##name; \
974 static const wxClassInfo* sm_classParents##name[] ; \
975 static const wxPropertyInfo* GetPropertiesStatic() ; \
976 static const wxHandlerInfo* GetHandlersStatic() ; \
977 virtual wxClassInfo *GetClassInfo() const \
978 { return &name::sm_class##name; }
979
980 #define DECLARE_DYNAMIC_CLASS(name) \
981 _DECLARE_DYNAMIC_CLASS(name) \
982 static wxConstructorBridge* sm_constructor##name ; \
983 static const char * sm_constructorProperties##name[] ; \
984 static const int sm_constructorPropertiesCount##name ;
985
986 #define DECLARE_DYNAMIC_CLASS_NO_ASSIGN(name) \
987 DECLARE_NO_ASSIGN_CLASS(name) \
988 DECLARE_DYNAMIC_CLASS(name)
989
990 #define DECLARE_DYNAMIC_CLASS_NO_COPY(name) \
991 DECLARE_NO_COPY_CLASS(name) \
992 DECLARE_DYNAMIC_CLASS(name)
993
994 #define DECLARE_ABSTRACT_CLASS(name) _DECLARE_DYNAMIC_CLASS(name)
995 #define DECLARE_CLASS(name) DECLARE_DYNAMIC_CLASS(name)
996
997 // -----------------------------------
998 // for concrete classes
999 // -----------------------------------
1000
1001 // Single inheritance with one base class
1002
1003 #define _IMPLEMENT_DYNAMIC_CLASS(name, basename, unit) \
1004 wxObject* wxConstructorFor##name() \
1005 { return new name; } \
1006 const wxClassInfo* name::sm_classParents##name[] = { &basename::sm_class##basename ,NULL } ; \
1007 wxObject* wxVariantToObjectConverter##name ( const wxxVariant &data ) { return data.Get<name*>() ; } \
1008 wxxVariant wxObjectToVariantConverter##name ( wxObject *data ) { return wxxVariant( dynamic_cast<name*> (data) ) ; } \
1009 wxClassInfo name::sm_class##name(sm_classParents##name , wxT(unit) , wxT(#name), \
1010 (int) sizeof(name), \
1011 (wxObjectConstructorFn) wxConstructorFor##name , \
1012 name::GetPropertiesStatic(),name::sm_constructor##name , name::sm_constructorProperties##name , \
1013 name::sm_constructorPropertiesCount##name , wxVariantToObjectConverter##name , wxObjectToVariantConverter##name); \
1014 template<> void wxStringReadValue(const wxString & , name * & ){assert(0) ;}\
1015 template<> void wxStringWriteValue(wxString & , name* const & ){assert(0) ;}\
1016 template<> const wxTypeInfo* wxGetTypeInfo( name ** ){ static wxClassTypeInfo s_typeInfo(&name::sm_class##name) ; return &s_typeInfo ; }
1017
1018 #define IMPLEMENT_DYNAMIC_CLASS( name , basename ) \
1019 _IMPLEMENT_DYNAMIC_CLASS( name , basename , "" ) \
1020 const wxPropertyInfo *name::GetPropertiesStatic() { return (wxPropertyInfo*) NULL ; } \
1021 WX_CONSTRUCTOR_DUMMY( name )
1022
1023 #define IMPLEMENT_DYNAMIC_CLASS_XTI( name , basename , unit ) \
1024 _IMPLEMENT_DYNAMIC_CLASS( name , basename , unit )
1025
1026 // this is for classes that do not derive from wxobject, there are no creators for these
1027
1028 #define IMPLEMENT_DYNAMIC_CLASS_NO_WXOBJECT_NO_BASE_XTI( name , unit ) \
1029 const wxClassInfo* name::sm_classParents##name[] = { NULL } ; \
1030 wxClassInfo name::sm_class##name(sm_classParents##name , wxT("") , wxT(#name), \
1031 (int) sizeof(name), \
1032 (wxObjectConstructorFn) 0 , \
1033 name::GetPropertiesStatic(),0 , 0 , \
1034 0 , 0 , 0 ); \
1035 template<> void wxStringReadValue(const wxString & , name * & ){assert(0) ;}\
1036 template<> void wxStringWriteValue(wxString & , name* const & ){assert(0) ;}\
1037 template<> const wxTypeInfo* wxGetTypeInfo( name ** ){ static wxClassTypeInfo s_typeInfo(&name::sm_class##name) ; return &s_typeInfo ; }
1038
1039 // this is for subclasses that still do not derive from wxobject
1040
1041 #define IMPLEMENT_DYNAMIC_CLASS_NO_WXOBJECT_XTI( name , basename, unit ) \
1042 const wxClassInfo* name::sm_classParents##name[] = { &basename::sm_class##basename ,NULL } ; \
1043 wxClassInfo name::sm_class##name(sm_classParents##name , wxT("") , wxT(#name), \
1044 (int) sizeof(name), \
1045 (wxObjectConstructorFn) 0 , \
1046 name::GetPropertiesStatic(),0 , 0 , \
1047 0 , 0 , 0 ); \
1048 template<> void wxStringReadValue(const wxString & , name * & ){assert(0) ;}\
1049 template<> void wxStringWriteValue(wxString & , name* const & ){assert(0) ;}\
1050 template<> const wxTypeInfo* wxGetTypeInfo( name ** ){ static wxClassTypeInfo s_typeInfo(&name::sm_class##name) ; return &s_typeInfo ; }
1051
1052 // Multiple inheritance with two base classes
1053
1054 #define _IMPLEMENT_DYNAMIC_CLASS2(name, basename, basename2, unit) \
1055 wxObject* wxConstructorFor##name() \
1056 { return new name; } \
1057 const wxClassInfo* name::sm_classParents##name[] = { &basename::sm_class##basename ,&basename2::sm_class##basename2 , NULL } ; \
1058 wxObject* wxVariantToObjectConverter##name ( const wxxVariant &data ) { return data.Get<name*>() ; } \
1059 wxxVariant wxObjectToVariantConverter##name ( wxObject *data ) { return wxxVariant( dynamic_cast<name*> (data) ) ; } \
1060 wxClassInfo name::sm_class##name(sm_classParents##name , wxT(unit) , wxT(#name), \
1061 (int) sizeof(name), \
1062 (wxObjectConstructorFn) wxConstructorFor##name , \
1063 name::GetPropertiesStatic(),name::sm_constructor##name , name::sm_constructorProperties##name , \
1064 name::sm_constructorPropertiesCount##name , wxVariantToObjectConverter##name , wxObjectToVariantConverter##name); \
1065 template<> void wxStringReadValue(const wxString & , name * & ){assert(0) ;}\
1066 template<> void wxStringWriteValue(wxString & , name* const & ){assert(0) ;}\
1067 template<> const wxTypeInfo* wxGetTypeInfo( name ** ){ static wxClassTypeInfo s_typeInfo(&name::sm_class##name) ; return &s_typeInfo ; }
1068
1069 #define IMPLEMENT_DYNAMIC_CLASS2( name , basename , basename2) \
1070 _IMPLEMENT_DYNAMIC_CLASS2( name , basename , basename2 , "") \
1071 const wxPropertyInfo *name::GetPropertiesStatic() { return (wxPropertyInfo*) NULL ; } \
1072 WX_CONSTRUCTOR_DUMMY( name )
1073
1074 #define IMPLEMENT_DYNAMIC_CLASS2_XTI( name , basename , basename2, unit) \
1075 _IMPLEMENT_DYNAMIC_CLASS2( name , basename , basename2 , unit)
1076
1077 // -----------------------------------
1078 // for abstract classes
1079 // -----------------------------------
1080
1081 // Single inheritance with one base class
1082
1083 #define _IMPLEMENT_ABSTRACT_CLASS(name, basename) \
1084 const wxClassInfo* name::sm_classParents##name[] = { &basename::sm_class##basename ,NULL } ; \
1085 wxObject* wxVariantToObjectConverter##name ( const wxxVariant &data ) { return data.Get<name*>() ; } \
1086 wxxVariant wxObjectToVariantConverter##name ( wxObject *data ) { return wxxVariant( dynamic_cast<name*> (data) ) ; } \
1087 wxClassInfo name::sm_class##name(sm_classParents##name , wxT("") , wxT(#name), \
1088 (int) sizeof(name), \
1089 (wxObjectConstructorFn) 0 , \
1090 name::GetPropertiesStatic(),0 , 0 , \
1091 0 , wxVariantToObjectConverter##name , wxObjectToVariantConverter##name); \
1092 template<> void wxStringReadValue(const wxString & , name * & ){assert(0) ;}\
1093 template<> void wxStringWriteValue(wxString & , name* const & ){assert(0) ;}\
1094 template<> const wxTypeInfo* wxGetTypeInfo( name ** ){ static wxClassTypeInfo s_typeInfo(&name::sm_class##name) ; return &s_typeInfo ; }
1095
1096 #define IMPLEMENT_ABSTRACT_CLASS( name , basename ) \
1097 _IMPLEMENT_ABSTRACT_CLASS( name , basename ) \
1098 const wxPropertyInfo *name::GetPropertiesStatic() { return (wxPropertyInfo*) NULL ; }
1099
1100 // Multiple inheritance with two base classes
1101
1102 #define IMPLEMENT_ABSTRACT_CLASS2(name, basename1, basename2) \
1103 wxClassInfo name::sm_class##name(wxT(#name), wxT(#basename1), \
1104 wxT(#basename2), (int) sizeof(name), \
1105 (wxObjectConstructorFn) 0);
1106
1107 #define IMPLEMENT_CLASS IMPLEMENT_ABSTRACT_CLASS
1108 #define IMPLEMENT_CLASS2 IMPLEMENT_ABSTRACT_CLASS2
1109
1110 #endif