wxSashWindow
Description
wxSashWindow allows any of its edges to have a sash which can be dragged to resize the window. The actual content window will be created by the application as a child of wxSashWindow.
The window (or an ancestor) will be notified of a drag via a wxSashEvent notification.
Styles
This class supports the following styles:
See: wxSashEvent, wxSashLayoutWindow, Overview events
This class is derived (and can use functions) from: wxWindow wxEvtHandler
wxWidgets docs: wxSashWindow
Events
Event types emitted from this class: sash_dragged
new() -> wxSashWindow()
Default ctor.
new(Parent) -> wxSashWindow()
Types
new(Parent, Options :: [Option]) -> wxSashWindow()
Types
Constructs a sash window, which can be a child of a frame, dialog or any other non-control window.
destroy(This :: wxSashWindow()) -> ok
Destructor.
getSashVisible(This, Edge) -> boolean()
Returns true if a sash is visible on the given edge, false otherwise.
See: setSashVisible/3
getMaximumSizeX(This) -> integer()
Types
Gets the maximum window size in the x direction.
getMaximumSizeY(This) -> integer()
Types
Gets the maximum window size in the y direction.
getMinimumSizeX(This) -> integer()
Types
Gets the minimum window size in the x direction.
getMinimumSizeY(This) -> integer()
Types
Gets the minimum window size in the y direction.
setMaximumSizeX(This, Min) -> ok
Sets the maximum window size in the x direction.
setMaximumSizeY(This, Min) -> ok
Sets the maximum window size in the y direction.
setMinimumSizeX(This, Min) -> ok
Sets the minimum window size in the x direction.
setMinimumSizeY(This, Min) -> ok
Sets the minimum window size in the y direction.
setSashVisible(This, Edge, Visible) -> ok
Call this function to make a sash visible or invisible on a particular edge.
See: getSashVisible/2