1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: common/popupcmn.cpp
3 // Purpose: implementation of wxPopupTransientWindow
4 // Author: Vadim Zeitlin
8 // Copyright: (c) 2001 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
9 // License: wxWindows licence
10 ///////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
20 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
21 #pragma implementation "popupwinbase.h"
24 // For compilers that support precompilation, includes "wx.h".
25 #include "wx/wxprec.h"
33 #include "wx/popupwin.h"
36 #include "wx/combobox.h" // wxComboControl
37 #include "wx/app.h" // wxPostEvent
42 #ifdef __WXUNIVERSAL__
43 #include "wx/univ/renderer.h"
44 #endif // __WXUNIVERSAL__
50 #include "wx/x11/private.h"
53 IMPLEMENT_DYNAMIC_CLASS(wxPopupWindow
, wxWindow
)
54 IMPLEMENT_DYNAMIC_CLASS(wxPopupTransientWindow
, wxPopupWindow
)
56 #if wxUSE_COMBOBOX && defined(__WXUNIVERSAL__)
57 IMPLEMENT_DYNAMIC_CLASS(wxPopupComboWindow
, wxPopupTransientWindow
)
60 // ----------------------------------------------------------------------------
62 // ----------------------------------------------------------------------------
64 // event handlers which we use to intercept events which cause the popup to
66 class wxPopupWindowHandler
: public wxEvtHandler
69 wxPopupWindowHandler(wxPopupTransientWindow
*popup
) : m_popup(popup
) {}
70 ~wxPopupWindowHandler();
74 void OnLeftDown(wxMouseEvent
& event
);
77 wxPopupTransientWindow
*m_popup
;
80 DECLARE_NO_COPY_CLASS(wxPopupWindowHandler
)
83 class wxPopupFocusHandler
: public wxEvtHandler
86 wxPopupFocusHandler(wxPopupTransientWindow
*popup
) : m_popup(popup
) {}
87 ~wxPopupFocusHandler();
90 void OnKillFocus(wxFocusEvent
& event
);
91 void OnKeyDown(wxKeyEvent
& event
);
94 wxPopupTransientWindow
*m_popup
;
97 DECLARE_NO_COPY_CLASS(wxPopupFocusHandler
)
100 // ----------------------------------------------------------------------------
102 // ----------------------------------------------------------------------------
104 BEGIN_EVENT_TABLE(wxPopupWindowHandler
, wxEvtHandler
)
105 EVT_LEFT_DOWN(wxPopupWindowHandler::OnLeftDown
)
108 BEGIN_EVENT_TABLE(wxPopupFocusHandler
, wxEvtHandler
)
109 EVT_KILL_FOCUS(wxPopupFocusHandler::OnKillFocus
)
110 EVT_KEY_DOWN(wxPopupFocusHandler::OnKeyDown
)
113 BEGIN_EVENT_TABLE(wxPopupTransientWindow
, wxPopupWindow
)
115 EVT_IDLE(wxPopupTransientWindow::OnIdle
)
119 // ============================================================================
121 // ============================================================================
123 // ----------------------------------------------------------------------------
125 // ----------------------------------------------------------------------------
127 wxPopupWindowBase::~wxPopupWindowBase()
129 // this destructor is required for Darwin
132 bool wxPopupWindowBase::Create(wxWindow
* WXUNUSED(parent
), int WXUNUSED(flags
))
137 void wxPopupWindowBase::Position(const wxPoint
& ptOrigin
,
140 wxSize sizeScreen
= wxGetDisplaySize(),
141 sizeSelf
= GetSize();
143 // is there enough space to put the popup below the window (where we put it
145 wxCoord y
= ptOrigin
.y
+ size
.y
;
146 if ( y
+ sizeSelf
.y
> sizeScreen
.y
)
148 // check if there is enough space above
149 if ( ptOrigin
.y
> sizeSelf
.y
)
151 // do position the control above the window
152 y
-= size
.y
+ sizeSelf
.y
;
154 //else: not enough space below nor above, leave below
157 // now check left/right too
158 wxCoord x
= ptOrigin
.x
+ size
.x
;
159 if ( x
+ sizeSelf
.x
> sizeScreen
.x
)
161 // check if there is enough space to the left
162 if ( ptOrigin
.x
> sizeSelf
.x
)
164 // do position the control to the left
165 x
-= size
.x
+ sizeSelf
.x
;
167 //else: not enough space there neither, leave in default position
170 Move(x
, y
, wxSIZE_NO_ADJUSTMENTS
);
173 // ----------------------------------------------------------------------------
174 // wxPopupTransientWindow
175 // ----------------------------------------------------------------------------
177 void wxPopupTransientWindow::Init()
180 m_focus
= (wxWindow
*)NULL
;
182 m_handlerFocus
= NULL
;
183 m_handlerPopup
= NULL
;
186 wxPopupTransientWindow::wxPopupTransientWindow(wxWindow
*parent
, int style
)
190 (void)Create(parent
, style
);
193 wxPopupTransientWindow::~wxPopupTransientWindow()
195 if (m_handlerPopup
&& m_handlerPopup
->GetNextHandler())
198 wxASSERT(!m_handlerFocus
|| !m_handlerFocus
->GetNextHandler());
199 wxASSERT(!m_handlerPopup
|| !m_handlerPopup
->GetNextHandler());
201 delete m_handlerFocus
;
202 delete m_handlerPopup
;
205 void wxPopupTransientWindow::PopHandlers()
209 if ( !m_child
->RemoveEventHandler(m_handlerPopup
) )
211 // something is very wrong and someone else probably deleted our
212 // handler - so don't risk deleting it second time
213 m_handlerPopup
= NULL
;
215 if (m_child
->HasCapture())
217 m_child
->ReleaseMouse();
224 if ( !m_focus
->RemoveEventHandler(m_handlerFocus
) )
227 m_handlerFocus
= NULL
;
233 void wxPopupTransientWindow::Popup(wxWindow
*winFocus
)
235 const wxWindowList
& children
= GetChildren();
236 if ( children
.GetCount() )
238 m_child
= children
.GetFirst()->GetData();
247 // There is is a problem if these are still in use
248 wxASSERT(!m_handlerFocus
|| !m_handlerFocus
->GetNextHandler());
249 wxASSERT(!m_handlerPopup
|| !m_handlerPopup
->GetNextHandler());
252 m_handlerPopup
= new wxPopupWindowHandler(this);
254 m_child
->PushEventHandler(m_handlerPopup
);
256 m_focus
= winFocus
? winFocus
: this;
260 // MSW doesn't allow to set focus to the popup window, but we need to
261 // subclass the window which has the focus, and not winFocus passed in or
262 // otherwise everything else breaks down
263 m_focus
= FindFocus();
265 // GTK+ catches the activate events from the popup
266 // window, not the focus events from the child window
273 m_handlerFocus
= new wxPopupFocusHandler(this);
275 m_focus
->PushEventHandler(m_handlerFocus
);
278 // catch destroy events, if you close a program with a popup shown in MSW
279 // you get a segfault if m_child or m_focus are deleted before this is
280 m_child
->Connect(wxEVT_DESTROY
,
281 wxWindowDestroyEventHandler(wxPopupTransientWindow::OnDestroy
),
284 m_focus
->Connect(wxEVT_DESTROY
,
285 wxWindowDestroyEventHandler(wxPopupTransientWindow::OnDestroy
),
289 bool wxPopupTransientWindow::Show( bool show
)
294 gdk_pointer_ungrab( (guint32
)GDK_CURRENT_TIME
);
296 gtk_grab_remove( m_widget
);
303 XUngrabPointer( wxGlobalDisplay(), CurrentTime
);
308 if (!show
&& m_child
&& m_child
->HasCapture())
310 m_child
->ReleaseMouse();
314 bool ret
= wxPopupWindow::Show( show
);
319 gtk_grab_add( m_widget
);
321 gdk_pointer_grab( m_widget
->window
, TRUE
,
323 (GDK_BUTTON_PRESS_MASK
|
324 GDK_BUTTON_RELEASE_MASK
|
325 GDK_POINTER_MOTION_HINT_MASK
|
326 GDK_POINTER_MOTION_MASK
),
329 (guint32
)GDK_CURRENT_TIME
);
336 Window xwindow
= (Window
) m_clientWindow
;
338 /* int res =*/ XGrabPointer(wxGlobalDisplay(), xwindow
,
340 ButtonPressMask
| ButtonReleaseMask
| ButtonMotionMask
| EnterWindowMask
| LeaveWindowMask
| PointerMotionMask
,
352 // Assume that the mouse is outside the popup to begin with
353 m_child
->CaptureMouse();
360 void wxPopupTransientWindow::Dismiss()
366 void wxPopupTransientWindow::DismissAndNotify()
372 void wxPopupTransientWindow::OnDismiss()
374 // nothing to do here - but it may be interesting for derived class
377 bool wxPopupTransientWindow::ProcessLeftDown(wxMouseEvent
& WXUNUSED(event
))
379 // no special processing here
383 void wxPopupTransientWindow::OnDestroy(wxWindowDestroyEvent
& event
)
385 if (event
.GetEventObject() == m_child
)
387 if (event
.GetEventObject() == m_focus
)
392 void wxPopupTransientWindow::OnIdle(wxIdleEvent
& event
)
396 if (IsShown() && m_child
)
398 wxPoint pos
= ScreenToClient(wxGetMousePosition());
399 wxRect
rect(GetSize());
401 if ( rect
.Inside(pos
) )
403 if ( m_child
->HasCapture() )
405 m_child
->ReleaseMouse();
410 if ( !m_child
->HasCapture() )
412 m_child
->CaptureMouse();
420 #if wxUSE_COMBOBOX && defined(__WXUNIVERSAL__)
422 // ----------------------------------------------------------------------------
423 // wxPopupComboWindow
424 // ----------------------------------------------------------------------------
426 BEGIN_EVENT_TABLE(wxPopupComboWindow
, wxPopupTransientWindow
)
427 EVT_KEY_DOWN(wxPopupComboWindow::OnKeyDown
)
430 wxPopupComboWindow::wxPopupComboWindow(wxComboControl
*parent
)
431 : wxPopupTransientWindow(parent
)
436 bool wxPopupComboWindow::Create(wxComboControl
*parent
)
440 return wxPopupWindow::Create(parent
);
443 void wxPopupComboWindow::PositionNearCombo()
445 // the origin point must be in screen coords
446 wxPoint ptOrigin
= m_combo
->ClientToScreen(wxPoint(0,0));
448 #if 0 //def __WXUNIVERSAL__
449 // account for the fact that (0, 0) is not the top left corner of the
450 // window: there is also the border
451 wxRect rectBorders
= m_combo
->GetRenderer()->
452 GetBorderDimensions(m_combo
->GetBorder());
453 ptOrigin
.x
-= rectBorders
.x
;
454 ptOrigin
.y
-= rectBorders
.y
;
455 #endif // __WXUNIVERSAL__
457 // position below or above the combobox: the width is 0 to put it exactly
458 // below us, not to the left or to the right
459 Position(ptOrigin
, wxSize(0, m_combo
->GetSize().y
));
462 void wxPopupComboWindow::OnDismiss()
464 m_combo
->OnDismiss();
467 void wxPopupComboWindow::OnKeyDown(wxKeyEvent
& event
)
469 m_combo
->ProcessEvent(event
);
472 #endif // wxUSE_COMBOBOX && defined(__WXUNIVERSAL__)
474 // ----------------------------------------------------------------------------
475 // wxPopupWindowHandler
476 // ----------------------------------------------------------------------------
477 wxPopupWindowHandler::~wxPopupWindowHandler()
479 if (m_popup
&& (m_popup
->m_handlerPopup
== this))
480 m_popup
->m_handlerPopup
= NULL
;
483 void wxPopupWindowHandler::OnLeftDown(wxMouseEvent
& event
)
485 // let the window have it first (we're the first event handler in the chain
486 // of handlers for this window)
487 if ( m_popup
->ProcessLeftDown(event
) )
492 wxPoint pos
= event
.GetPosition();
494 // scrollbar on which the click occured
495 wxWindow
*sbar
= NULL
;
497 wxWindow
*win
= (wxWindow
*)event
.GetEventObject();
499 switch ( win
->HitTest(pos
.x
, pos
.y
) )
501 case wxHT_WINDOW_OUTSIDE
:
503 // do the coords translation now as after DismissAndNotify()
504 // m_popup may be destroyed
505 wxMouseEvent
event2(event
);
507 m_popup
->ClientToScreen(&event2
.m_x
, &event2
.m_y
);
509 // clicking outside a popup dismisses it
510 m_popup
->DismissAndNotify();
512 // dismissing a tooltip shouldn't waste a click, i.e. you
513 // should be able to dismiss it and press the button with the
514 // same click, so repost this event to the window beneath us
515 wxWindow
*win
= wxFindWindowAtPoint(event2
.GetPosition());
518 // translate the event coords to the ones of the window
519 // which is going to get the event
520 win
->ScreenToClient(&event2
.m_x
, &event2
.m_y
);
522 event2
.SetEventObject(win
);
523 wxPostEvent(win
, event2
);
528 #ifdef __WXUNIVERSAL__
529 case wxHT_WINDOW_HORZ_SCROLLBAR
:
530 sbar
= win
->GetScrollbar(wxHORIZONTAL
);
533 case wxHT_WINDOW_VERT_SCROLLBAR
:
534 sbar
= win
->GetScrollbar(wxVERTICAL
);
539 // forgot to update the switch after adding a new hit test code?
540 wxFAIL_MSG( _T("unexpected HitTest() return value") );
543 case wxHT_WINDOW_CORNER
:
544 // don't actually know if this one is good for anything, but let it
547 case wxHT_WINDOW_INSIDE
:
548 // let the normal processing take place
555 // translate the event coordinates to the scrollbar ones
556 pos
= sbar
->ScreenToClient(win
->ClientToScreen(pos
));
558 // and give the event to it
559 wxMouseEvent event2
= event
;
563 (void)sbar
->GetEventHandler()->ProcessEvent(event2
);
567 // ----------------------------------------------------------------------------
568 // wxPopupFocusHandler
569 // ----------------------------------------------------------------------------
570 wxPopupFocusHandler::~wxPopupFocusHandler()
572 if (m_popup
&& (m_popup
->m_handlerFocus
== this))
573 m_popup
->m_handlerFocus
= NULL
;
576 void wxPopupFocusHandler::OnKillFocus(wxFocusEvent
& event
)
578 // when we lose focus we always disappear - unless it goes to the popup (in
579 // which case we don't really lose it)
580 wxWindow
*win
= event
.GetWindow();
583 if ( win
== m_popup
)
585 win
= win
->GetParent();
588 m_popup
->DismissAndNotify();
591 void wxPopupFocusHandler::OnKeyDown(wxKeyEvent
& event
)
593 // let the window have it first, it might process the keys
594 if ( !m_popup
->ProcessEvent(event
) )
596 // by default, dismiss the popup
597 m_popup
->DismissAndNotify();
601 #endif // wxUSE_POPUPWIN