qhboxlayout - layout manager that arranges widgets horizontally
Name
qhboxlayout — layout manager that arranges widgets horizontally
Syntax
qhboxlayout cmds ...
Description
The qhboxlayout command creates a QHBoxLayout object, making it the active layout manager. This layout manager will automatically arrange widgets horizontally (just call qhboxlayout followed by the creation of the widgets).
Call qsetmargin to adjust the margin between the stacked widgets and the widget containing them, or use qsetspacing to adjust spacing between the stacked widgets.
For non-trivial layouts consider nesting widgets inside QWidgets that contain their own layout. This way you can simulate having one layout manager inside another allowing for mixed vertical and horizontal layouts. This technique is shown in Nested Layout.
See also qvboxlayout and qgridlayout.
Arguments
cmds
A block containing arguments, typically the widgets to be contained inside the layout.
Examples
Ex.1: QHBoxLayout
set w [qwidget] qsetwindowtitle "QHBoxLayout" qhboxlayout { qlabel "Label 1" qlabel "Label 2" } qshow $w
Ex.2: Nested Layout
set w [qwidget] qsetwindowtitle "Nested QHBoxLayout" qhboxlayout { qlabel "Label 1" # Add two vertically positioned labels between "Label 1" and "Label 2" qaddvboxlayout { qlabel "Inner label 1" qlabel "Inner label 2" } qlabel "Label 2" } qshow $w
Example Nested Layout shows a QVBoxLayout nested inside a QHBoxLayout.