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/qvboxlayout.html | 106 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 106 insertions(+) create mode 100644 doc/html/qvboxlayout.html (limited to 'doc/html/qvboxlayout.html') diff --git a/doc/html/qvboxlayout.html b/doc/html/qvboxlayout.html new file mode 100644 index 000000000..0db8acff7 --- /dev/null +++ b/doc/html/qvboxlayout.html @@ -0,0 +1,106 @@ + + + + + +TQVBoxLayout Class + + + + + + + +
+ +Home + | +All Classes + | +Main Classes + | +Annotated + | +Grouped Classes + | +Functions +

TQVBoxLayout Class Reference

+ +

The TQVBoxLayout class lines up widgets vertically. +More... +

#include <qlayout.h> +

Inherits TQBoxLayout. +

List of all member functions. +

Public Members

+ +

Detailed Description

+ + +

The TQVBoxLayout class lines up widgets vertically. +

+ + +

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

The simplest use of the class is like this: +

+        TQBoxLayout * l = new TQVBoxLayout( widget );
+        l->addWidget( aWidget );
+        l->addWidget( anotherWidget );
+    
+ +

TQVBox
+

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


Member Function Documentation

+

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

+Constructs a new top-level vertical 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. + +

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

+Constructs a new vertical 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 TQVBoxLayout will inherit its +parent's spacing(). + +

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

+Constructs a new vertical 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 TQVBoxLayout will inherit its +parent's spacing(). + +

TQVBoxLayout::~TQVBoxLayout () +

+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.1