Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 5.3
Wiki Markup
{alias:qhboxlayout}

Name

qhboxlayout — layout manager that arranges widgets horizontally

...

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 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

...

No Format
bgColor#eeeeee
borderWidth1

set w [qwidget]
qsetwindowtitle "QHBoxLayout"
qhboxlayout {
	qlabel "Label 1"
	qlabel "Label 2"
}
qshow $w

...

No Format
bgColor#eeeeee
borderWidth1

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 Nested Layout shows a QVBoxLayout nested inside a QHBoxLayout.