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 license
10 ///////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
21 #pragma implementation "popupwinbase.h"
24 // For compilers that support precompilation, includes "wx.h".
25 #include "wx/wxprec.h"
31 #if wxUSE_POPUPWIN && !defined(__WXMOTIF__)
33 #include "wx/popupwin.h"
36 #include "wx/combobox.h" // wxComboControl
39 #ifdef __WXUNIVERSAL__
40 #include "wx/univ/renderer.h"
41 #endif // __WXUNIVERSAL__
43 // there is no src/{msw,mgl}/popupwin.cpp to put this in, so we do it here - BTW we
44 // probably could do it for all ports here just as well
45 #if defined(__WXMSW__) || defined(__WXMGL__)
46 IMPLEMENT_DYNAMIC_CLASS(wxPopupWindow
, wxWindow
)
49 IMPLEMENT_DYNAMIC_CLASS(wxPopupTransientWindow
, wxPopupWindow
)
51 #if wxUSE_COMBOBOX && defined(__WXUNIVERSAL__)
52 IMPLEMENT_DYNAMIC_CLASS(wxPopupComboWindow
, wxPopupTransientWindow
)
55 // ----------------------------------------------------------------------------
57 // ----------------------------------------------------------------------------
59 // event handlers which we use to intercept events which cause the popup to
61 class wxPopupWindowHandler
: public wxEvtHandler
64 wxPopupWindowHandler(wxPopupTransientWindow
*popup
) { m_popup
= popup
; }
68 void OnLeftDown(wxMouseEvent
& event
);
71 wxPopupTransientWindow
*m_popup
;
76 class wxPopupFocusHandler
: public wxEvtHandler
79 wxPopupFocusHandler(wxPopupTransientWindow
*popup
)
84 // ignore the next few OnKillFocus() calls
85 m_creationTime
= time(NULL
);
91 void OnKillFocus(wxFocusEvent
& event
);
92 void OnKeyUp(wxKeyEvent
& event
);
95 wxPopupTransientWindow
*m_popup
;
97 // hack around wxGTK bug: we always get several kill focus events
98 // immediately after creation!
100 time_t m_creationTime
;
103 DECLARE_EVENT_TABLE()
106 // ----------------------------------------------------------------------------
108 // ----------------------------------------------------------------------------
110 BEGIN_EVENT_TABLE(wxPopupWindowHandler
, wxEvtHandler
)
111 EVT_LEFT_DOWN(wxPopupWindowHandler::OnLeftDown
)
114 BEGIN_EVENT_TABLE(wxPopupFocusHandler
, wxEvtHandler
)
115 EVT_KILL_FOCUS(wxPopupFocusHandler::OnKillFocus
)
116 EVT_KEY_UP(wxPopupFocusHandler::OnKeyUp
)
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
;
183 wxPopupTransientWindow::wxPopupTransientWindow(wxWindow
*parent
, int style
)
187 (void)Create(parent
, style
);
190 wxPopupTransientWindow::~wxPopupTransientWindow()
195 void wxPopupTransientWindow::PopHandlers()
199 m_child
->PopEventHandler(TRUE
/* delete it */);
200 m_child
->ReleaseMouse();
206 m_focus
->PopEventHandler(TRUE
/* delete it */);
211 void wxPopupTransientWindow::Popup(wxWindow
*winFocus
)
213 const wxWindowList
& children
= GetChildren();
214 if ( children
.GetCount() )
216 m_child
= children
.GetFirst()->GetData();
223 // we can't capture mouse before the window is shown in wxGTK, so do it
227 m_child
->CaptureMouse();
228 m_child
->PushEventHandler(new wxPopupWindowHandler(this));
230 m_focus
= winFocus
? winFocus
: this;
234 // FIXME: I don't know why does this happen but sometimes SetFocus() simply
235 // refuses to work under MSW - no error happens but the focus is not
236 // given to the window, i.e. the assert below is triggered
238 // Try work around this as we can...
240 //wxASSERT_MSG( FindFocus() == m_focus, _T("setting focus failed") );
241 m_focus
= FindFocus();
245 m_focus
->PushEventHandler(new wxPopupFocusHandler(this));
249 void wxPopupTransientWindow::Dismiss()
256 void wxPopupTransientWindow::DismissAndNotify()
263 void wxPopupTransientWindow::OnDismiss()
265 // nothing to do here - but it may be interesting for derived class
268 bool wxPopupTransientWindow::ProcessLeftDown(wxMouseEvent
& WXUNUSED(event
))
270 // no special processing here
274 #if wxUSE_COMBOBOX && defined(__WXUNIVERSAL__)
276 // ----------------------------------------------------------------------------
277 // wxPopupComboWindow
278 // ----------------------------------------------------------------------------
280 wxPopupComboWindow::wxPopupComboWindow(wxComboControl
*parent
)
281 : wxPopupTransientWindow(parent
)
286 bool wxPopupComboWindow::Create(wxComboControl
*parent
)
290 return wxPopupWindow::Create(parent
);
293 void wxPopupComboWindow::PositionNearCombo()
295 // the origin point must be in screen coords
296 wxPoint ptOrigin
= m_combo
->ClientToScreen(wxPoint(0, 0));
298 #if 0 //def __WXUNIVERSAL__
299 // account for the fact that (0, 0) is not the top left corner of the
300 // window: there is also the border
301 wxRect rectBorders
= m_combo
->GetRenderer()->
302 GetBorderDimensions(m_combo
->GetBorder());
303 ptOrigin
.x
-= rectBorders
.x
;
304 ptOrigin
.y
-= rectBorders
.y
;
305 #endif // __WXUNIVERSAL__
307 // position below or above the combobox: the width is 0 to put it exactly
308 // below us, not to the left or to the right
309 Position(ptOrigin
, wxSize(0, m_combo
->GetSize().y
));
312 void wxPopupComboWindow::OnDismiss()
314 m_combo
->OnDismiss();
317 #endif // wxUSE_COMBOBOX && defined(__WXUNIVERSAL__)
319 // ----------------------------------------------------------------------------
320 // wxPopupWindowHandler
321 // ----------------------------------------------------------------------------
323 void wxPopupWindowHandler::OnLeftDown(wxMouseEvent
& event
)
325 // let the window have it first (we're the first event handler in the chain
326 // of handlers for this window)
327 if ( m_popup
->ProcessLeftDown(event
) )
332 wxPoint pos
= event
.GetPosition();
334 // scrollbar on which the click occured
335 wxWindow
*sbar
= NULL
;
337 wxWindow
*win
= (wxWindow
*)event
.GetEventObject();
338 switch ( win
->HitTest(pos
.x
, pos
.y
) )
340 case wxHT_WINDOW_OUTSIDE
:
341 // clicking outside a popup dismisses it
342 m_popup
->DismissAndNotify();
345 #ifdef __WXUNIVERSAL__
346 case wxHT_WINDOW_HORZ_SCROLLBAR
:
347 sbar
= win
->GetScrollbar(wxHORIZONTAL
);
350 case wxHT_WINDOW_VERT_SCROLLBAR
:
351 sbar
= win
->GetScrollbar(wxVERTICAL
);
356 // forgot to update the switch after adding a new hit test code?
357 wxFAIL_MSG( _T("unexpected HitTest() return value") );
360 case wxHT_WINDOW_CORNER
:
361 // don't actually know if this one is good for anything, but let it
364 case wxHT_WINDOW_INSIDE
:
365 // let the normal processing take place
372 // translate the event coordinates to the scrollbar ones
373 pos
= sbar
->ScreenToClient(win
->ClientToScreen(pos
));
375 // and give the event to it
376 wxMouseEvent event2
= event
;
380 (void)sbar
->GetEventHandler()->ProcessEvent(event2
);
384 // ----------------------------------------------------------------------------
385 // wxPopupFocusHandler
386 // ----------------------------------------------------------------------------
388 void wxPopupFocusHandler::OnKillFocus(wxFocusEvent
& event
)
391 // ignore the next OnKillFocus() call
392 if ( time(NULL
) < m_creationTime
+ 1 )
400 // when we lose focus we always disappear - unless it goes to the popup (in
401 // which case we don't really lose it)
402 if ( event
.GetWindow() != m_popup
)
403 m_popup
->DismissAndNotify();
406 void wxPopupFocusHandler::OnKeyUp(wxKeyEvent
& event
)
408 // let the window have it first, it might process the keys
409 if ( !m_popup
->ProcessEvent(event
) )
411 // by default, dismiss the popup
412 m_popup
->DismissAndNotify();
416 #endif // wxUSE_POPUPWIN