]> git.saurik.com Git - wxWidgets.git/commitdiff
AssociateHandle and DissociateHandle
authorRobin Dunn <robin@alldunn.com>
Mon, 13 Sep 2004 23:20:04 +0000 (23:20 +0000)
committerRobin Dunn <robin@alldunn.com>
Mon, 13 Sep 2004 23:20:04 +0000 (23:20 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@29129 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

wxPython/src/_window.i

index 78b15007c8042a10a3c8bef8d7674acc385aa302..ee7a56a7827498d672af690be69cdd0c8d676ea3 100644 (file)
@@ -1572,6 +1572,20 @@ toplevel parent of the window.", "");
         }
     }
 
+    DocStr(
+        AssociateHandle,
+        "Associate the window with a new native handle", "");
+    %extend {
+        void  AssociateHandle(long handle) {
+            self->AssociateHandle((WXWidget)handle);
+        }
+    }
+        
+           
+    DocDeclStr(
+        virtual void , DissociateHandle(),
+        "Dissociate the current native handle from the window", "");
+    
 
     
 #ifdef __WXMSW__