]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/wx/dnd.h
Fix spelling in the comments in wxPropertyGrid code.
[wxWidgets.git] / interface / wx / dnd.h
index 278aa057d3f199282b0833d5520080baff4ab96f..182fe158e96dba6a426ea95c2edfb8f9ed8edc3e 100644 (file)
@@ -132,6 +132,11 @@ public:
     */
     virtual void OnLeave();
 
+    /**
+        Returns the data wxDataObject associated with the drop target
+    */
+    wxDataObject *GetDataObject() const;
+
     /**
         Sets the data wxDataObject associated with the drop target and deletes
         any previously associated data object.
@@ -310,10 +315,24 @@ public:
         @param res
             The drag result to set the icon for.
         @param cursor
-            The ion to show when this drag result occurs.
+            The icon to show when this drag result occurs.
+
+        @onlyfor{wxmsw,wxosx}
     */
     void SetCursor(wxDragResult res, const wxCursor& cursor);
 
+    /**
+        Set the icon to use for a certain drag result.
+
+        @param res
+            The drag result to set the icon for.
+        @param icon
+            The icon to show when this drag result occurs.
+
+        @onlyfor{wxgtk}
+    */
+    void SetIcon(wxDragResult res, const wxIcon& icon);
+
     /**
         Sets the data wxDataObject associated with the drop source. This will
         not delete any previously associated data.