HSplitter class is a special variant of Group class. It creates a horizontal group of two children with a sash between them that allows the user to individually adjust the sizes of the group's two children by dragging the sash.
Note that HSplitter groups must always contain exactly two children. Additionally, the children must also be sizable because HSplitter class allows its children to be resized. Here is an example XML excerpt for creating a horizontal splitter layout with two textviews:
<hsplitter> <textview>One</textview> <textview>Two</textview> </hsplitter> |
HSplitter class is available since RapaGUI 2.0.