]>
git.saurik.com Git - wxWidgets.git/blob - interface/popupwin.h
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: interface of wxPoppWindow
4 // Author: wxWidgets team
6 // Licence: wxWindows license
7 /////////////////////////////////////////////////////////////////////////////
13 A special kind of top level window used for popup menus,
14 combobox popups and such.
19 @see wxDialog, wxFrame
22 class wxPopupWindow
: public wxNonOwnedWindow
29 wxPopupWindow(wxWindow
*parent
, int flags
= wxBORDER_NONE
);
32 Create method for two-step creation
34 bool Create(wxWindow
*parent
, int flags
= wxBORDER_NONE
);
37 Move the popup window to the right position, i.e. such that it is
40 The popup is positioned at ptOrigin + size if it opens below and to the
41 right (default), at ptOrigin - sizePopup if it opens above and to the
45 Must be given in screen coordinates!
47 virtual void Position(const wxPoint
& ptOrigin
,