X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/537a0880d225ab023024f6f5fc8955666b7641b8..ddc80eb4eb7e96ff23ebe329283bb2b940dd1df2:/src/common/popupcmn.cpp diff --git a/src/common/popupcmn.cpp b/src/common/popupcmn.cpp index 3dbf68daf8..47099f03ba 100644 --- a/src/common/popupcmn.cpp +++ b/src/common/popupcmn.cpp @@ -46,6 +46,9 @@ #ifdef __WXGTK__ #include #endif +#ifdef __WXX11__ +#include "wx/x11/private.h" +#endif IMPLEMENT_DYNAMIC_CLASS(wxPopupWindow, wxWindow) IMPLEMENT_DYNAMIC_CLASS(wxPopupTransientWindow, wxPopupWindow) @@ -85,16 +88,7 @@ public: } protected: - // event handlers -#ifdef __WXMSW__ - // Under MSW, we catch the kill focus event void OnKillFocus(wxFocusEvent& event); -#else - // Under GTK+, event a transient popup window - // is a toplevel window so we need to catch - // deactivate events - void OnActivate(wxActivateEvent &event); -#endif void OnKeyDown(wxKeyEvent& event); private: @@ -113,11 +107,7 @@ BEGIN_EVENT_TABLE(wxPopupWindowHandler, wxEvtHandler) END_EVENT_TABLE() BEGIN_EVENT_TABLE(wxPopupFocusHandler, wxEvtHandler) -#ifdef __WXMSW__ EVT_KILL_FOCUS(wxPopupFocusHandler::OnKillFocus) -#else - EVT_ACTIVATE(wxPopupFocusHandler::OnActivate) -#endif EVT_KEY_DOWN(wxPopupFocusHandler::OnKeyDown) END_EVENT_TABLE() @@ -198,42 +188,45 @@ wxPopupTransientWindow::wxPopupTransientWindow(wxWindow *parent, int style) wxPopupTransientWindow::~wxPopupTransientWindow() { PopHandlers(); - - delete m_handlerFocus; - delete m_handlerPopup; } void wxPopupTransientWindow::PopHandlers() { if ( m_child ) { - if ( !m_child->RemoveEventHandler(m_handlerPopup) ) + if ( m_handlerPopup && !m_child->RemoveEventHandler(m_handlerPopup) ) { // something is very wrong and someone else probably deleted our // handler - so don't risk deleting it second time m_handlerPopup = NULL; } - m_child->ReleaseMouse(); m_child = NULL; } #ifdef __WXMSW__ if ( m_focus ) { - if ( !m_focus->RemoveEventHandler(m_handlerFocus) ) + if ( m_handlerFocus && !m_focus->RemoveEventHandler(m_handlerFocus) ) { // see above m_handlerFocus = NULL; } } #else - if ( !RemoveEventHandler(m_handlerFocus) ) + if ( m_handlerFocus && !RemoveEventHandler(m_handlerFocus) ) { // see above m_handlerFocus = NULL; } #endif + + // delete the handlers, they'll be created as necessary in Popup() + delete m_handlerPopup; + m_handlerPopup = NULL; + delete m_handlerFocus; + m_handlerFocus = NULL; + m_focus = NULL; } @@ -254,7 +247,6 @@ void wxPopupTransientWindow::Popup(wxWindow *winFocus) delete m_handlerPopup; m_handlerPopup = new wxPopupWindowHandler(this); - m_child->CaptureMouse(); m_child->PushEventHandler(m_handlerPopup); m_focus = winFocus ? winFocus : this; @@ -286,16 +278,54 @@ bool wxPopupTransientWindow::Show( bool show ) { #ifdef __WXGTK__ if (!show) + { + gdk_pointer_ungrab( (guint32)GDK_CURRENT_TIME ); + gtk_grab_remove( m_widget ); + } +#endif + +#ifdef __WXX11__ + if (!show) + { + XUngrabPointer( wxGlobalDisplay(), CurrentTime ); + } #endif bool ret = wxPopupWindow::Show( show ); - + #ifdef __WXGTK__ if (show) + { gtk_grab_add( m_widget ); + + gdk_pointer_grab( m_widget->window, TRUE, + (GdkEventMask) + (GDK_BUTTON_PRESS_MASK | + GDK_BUTTON_RELEASE_MASK | + GDK_POINTER_MOTION_HINT_MASK | + GDK_POINTER_MOTION_MASK), + (GdkWindow *) NULL, + (GdkCursor *) NULL, + (guint32)GDK_CURRENT_TIME ); + } #endif +#ifdef __WXX11__ + if (show) + { + Window xwindow = (Window) m_clientWindow; + + /* int res =*/ XGrabPointer(wxGlobalDisplay(), xwindow, + True, + ButtonPressMask | ButtonReleaseMask | ButtonMotionMask | EnterWindowMask | LeaveWindowMask | PointerMotionMask, + GrabModeAsync, + GrabModeAsync, + None, + None, + CurrentTime ); + } +#endif return ret; } @@ -350,7 +380,7 @@ bool wxPopupComboWindow::Create(wxComboControl *parent) void wxPopupComboWindow::PositionNearCombo() { // the origin point must be in screen coords - wxPoint ptOrigin = m_combo->ClientToScreen(wxPoint(0, 0)); + wxPoint ptOrigin = m_combo->ClientToScreen(wxPoint(0,0)); #if 0 //def __WXUNIVERSAL__ // account for the fact that (0, 0) is not the top left corner of the @@ -470,7 +500,6 @@ void wxPopupWindowHandler::OnLeftDown(wxMouseEvent& event) // wxPopupFocusHandler // ---------------------------------------------------------------------------- -#ifdef __WXMSW__ void wxPopupFocusHandler::OnKillFocus(wxFocusEvent& event) { // when we lose focus we always disappear - unless it goes to the popup (in @@ -485,13 +514,6 @@ void wxPopupFocusHandler::OnKillFocus(wxFocusEvent& event) m_popup->DismissAndNotify(); } -#else -void wxPopupFocusHandler::OnActivate(wxActivateEvent &event) -{ - if (event.GetActive()) - m_popup->DismissAndNotify(); -} -#endif void wxPopupFocusHandler::OnKeyDown(wxKeyEvent& event) {