wx.SplitterEvent¶
This class represents the events generated by a splitter control.
Also there is only one event class, the data associated to the different events is not the same and so not all accessor functions may be called for each event. The documentation mentions the kind of event(s) for which the given accessor function makes sense: calling it for other types of events will result in assert failure (in debug mode) and will return meaningless results.
Events Emitted by this Class¶
Handlers bound for the following event types will receive a wx.SplitterEvent parameter.
EVT_SPLITTER_SASH_POS_CHANGING: The sash position is in the process of being changed. May be used to modify the position of the tracking bar to properly reflect the position that would be set if the drag were to be completed at this point. Processes a
wxEVT_SPLITTER_SASH_POS_CHANGINGevent.EVT_SPLITTER_SASH_POS_CHANGED: The sash position was changed. May be used to modify the sash position before it is set, or to prevent the change from taking place. Processes a
wxEVT_SPLITTER_SASH_POS_CHANGEDevent.EVT_SPLITTER_UNSPLIT: The splitter has been just unsplit. Processes a
wxEVT_SPLITTER_UNSPLITevent.EVT_SPLITTER_DCLICK: The sash was double clicked. The default behaviour is to unsplit the window when this happens (unless the minimum pane size has been set to a value greater than zero). Processes a
wxEVT_SPLITTER_DOUBLECLICKEDevent.
See also
Class Hierarchy¶
Methods Summary¶
Constructor. |
|
Returns the old size before the update. |
|
Returns the new sash position. |
|
Returns a pointer to the window being removed when a splitter window is unsplit. |
|
Returns the x coordinate of the double-click point. |
|
Returns the y coordinate of the double-click point. |
|
In the case of |
|
Sets the size values of the window size. |
Properties Summary¶
See |
|
See |
|
See |
|
See |
Class API¶
- class wx.SplitterEvent(NotifyEvent)¶
Possible constructors:
SplitterEvent(eventType=wxEVT_NULL, splitter=None) -> None
This class represents the events generated by a splitter control.
Methods¶
- __init__(self, eventType=wxEVT_NULL, splitter=None)¶
Constructor.
Used internally by wxWidgets only.
- Parameters:
eventType (wx.EventType)
splitter (wx.SplitterWindow)
- Return type:
None
- GetOldSize(self)¶
Returns the old size before the update.
The size value is already adjusted to the orientation of the sash. So for a vertical sash it’s the width and for a horizontal sash it’s the height.
May only be called while processing
wxEVT_SPLITTER_SASH_POS_CHANGING,wxEVT_SPLITTER_SASH_POS_RESIZEandwxEVT_SPLITTER_SASH_POS_CHANGEDevents. May only be called while processingwxEVT_SPLITTER_SASH_POS_CHANGING,wxEVT_SPLITTER_SASH_POS_RESIZEandwxEVT_SPLITTER_SASH_POS_CHANGEDevents.- Return type:
int
Added in version 4.1/wxWidgets-3.1.6: Returns the new size which is set after the update. The size value is already adjusted to the orientation of the sash. So for a vertical sash it’s the width and for a horizontal sash it’s the height.
Added in version 4.1/wxWidgets-3.1.6.
- GetSashPosition(self)¶
Returns the new sash position.
May only be called while processing
wxEVT_SPLITTER_SASH_POS_CHANGING,wxEVT_SPLITTER_SASH_POS_RESIZEandwxEVT_SPLITTER_SASH_POS_CHANGEDevents.- Return type:
int
- GetWindowBeingRemoved(self)¶
Returns a pointer to the window being removed when a splitter window is unsplit.
May only be called while processing
wxEVT_SPLITTER_UNSPLITevents.- Return type:
- GetX(self)¶
Returns the x coordinate of the double-click point.
May only be called while processing
wxEVT_SPLITTER_DOUBLECLICKEDevents.- Return type:
int
- GetY(self)¶
Returns the y coordinate of the double-click point.
May only be called while processing
wxEVT_SPLITTER_DOUBLECLICKEDevents.- Return type:
int
- SetSashPosition(self, pos)¶
In the case of
wxEVT_SPLITTER_SASH_POS_CHANGEDevents, sets the new sash position.In the case of
wxEVT_SPLITTER_SASH_POS_CHANGINGevents, sets the new tracking bar position so visual feedback during dragging will represent that change that will actually take place. Set to -1 from the event handler code to prevent repositioning.May only be called while processing
wxEVT_SPLITTER_SASH_POS_CHANGING,wxEVT_SPLITTER_SASH_POS_RESIZEandwxEVT_SPLITTER_SASH_POS_CHANGEDevents.- Parameters:
pos (int) – New sash position.
- Return type:
None
- SetSize(self, oldSize, newSize)¶
Sets the size values of the window size.
This size is adjusted to the sash orientation. For a vertical sash it should be the width and for a horizontal sash it’s the height.
May only be called while processing
wxEVT_SPLITTER_SASH_POS_CHANGING,wxEVT_SPLITTER_SASH_POS_RESIZEandwxEVT_SPLITTER_SASH_POS_CHANGEDevents.- Parameters:
oldSize (int)
newSize (int)
- Return type:
None
Added in version 4.1/wxWidgets-3.1.6.
Properties¶
- OldSize¶
See
GetOldSize
- SashPosition¶
See
GetSashPositionandSetSashPosition
- WindowBeingRemoved¶