diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-06-02 23:07:22 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-06-02 23:22:42 +0900 |
commit | 8ac0e970e4464d9f8f73c0fb34a178ff135be8c3 (patch) | |
tree | b95884617b9a37accc843676d5d42be4116a3f54 /doc/html/ntqsizepolicy.html | |
parent | 68b81013e8668f50fc18b7e26a520ec93a7a1251 (diff) | |
download | tqt3-8ac0e970e4464d9f8f73c0fb34a178ff135be8c3.tar.gz tqt3-8ac0e970e4464d9f8f73c0fb34a178ff135be8c3.zip |
Rename ntqwidget* related files to equivalent tqwidget*
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/html/ntqsizepolicy.html')
-rw-r--r-- | doc/html/ntqsizepolicy.html | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/html/ntqsizepolicy.html b/doc/html/ntqsizepolicy.html index bbc58841b..8d4e5a882 100644 --- a/doc/html/ntqsizepolicy.html +++ b/doc/html/ntqsizepolicy.html @@ -71,7 +71,7 @@ and vertical resizing policy. <p> The size policy of a widget is an expression of its willingness to be resized in various ways. -<p> Widgets that reimplement <a href="ntqwidget.html#sizePolicy">TQWidget::sizePolicy</a>() return a TQSizePolicy +<p> Widgets that reimplement <a href="tqwidget.html#sizePolicy">TQWidget::sizePolicy</a>() return a TQSizePolicy that describes the horizontal and vertical resizing policy they prefer when being laid out. Only <a href="#interesting">one of the constructors</a> is of interest in most applications. @@ -105,7 +105,7 @@ taller than the sizeHint(). <p> The per-dimension sizing types used when constructing a TQSizePolicy are: <ul> -<li><tt>TQSizePolicy::Fixed</tt> - The <a href="ntqwidget.html#sizeHint">TQWidget::sizeHint</a>() is the only acceptable +<li><tt>TQSizePolicy::Fixed</tt> - The <a href="tqwidget.html#sizeHint">TQWidget::sizeHint</a>() is the only acceptable alternative, so the widget can never grow or shrink (e.g. the vertical direction of a push button). <li><tt>TQSizePolicy::Minimum</tt> - The sizeHint() is minimal, and sufficient. The @@ -119,7 +119,7 @@ It cannot be larger than the size provided by sizeHint(). <li><tt>TQSizePolicy::Preferred</tt> - The sizeHint() is best, but the widget can be shrunk and still be useful. The widget can be expanded, but there is no advantage to it being larger than sizeHint() (the default -<a href="ntqwidget.html">TQWidget</a> policy). +<a href="tqwidget.html">TQWidget</a> policy). <li><tt>TQSizePolicy::Expanding</tt> - The sizeHint() is a sensible size, but the widget can be shrunk and still be useful. The widget can make use of extra space, so it should get as much space as possible (e.g. @@ -141,7 +141,7 @@ much space as possible. <p> <a name="interesting"></a> This is the constructor normally used to return a value in the -overridden <a href="ntqwidget.html#sizePolicy">TQWidget::sizePolicy</a>() function of a <a href="ntqwidget.html">TQWidget</a> +overridden <a href="tqwidget.html#sizePolicy">TQWidget::sizePolicy</a>() function of a <a href="tqwidget.html">TQWidget</a> subclass. <p> It constructs a TQSizePolicy with independent horizontal and vertical sizing types, <em>hor</em> and <em>ver</em> respectively. These <a href="#SizeType-enum">sizing types</a> affect how the widget |