wx.lib.combotreebox.BasePopupFrame¶
BasePopupFrame is the base class for platform specific versions of the PopupFrame. The PopupFrame is the frame that is popped up by ComboTreeBox. It contains the tree of items that the user can select one item from. Upon selection, or when focus is lost, the frame is hidden.
Class Hierarchy¶
Known Subclasses¶
wx.lib.combotreebox.GTKPopupFrame
, wx.lib.combotreebox.MACPopupFrame
, wx.lib.combotreebox.MSWPopupFrame
Known Superclasses¶
Methods Summary¶
Initialize self. See help(type(self)) for accurate signature. |
|
Hide() -> bool |
|
Show(show=True) -> bool |
Class API¶
- class BasePopupFrame(wx.Frame)¶
BasePopupFrame is the base class for platform specific versions of the PopupFrame. The PopupFrame is the frame that is popped up by ComboTreeBox. It contains the tree of items that the user can select one item from. Upon selection, or when focus is lost, the frame is hidden.
Methods¶
- __init__(self, parent)¶
Initialize self. See help(type(self)) for accurate signature.
- GetTree(self)¶
- Hide(self)¶
Hide() -> bool
Equivalent to calling wxWindow::Show(false).
- OnChar(self, keyEvent)¶
- OnItemActivated(self, event)¶
- OnKillFocus(self, event)¶
- OnMouseClick(self, event)¶
- Show(self)¶
Show(show=True) -> bool
Shows or hides the window.