From d796c9dd933ab96ec83b9a634feedd5d32e1ba3f Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Tue, 8 Nov 2011 12:31:36 -0600 Subject: Test conversion to TQt3 from Qt3 8c6fc1f8e35fd264dd01c582ca5e7549b32ab731 --- doc/html/qhboxlayout.html | 115 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 115 insertions(+) create mode 100644 doc/html/qhboxlayout.html (limited to 'doc/html/qhboxlayout.html') diff --git a/doc/html/qhboxlayout.html b/doc/html/qhboxlayout.html new file mode 100644 index 000000000..3b1b9d692 --- /dev/null +++ b/doc/html/qhboxlayout.html @@ -0,0 +1,115 @@ + + + + + +TQHBoxLayout Class + + + + + + + +
+ +Home + | +All Classes + | +Main Classes + | +Annotated + | +Grouped Classes + | +Functions +

TQHBoxLayout Class Reference

+ +

The TQHBoxLayout class lines up widgets horizontally. +More... +

#include <qlayout.h> +

Inherits TQBoxLayout. +

List of all member functions. +

Public Members

+ +

Detailed Description

+ + +The TQHBoxLayout class lines up widgets horizontally. +

+ + +

This class is used to construct horizontal box layout objects. See +TQBoxLayout for more details. +

The simplest use of the class is like this: +

+        TQBoxLayout * l = new TQHBoxLayout( widget );
+        l->setAutoAdd( TRUE );
+        new TQSomeWidget( widget );
+        new TQSomeOtherWidget( widget );
+        new TQAnotherWidget( widget );
+    
+ +

or like this: +

+        TQBoxLayout * l = new TQHBoxLayout( widget );
+        l->addWidget( existingChildOfWidget );
+        l->addWidget( anotherChildOfWidget );
+    
+ +

TQHBox
+

See also TQVBoxLayout, TQGridLayout, the Layout overview, Widget Appearance and Style, and Layout Management. + +


Member Function Documentation

+

TQHBoxLayout::TQHBoxLayout ( TQWidget * parent, int margin = 0, int spacing = -1, const char * name = 0 ) +

+Constructs a new top-level horizontal box called name, with +parent parent. +

The margin is the number of pixels between the edge of the +widget and its managed children. The spacing is the default +number of pixels between neighboring children. If spacing is -1 +the value of margin is used for spacing. + +

TQHBoxLayout::TQHBoxLayout ( TQLayout * parentLayout, int spacing = -1, const char * name = 0 ) +

+Constructs a new horizontal box called name name and adds it to +parentLayout. +

The spacing is the default number of pixels between neighboring +children. If spacing is -1, this TQHBoxLayout will inherit its +parent's spacing(). + +

TQHBoxLayout::TQHBoxLayout ( int spacing = -1, const char * name = 0 ) +

+Constructs a new horizontal box called name name. You must add +it to another layout. +

The spacing is the default number of pixels between neighboring +children. If spacing is -1, this TQHBoxLayout will inherit its +parent's spacing(). + +

TQHBoxLayout::~TQHBoxLayout () +

+Destroys this box layout. +

The layout's widgets aren't destroyed. + + +


+This file is part of the TQt toolkit. +Copyright © 1995-2007 +Trolltech. All Rights Reserved.


+ +
Copyright © 2007 +TrolltechTrademarks +
TQt 3.3.8
+
+ -- cgit v1.2.3