Bases: enaml.widgets.constraints_widget.ConstraintsWidget
A widget which displays its children in separate resizable compartements that are connected with a resizing bar.
A Splitter can have an arbitrary number of Container children.
The orientation of the Splitter. ‘horizontal’ means the children are laid out left to right, ‘vertical’ means top to bottom.
Whether the child widgets resize as a splitter is being dragged (True), or if a simple indicator is drawn until the drag handle is released (False). The default is True.
A read only property which returns the split items being managed by the splitter.
How strongly a component hugs it’s contents’ width. A Splitter container ignores its width hug by default, so it expands freely in width.
How strongly a component hugs it’s contents’ height. A Splitter container ignores its height hug by default, so it expands freely in height.
alias of __NoInterface__
Bases: enaml.qt.qt_constraints_widget.QtConstraintsWidget
A Qt implementation of an Enaml Splitter.
Handle the ‘sliderMoved’ signal from the QSplitter.
This handler is only connected when running on Windows and it serves to make sure paint events get generated during heavy resize events when opaque resizing is turned on.