]>
Commit | Line | Data |
---|---|---|
8cb50e4b JS |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: variant.h | |
3 | // Purpose: wxVariant class, container for any type | |
4 | // Author: Julian Smart | |
5 | // Modified by: | |
6 | // Created: 10/09/98 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) | |
65571936 | 9 | // Licence: wxWindows licence |
8cb50e4b JS |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
12 | #ifndef _WX_VARIANT_H_ | |
13 | #define _WX_VARIANT_H_ | |
14 | ||
12028905 | 15 | #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) |
8cb50e4b JS |
16 | #pragma interface "variant.h" |
17 | #endif | |
18 | ||
19 | #include "wx/defs.h" | |
20 | #include "wx/object.h" | |
21 | #include "wx/string.h" | |
4c3ebca9 | 22 | #include "wx/arrstr.h" |
8cb50e4b JS |
23 | #include "wx/list.h" |
24 | ||
e2b87f38 VZ |
25 | #if wxUSE_DATETIME |
26 | #include "wx/datetime.h" | |
27 | #endif // wxUSE_DATETIME | |
edca7a82 GT |
28 | |
29 | #if wxUSE_ODBC | |
30 | #include "wx/db.h" // will #include sqltypes.h | |
31 | #endif //ODBC | |
32 | ||
65f19af1 | 33 | #include "wx/iosfwrap.h" |
8cb50e4b JS |
34 | |
35 | /* | |
36 | * wxVariantData stores the actual data in a wxVariant object, | |
37 | * to allow it to store any type of data. | |
38 | * Derive from this to provide custom data handling. | |
39 | * | |
40 | * TODO: in order to replace wxPropertyValue, we would need | |
41 | * to consider adding constructors that take pointers to C++ variables, | |
42 | * or removing that functionality from the wxProperty library. | |
43 | * Essentially wxPropertyValue takes on some of the wxValidator functionality | |
44 | * by storing pointers and not just actual values, allowing update of C++ data | |
45 | * to be handled automatically. Perhaps there's another way of doing this without | |
46 | * overloading wxVariant with unnecessary functionality. | |
47 | */ | |
48 | ||
bddd7a8d | 49 | class WXDLLIMPEXP_BASE wxVariantData: public wxObject |
8cb50e4b JS |
50 | { |
51 | DECLARE_ABSTRACT_CLASS(wxVariantData) | |
52 | public: | |
53 | ||
54 | // Construction & destruction | |
6fb99eb3 | 55 | wxVariantData() {} |
8cb50e4b JS |
56 | |
57 | // Override these to provide common functionality | |
58 | // Copy to data | |
59 | virtual void Copy(wxVariantData& data) = 0; | |
60 | virtual bool Eq(wxVariantData& data) const = 0; | |
38830220 | 61 | #if wxUSE_STD_IOSTREAM |
dd107c50 | 62 | virtual bool Write(wxSTD ostream& str) const = 0; |
38830220 | 63 | #endif |
8cb50e4b | 64 | virtual bool Write(wxString& str) const = 0; |
38830220 | 65 | #if wxUSE_STD_IOSTREAM |
dd107c50 | 66 | virtual bool Read(wxSTD istream& str) = 0; |
38830220 | 67 | #endif |
8cb50e4b JS |
68 | virtual bool Read(wxString& str) = 0; |
69 | // What type is it? Return a string name. | |
70 | virtual wxString GetType() const = 0; | |
cf6ae290 RG |
71 | // If it based on wxObject return the ClassInfo. |
72 | virtual wxClassInfo* GetValueClassInfo() { return NULL; } | |
8cb50e4b JS |
73 | }; |
74 | ||
75 | /* | |
76 | * wxVariant can store any kind of data, but has some basic types | |
77 | * built in. | |
78 | * NOTE: this eventually should have a reference-counting implementation. | |
79 | * PLEASE, if you change it to ref-counting, make sure it doesn't involve bloating | |
80 | * this class too much. | |
81 | */ | |
82 | ||
bddd7a8d | 83 | class WXDLLIMPEXP_BASE wxVariant: public wxObject |
8cb50e4b JS |
84 | { |
85 | DECLARE_DYNAMIC_CLASS(wxVariant) | |
86 | public: | |
87 | ||
88 | // Construction & destruction | |
89 | wxVariant(); | |
e90c1d2a VZ |
90 | wxVariant(double val, const wxString& name = wxEmptyString); |
91 | wxVariant(long val, const wxString& name = wxEmptyString); | |
57493f9f | 92 | #ifdef HAVE_BOOL |
e90c1d2a | 93 | wxVariant(bool val, const wxString& name = wxEmptyString); |
57493f9f | 94 | #endif |
e90c1d2a VZ |
95 | wxVariant(char val, const wxString& name = wxEmptyString); |
96 | wxVariant(const wxString& val, const wxString& name = wxEmptyString); | |
97 | wxVariant(const wxChar* val, const wxString& name = wxEmptyString); // Necessary or VC++ assumes bool! | |
2c3a1064 RN |
98 | #if WXWIN_COMPATIBILITY_2_4 |
99 | wxDEPRECATED( wxVariant(const wxStringList& val, const wxString& name = wxEmptyString) ); | |
100 | #endif | |
e90c1d2a | 101 | wxVariant(const wxList& val, const wxString& name = wxEmptyString); // List of variants |
e90c1d2a | 102 | wxVariant(void* ptr, const wxString& name = wxEmptyString); // void* (general purpose) |
cab1a605 | 103 | wxVariant(wxObject* ptr, const wxString& name = wxEmptyString); //wxObject |
e90c1d2a | 104 | wxVariant(wxVariantData* data, const wxString& name = wxEmptyString); // User-defined data |
e2b87f38 | 105 | #if wxUSE_DATETIME |
edca7a82 | 106 | wxVariant(const wxDateTime& val, const wxString& name = wxEmptyString); // Date |
e2b87f38 | 107 | #endif // wxUSE_DATETIME |
fb42d7c3 | 108 | wxVariant(const wxArrayString& val, const wxString& name = wxEmptyString); // String array |
edca7a82 GT |
109 | #if wxUSE_ODBC |
110 | wxVariant(const DATE_STRUCT* valptr, const wxString& name = wxEmptyString); // DateTime | |
111 | wxVariant(const TIME_STRUCT* valptr, const wxString& name = wxEmptyString); // DateTime | |
112 | wxVariant(const TIMESTAMP_STRUCT* valptr, const wxString& name = wxEmptyString); // DateTime | |
113 | #endif | |
cab1a605 | 114 | |
8cb50e4b | 115 | wxVariant(const wxVariant& variant); |
8cb50e4b JS |
116 | ~wxVariant(); |
117 | ||
118 | // Generic operators | |
119 | // Assignment | |
120 | void operator= (const wxVariant& variant); | |
121 | ||
e2b87f38 | 122 | #if wxUSE_DATETIME |
edca7a82 GT |
123 | bool operator== (const wxDateTime& value) const; |
124 | bool operator!= (const wxDateTime& value) const; | |
125 | void operator= (const wxDateTime& value) ; | |
e2b87f38 | 126 | #endif // wxUSE_DATETIME |
fb42d7c3 VZ |
127 | |
128 | bool operator== (const wxArrayString& value) const; | |
129 | bool operator!= (const wxArrayString& value) const; | |
130 | void operator= (const wxArrayString& value) ; | |
edca7a82 GT |
131 | #if wxUSE_ODBC |
132 | void operator= (const DATE_STRUCT* value) ; | |
133 | void operator= (const TIME_STRUCT* value) ; | |
134 | void operator= (const TIMESTAMP_STRUCT* value) ; | |
135 | #endif | |
edca7a82 | 136 | |
8cb50e4b JS |
137 | // Assignment using data, e.g. |
138 | // myVariant = new wxStringVariantData("hello"); | |
139 | void operator= (wxVariantData* variantData); | |
140 | bool operator== (const wxVariant& variant) const; | |
141 | bool operator!= (const wxVariant& variant) const; | |
142 | ||
143 | // Specific operators | |
144 | bool operator== (double value) const; | |
145 | bool operator!= (double value) const; | |
146 | void operator= (double value) ; | |
147 | bool operator== (long value) const; | |
148 | bool operator!= (long value) const; | |
149 | void operator= (long value) ; | |
150 | bool operator== (char value) const; | |
151 | bool operator!= (char value) const; | |
152 | void operator= (char value) ; | |
57493f9f | 153 | #ifdef HAVE_BOOL |
8cb50e4b JS |
154 | bool operator== (bool value) const; |
155 | bool operator!= (bool value) const; | |
156 | void operator= (bool value) ; | |
57493f9f | 157 | #endif |
8cb50e4b JS |
158 | bool operator== (const wxString& value) const; |
159 | bool operator!= (const wxString& value) const; | |
160 | void operator= (const wxString& value) ; | |
2ed57eb7 | 161 | void operator= (const wxChar* value) ; // Necessary or VC++ assumes bool! |
2c3a1064 RN |
162 | #if WXWIN_COMPATIBILITY_2_4 |
163 | wxDEPRECATED( bool operator== (const wxStringList& value) const ); | |
164 | wxDEPRECATED( bool operator!= (const wxStringList& value) const ); | |
165 | wxDEPRECATED( void operator= (const wxStringList& value) ); | |
166 | #endif | |
8cb50e4b JS |
167 | bool operator== (const wxList& value) const; |
168 | bool operator!= (const wxList& value) const; | |
169 | void operator= (const wxList& value) ; | |
a0a302dc JS |
170 | bool operator== (void* value) const; |
171 | bool operator!= (void* value) const; | |
172 | void operator= (void* value) ; | |
8cb50e4b JS |
173 | |
174 | // Treat a list variant as an array | |
175 | wxVariant operator[] (size_t idx) const; | |
176 | wxVariant& operator[] (size_t idx) ; | |
177 | ||
178 | // Implicit conversion to a wxString | |
179 | inline operator wxString () const { return MakeString(); } | |
180 | wxString MakeString() const; | |
181 | ||
182 | // Other implicit conversions | |
183 | inline operator double () const { return GetDouble(); } | |
a0a302dc | 184 | inline operator char () const { return GetChar(); } |
8cb50e4b JS |
185 | inline operator long () const { return GetLong(); } |
186 | inline operator bool () const { return GetBool(); } | |
a0a302dc | 187 | inline operator void* () const { return GetVoidPtr(); } |
cf6ae290 RG |
188 | // No implicit conversion to wxObject, as that would really |
189 | // confuse people between conversion to our contained data | |
190 | // and downcasting to see our base type. | |
e2b87f38 | 191 | #if wxUSE_DATETIME |
edca7a82 | 192 | inline operator wxDateTime () const { return GetDateTime(); } |
e2b87f38 | 193 | #endif // wxUSE_DATETIME |
8cb50e4b JS |
194 | |
195 | // Accessors | |
a0a302dc JS |
196 | // Sets/gets name |
197 | inline void SetName(const wxString& name) { m_name = name; } | |
198 | inline const wxString& GetName() const { return m_name; } | |
199 | ||
8cb50e4b JS |
200 | // Tests whether there is data |
201 | inline bool IsNull() const { return (m_data == (wxVariantData*) NULL); } | |
202 | ||
203 | wxVariantData* GetData() const { return m_data; } | |
204 | void SetData(wxVariantData* data) ; | |
205 | ||
206 | // Returns a string representing the type of the variant, | |
207 | // e.g. "string", "bool", "stringlist", "list", "double", "long" | |
208 | wxString GetType() const; | |
209 | ||
210 | bool IsType(const wxString& type) const; | |
cf6ae290 | 211 | bool IsValueKindOf(const wxClassInfo* type) const; |
8cb50e4b JS |
212 | |
213 | // Return the number of elements in a list | |
214 | int GetCount() const; | |
215 | ||
216 | // Value accessors | |
217 | double GetReal() const ; | |
218 | inline double GetDouble() const { return GetReal(); }; | |
219 | long GetInteger() const ; | |
220 | inline long GetLong() const { return GetInteger(); }; | |
221 | char GetChar() const ; | |
222 | bool GetBool() const ; | |
223 | wxString GetString() const ; | |
224 | wxList& GetList() const ; | |
2c3a1064 RN |
225 | #if WXWIN_COMPATIBILITY_2_4 |
226 | wxDEPRECATED( wxStringList& GetStringList() const ); | |
227 | #endif | |
a0a302dc | 228 | void* GetVoidPtr() const ; |
cf6ae290 | 229 | wxObject* GetWxObjectPtr() ; |
e2b87f38 | 230 | #if wxUSE_DATETIME |
edca7a82 | 231 | wxDateTime GetDateTime() const ; |
e2b87f38 | 232 | #endif // wxUSE_DATETIME |
fb42d7c3 | 233 | wxArrayString GetArrayString() const; |
8cb50e4b JS |
234 | |
235 | // Operations | |
236 | // Make NULL (i.e. delete the data) | |
237 | void MakeNull(); | |
238 | ||
239 | // Make empty list | |
240 | void NullList(); | |
241 | ||
242 | // Append to list | |
243 | void Append(const wxVariant& value); | |
244 | ||
245 | // Insert at front of list | |
246 | void Insert(const wxVariant& value); | |
247 | ||
cab1a605 | 248 | // Returns true if the variant is a member of the list |
8cb50e4b JS |
249 | bool Member(const wxVariant& value) const; |
250 | ||
251 | // Deletes the nth element of the list | |
252 | bool Delete(int item); | |
253 | ||
254 | // Clear list | |
255 | void ClearList(); | |
256 | ||
a0a302dc | 257 | // Implementation |
9708db20 | 258 | public: |
8cb50e4b JS |
259 | // Type conversion |
260 | bool Convert(long* value) const; | |
261 | bool Convert(bool* value) const; | |
262 | bool Convert(double* value) const; | |
263 | bool Convert(wxString* value) const; | |
264 | bool Convert(char* value) const; | |
e2b87f38 | 265 | #if wxUSE_DATETIME |
edca7a82 | 266 | bool Convert(wxDateTime* value) const; |
e2b87f38 | 267 | #endif // wxUSE_DATETIME |
8cb50e4b JS |
268 | |
269 | // Attributes | |
270 | protected: | |
271 | wxVariantData* m_data; | |
a0a302dc | 272 | wxString m_name; |
8cb50e4b JS |
273 | }; |
274 | ||
cf6ae290 | 275 | //Since we want type safety wxVariant we need to fetch and dynamic_cast |
cab1a605 | 276 | //in a seemingly safe way so the compiler can check, so we define |
cf6ae290 RG |
277 | //a dynamic_cast /wxDynamicCast analogue. |
278 | ||
279 | #define wxGetVariantCast(var,classname) \ | |
cab1a605 WS |
280 | ((classname*)(var.IsValueKindOf(&classname::ms_classInfo) ?\ |
281 | var.GetWxObjectPtr() : NULL)); | |
cf6ae290 | 282 | |
bddd7a8d | 283 | extern wxVariant WXDLLIMPEXP_BASE wxNullVariant; |
a0a302dc | 284 | |
8cb50e4b JS |
285 | #endif |
286 | // _WX_VARIANT_H_ |