<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<!-- /home/espenr/tmp/qt - 3.3.8 - espenr - 2499/qt - x11 - free - 3.3.8/src/widgets/qhbox.cpp:41 -->
< html >
< head >
< meta http-equiv = "Content-Type" content = "text/html; charset=ISO-8859-1" >
< title > TQHBox Class< / title >
< style type = "text/css" > < ! - -
fn { margin-left: 1cm; text-indent: -1cm; }
a:link { color: #004faf; text-decoration: none }
a:visited { color: #672967; text-decoration: none }
body { background: #ffffff; color: black; }
-->< / style >
< / head >
< body >
< table border = "0" cellpadding = "0" cellspacing = "0" width = "100%" >
< tr bgcolor = "#E5E5E5" >
< td valign = center >
< a href = "index.html" >
< font color = "#004faf" > Home< / font > < / a >
| < a href = "classes.html" >
< font color = "#004faf" > All Classes< / font > < / a >
| < a href = "mainclasses.html" >
< font color = "#004faf" > Main Classes< / font > < / a >
| < a href = "annotated.html" >
< font color = "#004faf" > Annotated< / font > < / a >
| < a href = "groups.html" >
< font color = "#004faf" > Grouped Classes< / font > < / a >
| < a href = "functions.html" >
< font color = "#004faf" > Functions< / font > < / a >
< / td >
< td align = "right" valign = "center" > < img src = "logo32.png" align = "right" width = "64" height = "32" border = "0" > < / td > < / tr > < / table > < h1 align = center > TQHBox Class Reference< / h1 >
< p > The TQHBox widget provides horizontal geometry management
for its child widgets.
< a href = "#details" > More...< / a >
< p > < tt > #include < < a href = "qhbox-h.html" > ntqhbox.h< / a > > < / tt >
< p > Inherits < a href = "ntqframe.html" > TQFrame< / a > .
< p > Inherited by < a href = "ntqvbox.html" > TQVBox< / a > .
< p > < a href = "qhbox-members.html" > List of all member functions.< / a >
< h2 > Public Members< / h2 >
< ul >
< li class = fn > < a href = "#TQHBox" > < b > TQHBox< / b > < / a > ( TQWidget * parent = 0, const char * name = 0, WFlags f = 0 )< / li >
< li class = fn > void < a href = "#setSpacing" > < b > setSpacing< / b > < / a > ( int space )< / li >
< li class = fn > bool < a href = "#setStretchFactor" > < b > setStretchFactor< / b > < / a > ( TQWidget * w, int stretch )< / li >
< / ul >
< h2 > Protected Members< / h2 >
< ul >
< li class = fn > < a href = "#TQHBox-2" > < b > TQHBox< / b > < / a > ( bool horizontal, TQWidget * parent, const char * name, WFlags f = 0 )< / li >
< / ul >
< hr > < a name = "details" > < / a > < h2 > Detailed Description< / h2 >
The TQHBox widget provides horizontal geometry management
for its child widgets.
< p >
< p > All the horizontal box's child widgets will be placed alongside
each other and sized according to their < a href = "tqwidget.html#sizeHint" > sizeHint< / a > ()s.
< p > Use < a href = "ntqframe.html#setMargin" > setMargin< / a > () to add space around the edges, and use
< a href = "#setSpacing" > setSpacing< / a > () to add space between the widgets. Use
< a href = "#setStretchFactor" > setStretchFactor< / a > () if you want the widgets to be different sizes
in proportion to one another. (See < a href = "layout.html" > Layouts< / a > for more information on stretch factors.)
< p > < center > < img src = "qhbox-m.png" alt = "TQHBox" > < / center >
< p > < p > See also < a href = "qhboxlayout.html" > TQHBoxLayout< / a > , < a href = "ntqvbox.html" > TQVBox< / a > , < a href = "ntqgrid.html" > TQGrid< / a > , < a href = "appearance.html" > Widget Appearance and Style< / a > , < a href = "geomanagement.html" > Layout Management< / a > , and < a href = "organizers.html" > Organizers< / a > .
< hr > < h2 > Member Function Documentation< / h2 >
< h3 class = fn > < a name = "TQHBox" > < / a > TQHBox::TQHBox ( < a href = "tqwidget.html" > TQWidget< / a > * parent = 0, const char * name = 0, WFlags f = 0 )
< / h3 >
Constructs an hbox widget with parent < em > parent< / em > , called < em > name< / em > .
The parent, name and widget flags, < em > f< / em > , are passed to the < a href = "ntqframe.html" > TQFrame< / a >
constructor.
< h3 class = fn > < a name = "TQHBox-2" > < / a > TQHBox::TQHBox ( bool horizontal, < a href = "tqwidget.html" > TQWidget< / a > * parent, const char * name, WFlags f = 0 )< tt > [protected]< / tt >
< / h3 >
Constructs a horizontal hbox if < em > horizontal< / em > is TRUE, otherwise
constructs a vertical hbox (also known as a vbox).
< p > This constructor is provided for the < a href = "ntqvbox.html" > TQVBox< / a > class. You should never
need to use it directly.
< p > The < em > parent< / em > , < em > name< / em > and widget flags, < em > f< / em > , are passed to the
< a href = "ntqframe.html" > TQFrame< / a > constructor.
< h3 class = fn > void < a name = "setSpacing" > < / a > TQHBox::setSpacing ( int space )
< / h3 >
Sets the spacing between the child widgets to < em > space< / em > .
< p > Examples: < a href = "i18n-example.html#x1924" > i18n/mywidget.cpp< / a > , < a href = "listboxcombo-example.html#x1402" > listboxcombo/listboxcombo.cpp< / a > , < a href = "tqdir-example.html#x1826" > tqdir/tqdir.cpp< / a > , < a href = "tabdialog-example.html#x54" > tabdialog/tabdialog.cpp< / a > , < a href = "wizard-example.html#x2" > wizard/wizard.cpp< / a > , and < a href = "xform-example.html#x1228" > xform/xform.cpp< / a > .
< h3 class = fn > bool < a name = "setStretchFactor" > < / a > TQHBox::setStretchFactor ( < a href = "tqwidget.html" > TQWidget< / a > * w, int stretch )
< / h3 >
Sets the < a href = "layout.html#stretch-factor" > stretch factor< / a > of widget < em > w< / em > to < em > stretch< / em > . Returns TRUE if
< em > w< / em > is found. Otherwise returns FALSE.
< p > < p > See also < a href = "qboxlayout.html#setStretchFactor" > TQBoxLayout::setStretchFactor< / a > () and < a href = "layout.html" > Layouts< / a > .
<!-- eof -->
< hr > < p >
This file is part of the < a href = "index.html" > TQt toolkit< / a > .
Copyright © 1995-2007
< a href = "http://www.trolltech.com/" > Trolltech< / a > . All Rights Reserved.< p > < address > < hr > < div align = center >
< table width = 100% cellspacing = 0 border = 0 > < tr >
< td > Copyright © 2007
< a href = "troll.html" > Trolltech< / a > < td align = center > < a href = "trademarks.html" > Trademarks< / a >
< td align = right > < div align = right > TQt 3.3.8< / div >
< / table > < / div > < / address > < / body >
< / html >