]> git.saurik.com Git - wxWidgets.git/blame - src/msw/popupwin.cpp
don't compile generic wxMessageDialog w/ GTK+2, it's not used (forgot to commit this)
[wxWidgets.git] / src / msw / popupwin.cpp
CommitLineData
e49d97e6
VZ
1///////////////////////////////////////////////////////////////////////////////
2// Name: msw/popupwin.cpp
3// Purpose: implements wxPopupWindow for MSW
4// Author: Vadim Zeitlin
5// Modified by:
6// Created: 08.05.02
7// RCS-ID: $Id$
8// Copyright: (c) 2002 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
6c9a19aa 9// License: wxWindows licence
e49d97e6
VZ
10///////////////////////////////////////////////////////////////////////////////
11
12// ============================================================================
13// declarations
14// ============================================================================
15
16// ----------------------------------------------------------------------------
17// headers
18// ----------------------------------------------------------------------------
19
20#ifdef __GNUG__
21 #pragma implementation "popup.h"
22#endif
23
24// For compilers that support precompilation, includes "wx.h".
25#include "wx/wxprec.h"
26
27#ifdef __BORLANDC__
28 #pragma hdrstop
29#endif
30
31#ifndef WX_PRECOMP
32#endif //WX_PRECOMP
33
3080bf59
VZ
34#if wxUSE_POPUPWIN
35
e49d97e6
VZ
36#include "wx/popupwin.h"
37
24b3cc2c 38#include "wx/msw/private.h" // for GetDesktopWindow()
220c6d43 39
24b3cc2c 40IMPLEMENT_DYNAMIC_CLASS(wxPopupWindow, wxWindow)
7e25f59e 41
e49d97e6
VZ
42// ============================================================================
43// implementation
44// ============================================================================
45
46bool wxPopupWindow::Create(wxWindow *parent, int flags)
47{
48 return wxPopupWindowBase::Create(parent) &&
49 wxWindow::Create(parent, -1,
50 wxDefaultPosition, wxDefaultSize,
51 flags | wxPOPUP_WINDOW);
52}
53
54void wxPopupWindow::DoGetPosition(int *x, int *y) const
55{
56 // the position of a "top level" window such as this should be in
57 // screen coordinates, not in the client ones which MSW gives us
58 // (because we are a child window)
59 wxPopupWindowBase::DoGetPosition(x, y);
60
61 GetParent()->ClientToScreen(x, y);
62}
63
64WXDWORD wxPopupWindow::MSWGetStyle(long flags, WXDWORD *exstyle) const
65{
24b3cc2c 66 // we only honour the border flags, the others don't make sense for us
e49d97e6
VZ
67 WXDWORD style = wxWindow::MSWGetStyle(flags & wxBORDER_MASK, exstyle);
68
e49d97e6
VZ
69 if ( exstyle )
70 {
71 // a popup window floats on top of everything
72 *exstyle |= WS_EX_TOPMOST | WS_EX_TOOLWINDOW;
73 }
74
75 return style;
76}
77
24b3cc2c 78WXHWND wxPopupWindow::MSWGetParent() const
7e25f59e 79{
24b3cc2c
VZ
80 // we must be a child of the desktop to be able to extend beyond the parent
81 // window client area (like the comboboxes drop downs do)
82 //
83 // NB: alternative implementation would be to use WS_POPUP instead of
84 // WS_CHILD but then showing a popup would deactivate the parent which
85 // is ugly and working around this, although possible, is even more
86 // ugly
87 return (WXHWND)::GetDesktopWindow();
7e25f59e
VZ
88}
89
25b1b442
JS
90bool wxPopupWindow::Show(bool show)
91{
c649a6ab 92 if ( !wxWindowMSW::Show(show) )
25b1b442
JS
93 return FALSE;
94
25b1b442
JS
95 if ( show )
96 {
97 // raise to top of z order
c649a6ab 98 if (!::SetWindowPos(GetHwnd(), HWND_TOP, 0, 0, 0, 0, SWP_NOMOVE | SWP_NOSIZE))
25b1b442
JS
99 {
100 wxLogLastError(_T("SetWindowPos"));
101 }
102 }
103
104 return TRUE;
105}
106
3080bf59 107#endif // #if wxUSE_POPUPWIN
25b1b442 108