AssociateHandle and DissociateHandle

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@29129 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn 2004-09-13 23:20:04 +00:00
parent 67f6e901e6
commit 702723413e

View 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__