Bases: enaml.widgets.widget.Widget
A widget which can be used as an item in a Splitter.
A SplitItem is a widget which can be used as a child of a Splitter widget. It can have at most a single child widget which is an instance of Container.
The preferred size for this item in the splitter, or None if there is no preference for the size. The default is None.
A read only property which returns the split widget.
alias of __NoInterface__
Bases: enaml.qt.qt_widget.QtWidget
A Qt implementation of an Enaml SplitItem.
Find and return the split widget child for this widget.
Returns: | result (QWidget or None) – The split widget defined for this widget, or None if one is not defined. |
---|
Bases: enaml.wx.wx_widget.WxWidget
A Wx implementation of an Enaml SplitItem.
Find and return the split widget child for this widget.
Returns: | result (wxWindow or None) – The split widget defined for this widget, or None if one is not defined. |
---|