Added wxAddGrab, wxRemoveGrab for use by popup window implementations

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@36663 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Julian Smart
2006-01-03 16:37:32 +00:00
parent 71b4a9b878
commit 224016a800
4 changed files with 32 additions and 4 deletions

View File

@@ -4738,8 +4738,19 @@ wxPoint wxGetMousePosition()
}
// Needed for implementing e.g. combobox on wxGTK within a modal dialog.
void wxAddGrab(wxWindow* window)
{
gtk_grab_add( (GtkWidget*) window->GetHandle() );
}
void wxRemoveGrab(wxWindow* window)
{
gtk_grab_remove( (GtkWidget*) window->GetHandle() );
}
// ----------------------------------------------------------------------------
// wxDCModule
// wxWinModule
// ----------------------------------------------------------------------------
class wxWinModule : public wxModule
@@ -4768,4 +4779,3 @@ void wxWinModule::OnExit()
gdk_gc_unref( g_eraseGC );
}
// vi:sts=4:sw=4:et