summaryrefslogtreecommitdiffstats
path: root/doc/html/qhbox.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/html/qhbox.html')
-rw-r--r--doc/html/qhbox.html105
1 files changed, 105 insertions, 0 deletions
diff --git a/doc/html/qhbox.html b/doc/html/qhbox.html
new file mode 100644
index 0000000..daf9a4e
--- /dev/null
+++ b/doc/html/qhbox.html
@@ -0,0 +1,105 @@
+<!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>QHBox 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&nbsp;Classes</font></a>
+ | <a href="mainclasses.html">
+<font color="#004faf">Main&nbsp;Classes</font></a>
+ | <a href="annotated.html">
+<font color="#004faf">Annotated</font></a>
+ | <a href="groups.html">
+<font color="#004faf">Grouped&nbsp;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>QHBox Class Reference</h1>
+
+<p>The QHBox widget provides horizontal geometry management
+for its child widgets.
+<a href="#details">More...</a>
+<p><tt>#include &lt;<a href="qhbox-h.html">qhbox.h</a>&gt;</tt>
+<p>Inherits <a href="qframe.html">QFrame</a>.
+<p>Inherited by <a href="qvbox.html">QVBox</a>.
+<p><a href="qhbox-members.html">List of all member functions.</a>
+<h2>Public Members</h2>
+<ul>
+<li class=fn><a href="#QHBox"><b>QHBox</b></a> ( QWidget&nbsp;*&nbsp;parent = 0, const&nbsp;char&nbsp;*&nbsp;name = 0, WFlags&nbsp;f = 0 )</li>
+<li class=fn>void <a href="#setSpacing"><b>setSpacing</b></a> ( int&nbsp;space )</li>
+<li class=fn>bool <a href="#setStretchFactor"><b>setStretchFactor</b></a> ( QWidget&nbsp;*&nbsp;w, int&nbsp;stretch )</li>
+</ul>
+<h2>Protected Members</h2>
+<ul>
+<li class=fn><a href="#QHBox-2"><b>QHBox</b></a> ( bool&nbsp;horizontal, QWidget&nbsp;*&nbsp;parent, const&nbsp;char&nbsp;*&nbsp;name, WFlags&nbsp;f = 0 )</li>
+</ul>
+<hr><a name="details"></a><h2>Detailed Description</h2>
+
+
+The QHBox 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="qwidget.html#sizeHint">sizeHint</a>()s.
+<p> Use <a href="qframe.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="QHBox"></center>
+<p> <p>See also <a href="qhboxlayout.html">QHBoxLayout</a>, <a href="qvbox.html">QVBox</a>, <a href="qgrid.html">QGrid</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="QHBox"></a>QHBox::QHBox ( <a href="qwidget.html">QWidget</a>&nbsp;*&nbsp;parent = 0, const&nbsp;char&nbsp;*&nbsp;name = 0, WFlags&nbsp;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="qframe.html">QFrame</a>
+constructor.
+
+<h3 class=fn><a name="QHBox-2"></a>QHBox::QHBox ( bool&nbsp;horizontal, <a href="qwidget.html">QWidget</a>&nbsp;*&nbsp;parent, const&nbsp;char&nbsp;*&nbsp;name, WFlags&nbsp;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="qvbox.html">QVBox</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="qframe.html">QFrame</a> constructor.
+
+<h3 class=fn>void <a name="setSpacing"></a>QHBox::setSpacing ( int&nbsp;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="qdir-example.html#x1826">qdir/qdir.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>QHBox::setStretchFactor ( <a href="qwidget.html">QWidget</a>&nbsp;*&nbsp;w, int&nbsp;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">QBoxLayout::setStretchFactor</a>() and <a href="layout.html">Layouts</a>.
+
+<!-- eof -->
+<hr><p>
+This file is part of the <a href="index.html">Qt toolkit</a>.
+Copyright &copy; 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 &copy; 2007
+<a href="troll.html">Trolltech</a><td align=center><a href="trademarks.html">Trademarks</a>
+<td align=right><div align=right>Qt 3.3.8</div>
+</table></div></address></body>
+</html>