phoenix_title wx.PopupWindow

A special kind of top level window used for popup menus, combobox popups and such.

^^

styles Window Styles

This class supports the following styles:

  • wx.PU_CONTAINS_CONTROLS: By default in wxMSW, a popup window will not take focus from its parent window. However many standard controls, including common ones such as wx.TextCtrl, need focus to function correctly and will not work when placed on a default popup. This flag can be used to make the popup take focus and let all controls work but at the price of not allowing the parent window to keep focus while the popup is shown, which can also be sometimes desirable. This style is currently only implemented in MSW and simply does nothing under the other platforms (it’s new since wxWidgets 3.1.3). ^^


class_hierarchy Class Hierarchy

Inheritance diagram for class PopupWindow:

sub_classes Known Subclasses

wx.PopupTransientWindow


method_summary Methods Summary

__init__

Default constructor.

Create

Create method for two-step creation.

GetClassDefaultAttributes

Position

Move the popup window to the right position, i.e. such that it is entirely visible.


api Class API

class wx.PopupWindow(NonOwnedWindow)

Possible constructors:

PopupWindow()

PopupWindow(parent, flags=BORDER_NONE)

A special kind of top level window used for popup menus, combobox popups and such.


Methods

__init__(self, *args, **kw)

overload Overloaded Implementations:



__init__ (self)

Default constructor.



__init__ (self, parent, flags=BORDER_NONE)

Constructor.

Parameters





Create(self, parent, flags=BORDER_NONE)

Create method for two-step creation.

Parameters
Return type

bool



static GetClassDefaultAttributes(variant=WINDOW_VARIANT_NORMAL)
Parameters

variant (WindowVariant) –

Return type

wx.VisualAttributes



Position(self, ptOrigin, sizePopup)

Move the popup window to the right position, i.e. such that it is entirely visible.

The popup is positioned at ptOrigin + size if it opens below and to the right (default), at ptOrigin - sizePopup if it opens above and to the left etc.

Parameters
  • ptOrigin (wx.Point) – Must be given in screen coordinates!

  • sizePopup (wx.Size) – The size of the popup window