]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/wx/dataobj.h
Temporarily disable the email notifications as we're getting false ones from
[wxWidgets.git] / interface / wx / dataobj.h
index 97b48831fad61d7be791d41570ab3aee337d6ee7..395686a034d782029e405372fa4011b4372b80a1 100644 (file)
@@ -80,7 +80,7 @@ public:
         object by pickling it first.
         @endWxPythonOnly
     */
-    virtual void SetData(size_t size, const void data);
+    virtual void SetData(size_t size, const void* data);
 
     /**
         Like SetData(), but doesn't copy the data - instead the object takes
@@ -190,7 +190,7 @@ public:
         required and the data should be returned from the method as a string.
         @endWxPythonOnly
     */
-    virtual bool GetDataHere(void buf) const;
+    virtual bool GetDataHere(void* buf) const;
 
     /**
         Gets the size of our data. Must be implemented in the derived class if
@@ -214,7 +214,7 @@ public:
         string parameter rather than the two shown here.
         @endWxPythonOnly
     */
-    virtual bool SetData(size_t len, const void buf);
+    virtual bool SetData(size_t len, const void* buf);
 
     /**
         Sets the supported format.
@@ -409,8 +409,7 @@ public:
     wxFileDataObject();
 
     /**
-        Adds a file to the file list represented by this data object (Windows
-        only).
+        Adds a file to the file list represented by this data object (Windows only).
     */
     void AddFile(const wxString& file);
 
@@ -489,7 +488,7 @@ public:
         Constructs a data format object for a custom format identified by its
         name @a format.
     */
-    wxDataFormat(const wxChar format);
+    wxDataFormat(const wxString& format);
 
     /**
         Returns the name of a custom format (this function will fail for a
@@ -505,7 +504,7 @@ public:
     /**
         Sets the format to be the custom format identified by the given name.
     */
-    void SetId(const wxChar format);
+    void SetId(const wxString& format);
 
     /**
         Sets the format to the given value, which should be one of wxDF_XXX
@@ -516,12 +515,12 @@ public:
     /**
         Returns @true if the formats are different.
     */
-    bool operator !=(const wxDataFormat& format) const;
+    bool operator !=(wxDataFormatId format) const;
 
     /**
         Returns @true if the formats are equal.
     */
-    bool operator ==(const wxDataFormat& format) const;
+    bool operator ==(wxDataFormatId format) const;
 };
 
 
@@ -658,7 +657,7 @@ public:
         in it.
     */
     virtual void GetAllFormats(wxDataFormat* formats,
-                                 Direction dir = Get) const;
+                               Direction dir = Get) const = 0;
 
     /**
         The method will write the data of the format @a format in the buffer
@@ -690,7 +689,6 @@ public:
 
         @return @true on success, @false on failure.
     */
-    virtual bool SetData(const wxDataFormat& format, size_t len,
-                         const void* buf);
+    virtual bool SetData(const wxDataFormat& format, size_t len, const void* buf);
 };