]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/src/clip_dnd.i
added support for polygons to wxRegion
[wxWidgets.git] / wxPython / src / clip_dnd.i
index a9ff1f6f9464da0740ee5ea6bd85119d1c2aab11..0fb2200a3128ea73c7c7cdb2734c59c5e596d846 100644 (file)
@@ -317,8 +317,9 @@ public:
             return list;
         }
     }
-
-    //void AddFile(const wxString &filename);
+#ifdef __WXMSW__
+    void AddFile(const wxString &filename);
+#endif
 };
 
 
@@ -345,6 +346,7 @@ public:
     }
 
     size_t GetSize();
+
     //void *GetData();
     %addmethods {
         PyObject* GetData() {
@@ -361,7 +363,7 @@ public:
 //----------------------------------------------------------------------
 //----------------------------------------------------------------------
 
-class wxClipboard {
+class wxClipboard : public wxObject {
 public:
     wxClipboard();
 
@@ -627,7 +629,9 @@ public:
 %init %{
 
     wxPyTheClipboard = wxTheClipboard;
-
+    wxPyPtrTypeMap_Add("wxDropSource", "wxPyDropSource");
+    wxPyPtrTypeMap_Add("wxTextDropTarget", "wxPyTextDropTarget");
+    wxPyPtrTypeMap_Add("wxFileDropTarget", "wxPyFileDropTarget");
 %}
 
 //----------------------------------------------------------------------