]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/variant.h
Various changes for wxCocoa
[wxWidgets.git] / include / wx / variant.h
index 0e3d7388a1ad73679caef0e9956d5161de31532b..9375794b80eb1a90f7f721076b533b2e58b1949b 100644 (file)
@@ -12,7 +12,7 @@
 #ifndef _WX_VARIANT_H_
 #define _WX_VARIANT_H_
 
-#ifdef __GNUG__
+#if defined(__GNUG__) && !defined(__APPLE__)
 #pragma interface "variant.h"
 #endif
 
     #include "wx/date.h"
 #endif // time/date
 
-#include "wx/ioswrap.h"
+#if wxUSE_DATETIME
+    #include "wx/datetime.h"
+#endif // wxUSE_DATETIME
+
+#if wxUSE_ODBC
+    #include "wx/db.h"  // will #include sqltypes.h
+#endif //ODBC
+
+#include "wx/iosfwrap.h"
 
 /*
  * wxVariantData stores the actual data in a wxVariant object,
@@ -98,6 +106,18 @@ public:
 #endif
     wxVariant(void* ptr, const wxString& name = wxEmptyString); // void* (general purpose)
     wxVariant(wxVariantData* data, const wxString& name = wxEmptyString); // User-defined data
+//TODO: Need to document
+#if wxUSE_DATETIME
+    wxVariant(const wxDateTime& val, const wxString& name = wxEmptyString); // Date
+#endif // wxUSE_DATETIME
+    wxVariant(const wxArrayString& val, const wxString& name = wxEmptyString); // String array
+#if wxUSE_ODBC
+    wxVariant(const DATE_STRUCT* valptr, const wxString& name = wxEmptyString); // DateTime
+    wxVariant(const TIME_STRUCT* valptr, const wxString& name = wxEmptyString); // DateTime
+    wxVariant(const TIMESTAMP_STRUCT* valptr, const wxString& name = wxEmptyString); // DateTime
+#endif
+//TODO: End of Need to document
+    
     wxVariant(const wxVariant& variant);
     ~wxVariant();
 
@@ -105,6 +125,23 @@ public:
     // Assignment
     void operator= (const wxVariant& variant);
 
+//TODO: Need to document
+#if wxUSE_DATETIME
+    bool operator== (const wxDateTime& value) const;
+    bool operator!= (const wxDateTime& value) const;
+    void operator= (const wxDateTime& value) ;
+#endif // wxUSE_DATETIME
+
+    bool operator== (const wxArrayString& value) const;
+    bool operator!= (const wxArrayString& value) const;
+    void operator= (const wxArrayString& value) ;
+#if wxUSE_ODBC
+    void operator= (const DATE_STRUCT* value) ;
+    void operator= (const TIME_STRUCT* value) ;
+    void operator= (const TIMESTAMP_STRUCT* value) ;
+#endif
+//TODO: End of Need to document
+
     // Assignment using data, e.g.
     // myVariant = new wxStringVariantData("hello");
     void operator= (wxVariantData* variantData);
@@ -168,6 +205,11 @@ public:
     inline operator wxDate () const {  return GetDate(); }
 #endif
     inline operator void* () const {  return GetVoidPtr(); }
+//TODO: Need to document
+#if wxUSE_DATETIME
+    inline operator wxDateTime () const { return GetDateTime(); }
+#endif // wxUSE_DATETIME
+//TODO: End of Need to document
 
 // Accessors
     // Sets/gets name
@@ -206,6 +248,12 @@ public:
     wxDate GetDate() const ;
 #endif
     void* GetVoidPtr() const ;
+//TODO: Need to document
+#if wxUSE_DATETIME
+    wxDateTime GetDateTime() const ;
+#endif // wxUSE_DATETIME
+    wxArrayString GetArrayString() const;
+//TODO: End of Need to document
 
 // Operations
     // Make NULL (i.e. delete the data)
@@ -230,7 +278,7 @@ public:
     void ClearList();
 
 // Implementation
-protected:
+public:
 // Type conversion
     bool Convert(long* value) const;
     bool Convert(bool* value) const;
@@ -242,6 +290,11 @@ protected:
     bool Convert(wxTime* value) const;
     bool Convert(wxDate* value) const;
 #endif
+//TODO: Need to document
+#if wxUSE_DATETIME
+    bool Convert(wxDateTime* value) const;
+#endif // wxUSE_DATETIME
+//TODO: End of Need to document
 
 // Attributes
 protected: