1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: A mixin class for holding a wxClientData or void pointer
8 // Copyright: (c) wxWindows team
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_CLNTDATAH__
13 #define _WX_CLNTDATAH__
15 #if defined(__GNUG__) && !defined(__APPLE__)
16 #pragma interface "clntdata.h"
20 #include "wx/string.h"
22 // ----------------------------------------------------------------------------
24 // what kind of client data do we have?
27 wxClientData_None
, // we don't know yet because we don't have it at all
28 wxClientData_Object
, // our client data is typed and we own it
29 wxClientData_Void
// client data is untyped and we don't own it
32 class WXDLLEXPORT wxClientData
36 virtual ~wxClientData() { }
39 class WXDLLEXPORT wxStringClientData
: public wxClientData
42 wxStringClientData() : m_data() { }
43 wxStringClientData( const wxString
&data
) : m_data(data
) { }
44 void SetData( const wxString
&data
) { m_data
= data
; }
45 const wxString
& GetData() const { return m_data
; }
53 // This class is a mixin that provides storage and management of "client
54 // data." The client data stored can either be a pointer to a wxClientData
55 // object in which case it is managed by the container (i.e. it will delete
56 // the data when it's destroyed) or an untyped pointer which won't be deleted
57 // by the container - but not both of them
59 // NOTE: This functionality is currently duplicated in wxEvtHandler in order
60 // to avoid having more than one vtable in that class heirachy.
62 class WXDLLEXPORT wxClientDataContainer
65 wxClientDataContainer();
66 virtual ~wxClientDataContainer();
68 void SetClientObject( wxClientData
*data
) { DoSetClientObject(data
); }
69 wxClientData
*GetClientObject() const { return DoGetClientObject(); }
71 void SetClientData( void *data
) { DoSetClientData(data
); }
72 void *GetClientData() const { return DoGetClientData(); }
75 // The user data: either an object which will be deleted by the container
76 // when it's deleted or some raw pointer which we do nothing with - only
77 // one type of data can be used with the given window (i.e. you cannot set
78 // the void data and then associate the container with wxClientData or vice
82 wxClientData
*m_clientObject
;
86 // client data accessors
87 virtual void DoSetClientObject( wxClientData
*data
);
88 virtual wxClientData
*DoGetClientObject() const;
90 virtual void DoSetClientData( void *data
);
91 virtual void *DoGetClientData() const;
93 // what kind of data do we have?
94 wxClientDataType m_clientDataType
;
98 // not Motif-specific, but currently used only under Motif
101 #include <wx/vector.h>
103 struct WXDLLEXPORT wxClientDataDictionaryPair
105 wxClientDataDictionaryPair( size_t idx
) : index( idx
), data( 0 ) { }
111 WX_DECLARE_VECTOR(wxClientDataDictionaryPair
,wxClientDataDictionaryPairVector
);
113 // this class is used internally to maintain the association between items
114 // of (some subclasses of) wxControlWithItems and their client data
115 // NOTE: this class does not keep track if it contains
116 // wxClientData or void*, the client must ensure that
117 // it does not contain a mix of the two, and that
118 // DestroyData is called if it contains wxClientData
119 class WXDLLEXPORT wxClientDataDictionary
122 wxClientDataDictionary() {};
124 // deletes all the data
127 for( size_t i
= 0, end
= m_vec
.size(); i
!= end
; ++i
)
128 delete m_vec
[i
].data
;
132 // if data for the given index is not present, add it,
133 // if it is present, delete the old data and replace it with
135 void Set( size_t index
, wxClientData
* data
, bool doDelete
)
137 size_t ptr
= Find( index
);
141 if( ptr
== m_vec
.size() ) return;
143 delete m_vec
[ptr
].data
;
148 if( ptr
== m_vec
.size() )
150 m_vec
.push_back( wxClientDataDictionaryPair( index
) );
151 ptr
= m_vec
.size() - 1;
155 delete m_vec
[ptr
].data
;
156 m_vec
[ptr
].data
= data
;
160 // get the data associated with the given index,
161 // return 0 if not found
162 wxClientData
* Get( size_t index
) const
164 size_t it
= Find( index
);
165 if( it
== m_vec
.size() ) return 0;
166 return (wxClientData
*)m_vec
[it
].data
; // const cast
169 // delete the data associated with the given index
170 // it also decreases by one the indices of all the elements
171 // with an index greater than the given index
172 void Delete( size_t index
, bool doDelete
)
174 size_t todel
= m_vec
.size();
176 for( size_t i
= 0, end
= m_vec
.size(); i
!= end
; ++i
)
178 if( m_vec
[i
].index
== index
)
180 else if( m_vec
[i
].index
> index
)
184 if( todel
!= m_vec
.size() )
187 delete m_vec
[todel
].data
;
188 m_vec
.erase( todel
);
192 // returns MyVec.size() if not found
193 size_t Find( size_t index
) const
195 for( size_t i
= 0, end
= m_vec
.size(); i
!= end
; ++i
)
197 if( m_vec
[i
].index
== index
)
204 wxClientDataDictionaryPairVector m_vec
;
207 #endif // __WXMOTIF__
209 // ----------------------------------------------------------------------------