• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/

Lines Matching defs:wxTypeInfo

371 class WXDLLIMPEXP_BASE wxTypeInfo ;
373 WX_DECLARE_STRING_HASH_MAP_WITH_DECL( wxTypeInfo* , wxTypeInfoMap , class WXDLLIMPEXP_BASE ) ;
375 class WXDLLIMPEXP_BASE wxTypeInfo
381 wxTypeInfo(wxTypeKind kind,
389 wxTypeInfo(wxTypeKind kind,
398 virtual ~wxTypeInfo()
431 static wxTypeInfo *FindType(const char *typeName) { return FindType( wxString::FromAscii(typeName) ) ; }
433 static wxTypeInfo *FindType(const wxChar *typeName);
449 class WXDLLIMPEXP_BASE wxBuiltInTypeInfo : public wxTypeInfo
453 wxTypeInfo( kind , to , from , name )
457 wxTypeInfo( kind , to , from , name )
462 class WXDLLIMPEXP_BASE wxCustomTypeInfo : public wxTypeInfo
466 wxTypeInfo( wxT_CUSTOM , to , from , name )
470 wxTypeInfo( wxT_CUSTOM , to , from , name )
475 class WXDLLIMPEXP_BASE wxEnumTypeInfo : public wxTypeInfo
483 wxTypeInfo( kind , to , from , name ) , m_toLong( toLong ) , m_fromLong( fromLong )
489 wxTypeInfo( kind , to , from , name ) , m_toLong( toLong ) , m_fromLong( fromLong )
510 class WXDLLIMPEXP_BASE wxClassTypeInfo : public wxTypeInfo
522 class WXDLLIMPEXP_BASE wxCollectionTypeInfo : public wxTypeInfo
526 wxTypeInfo( wxT_COLLECTION , to , from , name )
530 wxTypeInfo( wxT_COLLECTION , to , from , name )
533 const wxTypeInfo* GetElementType() const
536 m_elementType = wxTypeInfo::FindType( m_elementTypeName ) ;
539 mutable wxTypeInfo * m_elementType ;
545 class WXDLLIMPEXP_BASE wxDelegateTypeInfo : public wxTypeInfo
559 template<typename T> const wxTypeInfo* wxGetTypeInfo( T * ) { return wxTypeInfo::FindType(typeid(T).name()) ; }
594 virtual const wxTypeInfo* GetTypeInfo() const = 0 ;
616 virtual const wxTypeInfo* GetTypeInfo() const { return wxGetTypeInfo( (T*) NULL ) ; }
677 const wxTypeInfo* GetTypeInfo() const { return m_data->GetTypeInfo() ; }
1059 const wxTypeInfo * GetCollectionElementTypeInfo() const
1062 m_collectionElementTypeInfo = wxTypeInfo::FindType(m_collectionElementTypeName) ;
1067 const wxTypeInfo * GetTypeInfo() const
1070 m_typeInfo = wxTypeInfo::FindType(m_typeName) ;
1100 mutable wxTypeInfo* m_typeInfo ;
1102 mutable wxTypeInfo* m_collectionElementTypeInfo ;
1864 void AddProperty( const wxChar *propertyName , const wxTypeInfo* typeInfo ) ;