X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/9a0a58f5afb88fc72f04333e32208e3b3bf2ccc5..5b464d6bbd088e122bca53f2a4a4ce1f09378de4:/include/wx/variant.h diff --git a/include/wx/variant.h b/include/wx/variant.h index dffe0a0190..89cb6c437d 100644 --- a/include/wx/variant.h +++ b/include/wx/variant.h @@ -26,10 +26,6 @@ #include "wx/datetime.h" #endif // wxUSE_DATETIME -#if wxUSE_ODBC - #include "wx/db.h" // will #include sqltypes.h -#endif //ODBC - #include "wx/iosfwrap.h" /* @@ -81,6 +77,10 @@ public: // If it based on wxObject return the ClassInfo. virtual wxClassInfo* GetValueClassInfo() { return NULL; } + // Implement this to make wxVariant::AllocExcusive work. Returns + // a copy of the data. + virtual wxVariantData* Clone() const { return NULL; } + void IncRef() { m_count++; } void DecRef() { @@ -104,7 +104,7 @@ private: * wxVariant can store any kind of data, but has some basic types * built in. */ - + class WXDLLIMPEXP_FWD_BASE wxVariant; WX_DECLARE_LIST_WITH_DECL(wxVariant, wxVariantList, class WXDLLIMPEXP_BASE); @@ -146,6 +146,9 @@ public: // destroy a reference void UnRef(); + // ensure that the data is exclusive to this variant, and not shared + bool Unshare(); + // Make NULL (i.e. delete the data) void MakeNull(); @@ -195,19 +198,9 @@ public: // wxDateTime #if wxUSE_DATETIME wxVariant(const wxDateTime& val, const wxString& name = wxEmptyString); -#if wxUSE_ODBC - wxVariant(const DATE_STRUCT* valptr, const wxString& name = wxEmptyString); - wxVariant(const TIME_STRUCT* valptr, const wxString& name = wxEmptyString); - wxVariant(const TIMESTAMP_STRUCT* valptr, const wxString& name = wxEmptyString); -#endif bool operator== (const wxDateTime& value) const; bool operator!= (const wxDateTime& value) const; void operator= (const wxDateTime& value) ; -#if wxUSE_ODBC - void operator= (const DATE_STRUCT* value) ; - void operator= (const TIME_STRUCT* value) ; - void operator= (const TIMESTAMP_STRUCT* value) ; -#endif inline operator wxDateTime () const { return GetDateTime(); } wxDateTime GetDateTime() const; #endif @@ -365,6 +358,8 @@ public:\ \ virtual wxString GetType() const; \ virtual wxClassInfo* GetValueClassInfo(); \ +\ + virtual wxVariantData* Clone() const { return new classname##VariantData(m_value); } \ \ protected:\ classname m_value; \ @@ -436,6 +431,9 @@ bool classname##VariantData::Eq(wxVariantData& data) const \ ((classname*)(var.IsValueKindOf(&classname::ms_classInfo) ?\ var.GetWxObjectPtr() : NULL)); +// Replacement for using wxDynamicCast on a wxVariantData object +#define wxDynamicCastVariantData(data, classname) dynamic_cast(data) + extern wxVariant WXDLLIMPEXP_BASE wxNullVariant; #endif // wxUSE_VARIANT