wx.FullScreenEvent¶
An event being sent when the user enters or exits full screen mode.
Currently this event is only generated in the OSX/Cocoa port when wx.TopLevelWindow.EnableFullScreenView
is enabled and the user the user enters or exits full screen. Note that this event is not generated when wx.TopLevelWindow.ShowFullScreen
.
Events Emitted by this Class¶
Handlers bound for the following event types will receive a wx.FullScreenEvent parameter.
EVT_FULLSCREEN: Process a
wxEVT_FULLSCREEN
event.
Added in version 4.1/wxWidgets-3.1.5.
See also
Events and Event Handling, wx.TopLevelWindow.EnableFullScreenView
, wx.TopLevelWindow.IsFullScreen
Class Hierarchy¶
Methods Summary¶
Constructor. |
|
Returns |
Class API¶
- class wx.FullScreenEvent(Event)¶
Possible constructors:
FullScreenEvent(id=0, fullscreen=True) -> None
An event being sent when the user enters or exits full screen mode.
Methods¶
- __init__(self, id=0, fullscreen=True)¶
Constructor.
- Parameters:
id (int)
fullscreen (bool)
- Return type:
None
- IsFullScreen(self)¶
Returns
True
if the frame entered full screen,False
if exited full screen.- Return type:
bool