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/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
46 IMPLEMENT_DYNAMIC_CLASS(wxPopupWindow
, wxWindow
)
49 IMPLEMENT_DYNAMIC_CLASS(wxPopupTransientWindow
, wxPopupWindow
)
50 IMPLEMENT_DYNAMIC_CLASS(wxPopupComboWindow
, wxPopupTransientWindow
)
52 // ----------------------------------------------------------------------------
54 // ----------------------------------------------------------------------------
56 // event handlers which we use to intercept events which cause the popup to
58 class wxPopupWindowHandler
: public wxEvtHandler
61 wxPopupWindowHandler(wxPopupTransientWindow
*popup
) { m_popup
= popup
; }
65 void OnLeftDown(wxMouseEvent
& event
);
68 wxPopupTransientWindow
*m_popup
;
73 class wxPopupFocusHandler
: public wxEvtHandler
76 wxPopupFocusHandler(wxPopupTransientWindow
*popup
) { m_popup
= popup
; }
80 void OnKillFocus(wxFocusEvent
& event
);
83 wxPopupTransientWindow
*m_popup
;
88 // ----------------------------------------------------------------------------
90 // ----------------------------------------------------------------------------
92 BEGIN_EVENT_TABLE(wxPopupWindowHandler
, wxEvtHandler
)
93 EVT_LEFT_DOWN(wxPopupWindowHandler::OnLeftDown
)
96 BEGIN_EVENT_TABLE(wxPopupFocusHandler
, wxEvtHandler
)
97 EVT_KILL_FOCUS(wxPopupFocusHandler::OnKillFocus
)
100 // ============================================================================
102 // ============================================================================
104 // ----------------------------------------------------------------------------
106 // ----------------------------------------------------------------------------
108 bool wxPopupWindowBase::Create(wxWindow
* WXUNUSED(parent
), int WXUNUSED(flags
))
113 void wxPopupWindowBase::Position(const wxPoint
& ptOrigin
,
116 wxSize sizeScreen
= wxGetDisplaySize(),
117 sizeSelf
= GetSize();
119 // is there enough space to put the popup below the window (where we put it
121 wxCoord y
= ptOrigin
.y
+ size
.y
;
122 if ( y
+ sizeSelf
.y
> sizeScreen
.y
)
124 // check if there is enough space above
125 if ( ptOrigin
.y
> sizeSelf
.y
)
127 // do position the control above the window
128 y
-= size
.y
+ sizeSelf
.y
;
130 //else: not enough space below nor above, leave below
133 // now check left/right too
134 wxCoord x
= ptOrigin
.x
+ size
.x
;
135 if ( x
+ sizeSelf
.x
> sizeScreen
.x
)
137 // check if there is enough space to the left
138 if ( ptOrigin
.x
> sizeSelf
.x
)
140 // do position the control to the left
141 x
-= size
.x
+ sizeSelf
.x
;
143 //else: not enough space there neither, leave in default position
146 Move(x
, y
, wxSIZE_NO_ADJUSTMENTS
);
149 // ----------------------------------------------------------------------------
150 // wxPopupTransientWindow
151 // ----------------------------------------------------------------------------
153 void wxPopupTransientWindow::Init()
156 m_focus
= (wxWindow
*)NULL
;
159 wxPopupTransientWindow::wxPopupTransientWindow(wxWindow
*parent
, int style
)
163 (void)Create(parent
, style
);
166 wxPopupTransientWindow::~wxPopupTransientWindow()
171 void wxPopupTransientWindow::PopHandlers()
175 m_child
->PopEventHandler(TRUE
/* delete it */);
176 m_child
->ReleaseMouse();
182 m_focus
->PopEventHandler(TRUE
/* delete it */);
187 void wxPopupTransientWindow::Popup(wxWindow
*winFocus
)
189 const wxWindowList
& children
= GetChildren();
190 if ( children
.GetCount() )
192 m_child
= children
.GetFirst()->GetData();
199 // we can't capture mouse before the window is shown in wxGTL
204 m_child
->CaptureMouse();
205 m_child
->PushEventHandler(new wxPopupWindowHandler(this));
211 m_focus
= winFocus
? winFocus
: this;
212 m_focus
->PushEventHandler(new wxPopupFocusHandler(this));
216 void wxPopupTransientWindow::Dismiss()
223 void wxPopupTransientWindow::DismissAndNotify()
230 void wxPopupTransientWindow::OnDismiss()
232 // nothing to do here - but it may be interesting for derived class
235 bool wxPopupTransientWindow::ProcessLeftDown(wxMouseEvent
& WXUNUSED(event
))
237 // no special processing here
241 #if wxUSE_COMBOBOX && defined(__WXUNIVERSAL__)
243 // ----------------------------------------------------------------------------
244 // wxPopupComboWindow
245 // ----------------------------------------------------------------------------
247 wxPopupComboWindow::wxPopupComboWindow(wxComboControl
*parent
)
248 : wxPopupTransientWindow(parent
)
253 bool wxPopupComboWindow::Create(wxComboControl
*parent
)
257 return wxPopupWindow::Create(parent
);
260 void wxPopupComboWindow::PositionNearCombo()
262 // the origin point must be in screen coords
263 wxPoint ptOrigin
= m_combo
->ClientToScreen(wxPoint(0, 0));
265 #if 0 //def __WXUNIVERSAL__
266 // account for the fact that (0, 0) is not the top left corner of the
267 // window: there is also the border
268 wxRect rectBorders
= m_combo
->GetRenderer()->
269 GetBorderDimensions(m_combo
->GetBorder());
270 ptOrigin
.x
-= rectBorders
.x
;
271 ptOrigin
.y
-= rectBorders
.y
;
272 #endif // __WXUNIVERSAL__
274 // position below or above the combobox: the width is 0 to put it exactly
275 // below us, not to the left or to the right
276 Position(ptOrigin
, wxSize(0, m_combo
->GetSize().y
));
279 void wxPopupComboWindow::OnDismiss()
281 m_combo
->OnDismiss();
284 #endif // wxUSE_COMBOBOX && defined(__WXUNIVERSAL__)
286 // ----------------------------------------------------------------------------
287 // wxPopupWindowHandler
288 // ----------------------------------------------------------------------------
290 void wxPopupWindowHandler::OnLeftDown(wxMouseEvent
& event
)
292 // let the window have it first (we're the first event handler in the chain
293 // of handlers for this window)
294 if ( m_popup
->ProcessLeftDown(event
) )
299 wxPoint pos
= event
.GetPosition();
301 // scrollbar on which the click occured
302 wxWindow
*sbar
= NULL
;
304 wxWindow
*win
= (wxWindow
*)event
.GetEventObject();
305 switch ( win
->HitTest(pos
.x
, pos
.y
) )
307 case wxHT_WINDOW_OUTSIDE
:
308 // clicking outside a popup dismisses it
309 m_popup
->DismissAndNotify();
312 #ifdef __WXUNIVERSAL__
313 case wxHT_WINDOW_HORZ_SCROLLBAR
:
314 sbar
= win
->GetScrollbar(wxHORIZONTAL
);
317 case wxHT_WINDOW_VERT_SCROLLBAR
:
318 sbar
= win
->GetScrollbar(wxVERTICAL
);
323 // forgot to update the switch after adding a new hit test code?
324 wxFAIL_MSG( _T("unexpected HitTest() return value") );
327 case wxHT_WINDOW_CORNER
:
328 // don't actually know if this one is good for anything, but let it
331 case wxHT_WINDOW_INSIDE
:
332 // let the normal processing take place
339 // translate the event coordinates to the scrollbar ones
340 pos
= sbar
->ScreenToClient(win
->ClientToScreen(pos
));
342 // and give the event to it
343 wxMouseEvent event2
= event
;
347 (void)sbar
->GetEventHandler()->ProcessEvent(event2
);
351 // ----------------------------------------------------------------------------
352 // wxPopupFocusHandler
353 // ----------------------------------------------------------------------------
355 void wxPopupFocusHandler::OnKillFocus(wxFocusEvent
& event
)
357 // when we lose focus we always disappear
359 // But if m_popup was about to get the focus,
361 if (event
.GetWindow() != m_popup
)
362 m_popup
->DismissAndNotify();
365 #endif // wxUSE_POPUPWIN