Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »

Unknown macro: {alias}

Name

qgroupbox — container widget with frame and title

Syntax

qgroupbox title

Description

The qgroupbox command creates a QGroupBox object. This is a titled container widget with a frame. A layout manager is still required in order to arrange the contents inside.

Arguments

title

Unknown macro: {indent}

A title placed on the surrounding frame.

Examples

Ex.1: Horizontal group

set w [qwidget ]
qsetwindowtitle GroupBox
qvboxlayout {
	qgroupbox "My GroupBox"
	qhboxlayout {
		qlabel "Left"
		qlabel "Right"
	}
}
qshow $w

  • No labels