1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: A mixin class for holding a wxClientData or void pointer
8 // Copyright: (c) wxWidgets team
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_CLNTDATAH__
13 #define _WX_CLNTDATAH__
16 #include "wx/string.h"
17 #include "wx/hashmap.h"
19 #if wxABI_VERSION >= 20602
21 typedef int (*wxShadowObjectMethod
)(void*, void*);
22 WX_DECLARE_STRING_HASH_MAP_WITH_DECL(
24 wxShadowObjectMethods
,
25 class WXDLLIMPEXP_BASE
27 WX_DECLARE_STRING_HASH_MAP_WITH_DECL(
30 class WXDLLIMPEXP_BASE
33 class WXDLLIMPEXP_BASE wxShadowObject
38 void AddMethod( const wxString
&name
, wxShadowObjectMethod method
)
40 wxShadowObjectMethods::iterator it
= m_methods
.find( name
);
41 if (it
== m_methods
.end())
42 m_methods
[ name
] = method
;
47 bool InvokeMethod( const wxString
&name
, void* window
, void* param
, int* returnValue
)
49 wxShadowObjectMethods::iterator it
= m_methods
.find( name
);
50 if (it
== m_methods
.end())
52 wxShadowObjectMethod method
= it
->second
;
53 int ret
= (*method
)(window
, param
);
59 void AddField( const wxString
&name
, void* initialValue
= NULL
)
61 wxShadowObjectFields::iterator it
= m_fields
.find( name
);
62 if (it
== m_fields
.end())
63 m_fields
[ name
] = initialValue
;
65 it
->second
= initialValue
;
68 void SetField( const wxString
&name
, void* value
)
70 wxShadowObjectFields::iterator it
= m_fields
.find( name
);
71 if (it
== m_fields
.end())
76 void* GetField( const wxString
&name
, void *defaultValue
= NULL
)
78 wxShadowObjectFields::iterator it
= m_fields
.find( name
);
79 if (it
== m_fields
.end())
85 wxShadowObjectMethods m_methods
;
86 wxShadowObjectFields m_fields
;
89 #endif // wxABI_VERSION
91 // ----------------------------------------------------------------------------
93 // what kind of client data do we have?
96 wxClientData_None
, // we don't know yet because we don't have it at all
97 wxClientData_Object
, // our client data is typed and we own it
98 wxClientData_Void
// client data is untyped and we don't own it
101 class WXDLLIMPEXP_BASE wxClientData
105 virtual ~wxClientData() { }
108 class WXDLLIMPEXP_BASE wxStringClientData
: public wxClientData
111 wxStringClientData() : m_data() { }
112 wxStringClientData( const wxString
&data
) : m_data(data
) { }
113 void SetData( const wxString
&data
) { m_data
= data
; }
114 const wxString
& GetData() const { return m_data
; }
120 // This class is a mixin that provides storage and management of "client
121 // data." The client data stored can either be a pointer to a wxClientData
122 // object in which case it is managed by the container (i.e. it will delete
123 // the data when it's destroyed) or an untyped pointer which won't be deleted
124 // by the container - but not both of them
126 // NOTE: This functionality is currently duplicated in wxEvtHandler in order
127 // to avoid having more than one vtable in that class hierarchy.
129 class WXDLLIMPEXP_BASE wxClientDataContainer
132 wxClientDataContainer();
133 virtual ~wxClientDataContainer();
135 void SetClientObject( wxClientData
*data
) { DoSetClientObject(data
); }
136 wxClientData
*GetClientObject() const { return DoGetClientObject(); }
138 void SetClientData( void *data
) { DoSetClientData(data
); }
139 void *GetClientData() const { return DoGetClientData(); }
142 // The user data: either an object which will be deleted by the container
143 // when it's deleted or some raw pointer which we do nothing with. Only
144 // one type of data can be used with the given window, i.e. you cannot set
145 // the void data and then associate the container with wxClientData or vice
149 wxClientData
*m_clientObject
;
153 // client data accessors
154 virtual void DoSetClientObject( wxClientData
*data
);
155 virtual wxClientData
*DoGetClientObject() const;
157 virtual void DoSetClientData( void *data
);
158 virtual void *DoGetClientData() const;
160 // what kind of data do we have?
161 wxClientDataType m_clientDataType
;
165 // not Motif-specific, but currently used only under Motif,
166 // compiled to make wxMotif and wxGTK base libraries compatible
167 #if defined(__WXMOTIF__) || wxABI_VERSION >= 20602
169 #include "wx/vector.h"
171 struct WXDLLIMPEXP_BASE wxClientDataDictionaryPair
173 wxClientDataDictionaryPair( size_t idx
) : index( idx
), data( 0 ) { }
180 wxClientDataDictionaryPair
,
181 wxClientDataDictionaryPairVector
,
185 // this class is used internally to maintain the association between items
186 // of (some subclasses of) wxControlWithItems and their client data
187 // NOTE: this class does not keep track of whether it contains
188 // wxClientData or void*. The client must ensure that
189 // it does not contain a mix of the two, and that
190 // DestroyData is called if it contains wxClientData
191 class WXDLLIMPEXP_BASE wxClientDataDictionary
194 wxClientDataDictionary() {}
196 // deletes all the data
199 for( size_t i
= 0, end
= m_vec
.size(); i
!= end
; ++i
)
200 delete m_vec
[i
].data
;
204 // if data for the given index is not present, add it,
205 // if it is present, delete the old data and replace it with
207 void Set( size_t index
, wxClientData
* data
, bool doDelete
)
209 size_t ptr
= Find( index
);
213 if( ptr
== m_vec
.size() ) return;
215 delete m_vec
[ptr
].data
;
220 if( ptr
== m_vec
.size() )
222 m_vec
.push_back( wxClientDataDictionaryPair( index
) );
223 ptr
= m_vec
.size() - 1;
227 delete m_vec
[ptr
].data
;
228 m_vec
[ptr
].data
= data
;
232 // get the data associated with the given index,
233 // return 0 if not found
234 wxClientData
* Get( size_t index
) const
236 size_t it
= Find( index
);
237 if( it
== m_vec
.size() ) return 0;
238 return (wxClientData
*)m_vec
[it
].data
; // const cast
241 // delete the data associated with the given index
242 // it also decreases by one the indices of all the elements
243 // with an index greater than the given index
244 void Delete( size_t index
, bool doDelete
)
246 size_t todel
= m_vec
.size();
248 for( size_t i
= 0, end
= m_vec
.size(); i
!= end
; ++i
)
250 if( m_vec
[i
].index
== index
)
252 else if( m_vec
[i
].index
> index
)
256 if( todel
!= m_vec
.size() )
259 delete m_vec
[todel
].data
;
260 m_vec
.erase( todel
);
264 // returns MyVec.size() if not found
265 size_t Find( size_t index
) const
267 for( size_t i
= 0, end
= m_vec
.size(); i
!= end
; ++i
)
269 if( m_vec
[i
].index
== index
)
276 wxClientDataDictionaryPairVector m_vec
;
279 #endif // __WXMOTIF__
281 // ----------------------------------------------------------------------------