Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 5.3

...

Name

qsetfixedsize — Set fixed widget geometry

Syntax

Panel
bgColor#FFFFAA
borderWidth1
borderStylesolid

qsetfixedsize [widget] width height

Description

The qsetfixedsize command sets the widget size, or geometry, in pixels. Once set, the widget size can not be altered interactively or programmatically, other than by a new call to qsetfixedsize. See also qresize and qadjustsize.

Use
qsetfixedesize sparingly. Geometry management is usually best left to QTcl, which takes into account the users operating system and screen resolution to create the best result.

Arguments

widget

Target widget. If not given the current widget is used.

width

Width in pixels.

height

Height in pixels.

Examples

Ex.1: Fixed Window

Anchor
Fixed Window
Fixed Window

No Format
bgColor#eeeeee
borderWidth1
set w [qwidget ]

set layout [qvboxlayout $w]
set label [qlabel "Hello"]
qaddwidget $layout $label

# Set window size in pixels
qsetfixedsize $w 200 200

qshow $w
		  
{noformat}

!att:_img_cmd^qsetfixedsize.png!

Example +Fixed Window+ shows a toplevel window containing a QLabel as an only child.The window size is set explicitly using the *qsetfixedsize* command. 

Image Added

Example Fixed Window shows a toplevel window containing a QLabel as an only child.The window size is set explicitly using the qsetfixedsize command.