]>
Commit | Line | Data |
---|---|---|
14cd0443 SC |
1 | /////////////////////////////////////////////////////////////////////////////// |
2 | // Name: src/mac/popupwin.cpp | |
3 | // Purpose: implements wxPopupWindow for wxMac | |
4 | // Author: Stefan Csomor | |
5 | // Modified by: | |
6 | // Created: | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) 2006 Stefan Csomor | |
9 | // License: wxWindows licence | |
10 | /////////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | // ============================================================================ | |
13 | // declarations | |
14 | // ============================================================================ | |
15 | ||
6239ee05 | 16 | // CAUTION : This is only experimental stuff right now |
14cd0443 SC |
17 | |
18 | // ---------------------------------------------------------------------------- | |
19 | // headers | |
20 | // ---------------------------------------------------------------------------- | |
21 | ||
22 | // For compilers that support precompilation, includes "wx.h". | |
23 | #include "wx/wxprec.h" | |
24 | ||
25 | #ifdef __BORLANDC__ | |
26 | #pragma hdrstop | |
27 | #endif | |
28 | ||
29 | #if wxUSE_POPUPWIN | |
30 | ||
31 | #ifndef WX_PRECOMP | |
32 | #endif //WX_PRECOMP | |
33 | ||
34 | #include "wx/popupwin.h" | |
6239ee05 | 35 | #include "wx/tooltip.h" |
14cd0443 SC |
36 | |
37 | #include "wx/mac/private.h" | |
38 | ||
39 | // ============================================================================ | |
40 | // implementation | |
41 | // ============================================================================ | |
42 | ||
6239ee05 SC |
43 | wxPopupWindow::~wxPopupWindow() |
44 | { | |
6239ee05 SC |
45 | } |
46 | ||
871d4e1b | 47 | bool wxPopupWindow::Create(wxWindow *parent, int flags) |
14cd0443 SC |
48 | { |
49 | // popup windows are created hidden by default | |
50 | Hide(); | |
51 | ||
871d4e1b SC |
52 | return wxPopupWindowBase::Create(parent) && |
53 | wxNonOwnedWindow::Create(parent, wxID_ANY, | |
54 | wxDefaultPosition, wxDefaultSize, | |
55 | flags | wxPOPUP_WINDOW); | |
6239ee05 | 56 | |
6239ee05 SC |
57 | } |
58 | ||
14cd0443 | 59 | #endif // #if wxUSE_POPUPWIN |