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__
46 // there is no src/mgl/popupwin.cpp to put this in, so we do it here - BTW we
47 // probably could do it for all ports here just as well
48 #if defined(__WXMGL__)
49 IMPLEMENT_DYNAMIC_CLASS(wxPopupWindow
, wxWindow
)
52 IMPLEMENT_DYNAMIC_CLASS(wxPopupTransientWindow
, wxPopupWindow
)
54 #if wxUSE_COMBOBOX && defined(__WXUNIVERSAL__)
55 IMPLEMENT_DYNAMIC_CLASS(wxPopupComboWindow
, wxPopupTransientWindow
)
58 // ----------------------------------------------------------------------------
60 // ----------------------------------------------------------------------------
62 // event handlers which we use to intercept events which cause the popup to
64 class wxPopupWindowHandler
: public wxEvtHandler
67 wxPopupWindowHandler(wxPopupTransientWindow
*popup
) { m_popup
= popup
; }
71 void OnLeftDown(wxMouseEvent
& event
);
74 wxPopupTransientWindow
*m_popup
;
77 DECLARE_NO_COPY_CLASS(wxPopupWindowHandler
)
80 class wxPopupFocusHandler
: public wxEvtHandler
83 wxPopupFocusHandler(wxPopupTransientWindow
*popup
)
88 // ignore the next few OnKillFocus() calls
89 m_creationTime
= time(NULL
);
95 void OnKillFocus(wxFocusEvent
& event
);
96 void OnKeyDown(wxKeyEvent
& event
);
99 wxPopupTransientWindow
*m_popup
;
101 // hack around wxGTK bug: we always get several kill focus events
102 // immediately after creation!
104 time_t m_creationTime
;
107 DECLARE_EVENT_TABLE()
108 DECLARE_NO_COPY_CLASS(wxPopupFocusHandler
)
111 // ----------------------------------------------------------------------------
113 // ----------------------------------------------------------------------------
115 BEGIN_EVENT_TABLE(wxPopupWindowHandler
, wxEvtHandler
)
116 EVT_LEFT_DOWN(wxPopupWindowHandler::OnLeftDown
)
119 BEGIN_EVENT_TABLE(wxPopupFocusHandler
, wxEvtHandler
)
120 EVT_KILL_FOCUS(wxPopupFocusHandler::OnKillFocus
)
121 EVT_KEY_DOWN(wxPopupFocusHandler::OnKeyDown
)
124 // ============================================================================
126 // ============================================================================
128 // ----------------------------------------------------------------------------
130 // ----------------------------------------------------------------------------
132 wxPopupWindowBase::~wxPopupWindowBase()
134 // this destructor is required for Darwin
137 bool wxPopupWindowBase::Create(wxWindow
* WXUNUSED(parent
), int WXUNUSED(flags
))
142 void wxPopupWindowBase::Position(const wxPoint
& ptOrigin
,
145 wxSize sizeScreen
= wxGetDisplaySize(),
146 sizeSelf
= GetSize();
148 // is there enough space to put the popup below the window (where we put it
150 wxCoord y
= ptOrigin
.y
+ size
.y
;
151 if ( y
+ sizeSelf
.y
> sizeScreen
.y
)
153 // check if there is enough space above
154 if ( ptOrigin
.y
> sizeSelf
.y
)
156 // do position the control above the window
157 y
-= size
.y
+ sizeSelf
.y
;
159 //else: not enough space below nor above, leave below
162 // now check left/right too
163 wxCoord x
= ptOrigin
.x
+ size
.x
;
164 if ( x
+ sizeSelf
.x
> sizeScreen
.x
)
166 // check if there is enough space to the left
167 if ( ptOrigin
.x
> sizeSelf
.x
)
169 // do position the control to the left
170 x
-= size
.x
+ sizeSelf
.x
;
172 //else: not enough space there neither, leave in default position
175 Move(x
, y
, wxSIZE_NO_ADJUSTMENTS
);
178 // ----------------------------------------------------------------------------
179 // wxPopupTransientWindow
180 // ----------------------------------------------------------------------------
182 void wxPopupTransientWindow::Init()
185 m_focus
= (wxWindow
*)NULL
;
187 m_handlerFocus
= NULL
;
188 m_handlerPopup
= NULL
;
191 wxPopupTransientWindow::wxPopupTransientWindow(wxWindow
*parent
, int style
)
195 (void)Create(parent
, style
);
198 wxPopupTransientWindow::~wxPopupTransientWindow()
202 delete m_handlerFocus
;
204 delete m_handlerPopup
;
207 void wxPopupTransientWindow::PopHandlers()
211 if ( !m_child
->RemoveEventHandler(m_handlerPopup
) )
213 // something is very wrong and someone else probably deleted our
214 // handler - so don't risk deleting it second time
215 m_handlerPopup
= NULL
;
218 m_child
->ReleaseMouse();
225 if ( !m_focus
->RemoveEventHandler(m_handlerFocus
) )
228 m_handlerFocus
= NULL
;
235 void wxPopupTransientWindow::Popup(wxWindow
*winFocus
)
237 const wxWindowList
& children
= GetChildren();
238 if ( children
.GetCount() )
240 m_child
= children
.GetFirst()->GetData();
247 // we can't capture mouse before the window is shown in wxGTK, so do it
251 delete m_handlerPopup
;
252 m_handlerPopup
= new wxPopupWindowHandler(this);
254 m_child
->CaptureMouse();
255 m_child
->PushEventHandler(m_handlerPopup
);
257 m_focus
= winFocus
? winFocus
: this;
263 // MSW doesn't allow to set focus to the popup window, but we need to
264 // subclass the window which has the focus, and not winFocus passed in or
265 // otherwise everything else breaks down
266 m_focus
= FindFocus();
270 delete m_handlerFocus
;
271 m_handlerFocus
= new wxPopupFocusHandler(this);
273 m_focus
->PushEventHandler(m_handlerFocus
);
279 void wxPopupTransientWindow::Dismiss()
286 void wxPopupTransientWindow::DismissAndNotify()
293 void wxPopupTransientWindow::OnDismiss()
295 // nothing to do here - but it may be interesting for derived class
298 bool wxPopupTransientWindow::ProcessLeftDown(wxMouseEvent
& WXUNUSED(event
))
300 // no special processing here
304 #if wxUSE_COMBOBOX && defined(__WXUNIVERSAL__)
306 // ----------------------------------------------------------------------------
307 // wxPopupComboWindow
308 // ----------------------------------------------------------------------------
310 BEGIN_EVENT_TABLE(wxPopupComboWindow
, wxPopupTransientWindow
)
311 EVT_KEY_DOWN(wxPopupComboWindow::OnKeyDown
)
314 wxPopupComboWindow::wxPopupComboWindow(wxComboControl
*parent
)
315 : wxPopupTransientWindow(parent
)
320 bool wxPopupComboWindow::Create(wxComboControl
*parent
)
324 return wxPopupWindow::Create(parent
);
327 void wxPopupComboWindow::PositionNearCombo()
329 // the origin point must be in screen coords
330 wxPoint ptOrigin
= m_combo
->ClientToScreen(wxPoint(0, 0));
332 #if 0 //def __WXUNIVERSAL__
333 // account for the fact that (0, 0) is not the top left corner of the
334 // window: there is also the border
335 wxRect rectBorders
= m_combo
->GetRenderer()->
336 GetBorderDimensions(m_combo
->GetBorder());
337 ptOrigin
.x
-= rectBorders
.x
;
338 ptOrigin
.y
-= rectBorders
.y
;
339 #endif // __WXUNIVERSAL__
341 // position below or above the combobox: the width is 0 to put it exactly
342 // below us, not to the left or to the right
343 Position(ptOrigin
, wxSize(0, m_combo
->GetSize().y
));
346 void wxPopupComboWindow::OnDismiss()
348 m_combo
->OnDismiss();
351 void wxPopupComboWindow::OnKeyDown(wxKeyEvent
& event
)
353 m_combo
->ProcessEvent(event
);
356 #endif // wxUSE_COMBOBOX && defined(__WXUNIVERSAL__)
358 // ----------------------------------------------------------------------------
359 // wxPopupWindowHandler
360 // ----------------------------------------------------------------------------
362 void wxPopupWindowHandler::OnLeftDown(wxMouseEvent
& event
)
364 // let the window have it first (we're the first event handler in the chain
365 // of handlers for this window)
366 if ( m_popup
->ProcessLeftDown(event
) )
371 wxPoint pos
= event
.GetPosition();
373 // scrollbar on which the click occured
374 wxWindow
*sbar
= NULL
;
376 wxWindow
*win
= (wxWindow
*)event
.GetEventObject();
378 switch ( win
->HitTest(pos
.x
, pos
.y
) )
380 case wxHT_WINDOW_OUTSIDE
:
382 // do the coords translation now as after DismissAndNotify()
383 // m_popup may be destroyed
384 wxMouseEvent
event2(event
);
386 m_popup
->ClientToScreen(&event2
.m_x
, &event2
.m_y
);
388 // clicking outside a popup dismisses it
389 m_popup
->DismissAndNotify();
391 // dismissing a tooltip shouldn't waste a click, i.e. you
392 // should be able to dismiss it and press the button with the
393 // same click, so repost this event to the window beneath us
394 wxWindow
*win
= wxFindWindowAtPoint(event2
.GetPosition());
397 // translate the event coords to the ones of the window
398 // which is going to get the event
399 win
->ScreenToClient(&event2
.m_x
, &event2
.m_y
);
401 event2
.SetEventObject(win
);
402 wxPostEvent(win
, event2
);
407 #ifdef __WXUNIVERSAL__
408 case wxHT_WINDOW_HORZ_SCROLLBAR
:
409 sbar
= win
->GetScrollbar(wxHORIZONTAL
);
412 case wxHT_WINDOW_VERT_SCROLLBAR
:
413 sbar
= win
->GetScrollbar(wxVERTICAL
);
418 // forgot to update the switch after adding a new hit test code?
419 wxFAIL_MSG( _T("unexpected HitTest() return value") );
422 case wxHT_WINDOW_CORNER
:
423 // don't actually know if this one is good for anything, but let it
426 case wxHT_WINDOW_INSIDE
:
427 // let the normal processing take place
434 // translate the event coordinates to the scrollbar ones
435 pos
= sbar
->ScreenToClient(win
->ClientToScreen(pos
));
437 // and give the event to it
438 wxMouseEvent event2
= event
;
442 (void)sbar
->GetEventHandler()->ProcessEvent(event2
);
446 // ----------------------------------------------------------------------------
447 // wxPopupFocusHandler
448 // ----------------------------------------------------------------------------
450 void wxPopupFocusHandler::OnKillFocus(wxFocusEvent
& event
)
453 // ignore the next OnKillFocus() call
454 if ( time(NULL
) < m_creationTime
+ 1 )
462 // when we lose focus we always disappear - unless it goes to the popup (in
463 // which case we don't really lose it)
464 wxWindow
*win
= event
.GetWindow();
467 if ( win
== m_popup
)
469 win
= win
->GetParent();
472 m_popup
->DismissAndNotify();
475 void wxPopupFocusHandler::OnKeyDown(wxKeyEvent
& event
)
477 // let the window have it first, it might process the keys
478 if ( !m_popup
->ProcessEvent(event
) )
480 // by default, dismiss the popup
481 m_popup
->DismissAndNotify();
485 #endif // wxUSE_POPUPWIN