summaryrefslogtreecommitdiffstats
path: root/doc/html/ntqrangecontrol.html
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-07-29 12:43:23 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-07-29 12:43:23 +0900
commitfef846914f8db6dc117e206ef913d519bf6bb33e (patch)
treed6567b31f7f22d0c8c66eec947dff1960efa25ac /doc/html/ntqrangecontrol.html
parent8ef4ea451dd81dd66b34ed31aaa631f6df24a192 (diff)
downloadtqt3-fef846914f8db6dc117e206ef913d519bf6bb33e.tar.gz
tqt3-fef846914f8db6dc117e206ef913d519bf6bb33e.zip
Rename basic widget nt* related files to equivalent tq*
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/html/ntqrangecontrol.html')
-rw-r--r--doc/html/ntqrangecontrol.html14
1 files changed, 7 insertions, 7 deletions
diff --git a/doc/html/ntqrangecontrol.html b/doc/html/ntqrangecontrol.html
index 2179a4c7..45be107f 100644
--- a/doc/html/ntqrangecontrol.html
+++ b/doc/html/ntqrangecontrol.html
@@ -34,7 +34,7 @@ body { background: #ffffff; color: black; }
<p>The TQRangeControl class provides an integer value within a range.
<a href="#details">More...</a>
<p><tt>#include &lt;<a href="qrangecontrol-h.html">ntqrangecontrol.h</a>&gt;</tt>
-<p>Inherited by <a href="ntqdial.html">TQDial</a>, <a href="ntqscrollbar.html">TQScrollBar</a>, <a href="ntqslider.html">TQSlider</a>, and <a href="ntqspinbox.html">TQSpinBox</a>.
+<p>Inherited by <a href="tqdial.html">TQDial</a>, <a href="tqscrollbar.html">TQScrollBar</a>, <a href="tqslider.html">TQSlider</a>, and <a href="tqspinbox.html">TQSpinBox</a>.
<p><a href="qrangecontrol-members.html">List of all member functions.</a>
<h2>Public Members</h2>
<ul>
@@ -72,9 +72,9 @@ body { background: #ffffff; color: black; }
The TQRangeControl class provides an integer value within a range.
<p>
-<p> Although originally designed for the <a href="ntqscrollbar.html">TQScrollBar</a> widget, the
+<p> Although originally designed for the <a href="tqscrollbar.html">TQScrollBar</a> widget, the
TQRangeControl can also be used in conjunction with other widgets
-such as <a href="ntqslider.html">TQSlider</a> and <a href="ntqspinbox.html">TQSpinBox</a>. Here are the five main concepts in
+such as <a href="tqslider.html">TQSlider</a> and <a href="tqspinbox.html">TQSpinBox</a>. Here are the five main concepts in
the class:
<p> <ol type=1>
<p> <li> <em>Current value</em> The bounded integer that
@@ -203,7 +203,7 @@ in-between.
<p> This function can handle the entire integer range without
overflow, providing <em>span</em> is &lt;= 4096.
<p> Calling this method is useful when actually drawing a range
-control such as a <a href="ntqscrollbar.html">TQScrollBar</a> on-screen.
+control such as a <a href="tqscrollbar.html">TQScrollBar</a> on-screen.
<p> <p>See also <a href="#valueFromPosition">valueFromPosition</a>().
<h3 class=fn>int <a name="prevValue"></a>TQRangeControl::prevValue () const<tt> [protected]</tt>
@@ -228,7 +228,7 @@ the range changes. The default implementation does nothing.
<p> Note that this method is called after the range has changed.
<p> <p>See also <a href="#setRange">setRange</a>(), <a href="#valueChange">valueChange</a>(), and <a href="#stepChange">stepChange</a>().
-<p>Reimplemented in <a href="ntqdial.html#rangeChange">TQDial</a>, <a href="ntqslider.html#rangeChange">TQSlider</a>, and <a href="ntqspinbox.html#rangeChange">TQSpinBox</a>.
+<p>Reimplemented in <a href="tqdial.html#rangeChange">TQDial</a>, <a href="tqslider.html#rangeChange">TQSlider</a>, and <a href="tqspinbox.html#rangeChange">TQSpinBox</a>.
<h3 class=fn>void <a name="setMaxValue"></a>TQRangeControl::setMaxValue ( int&nbsp;maxVal )
</h3>
Sets the minimum value of the range to <em>maxVal</em>.
@@ -309,7 +309,7 @@ the value changes. The default implementation does nothing.
previous value can be retrieved using <a href="#prevValue">prevValue</a>().
<p> <p>See also <a href="#setValue">setValue</a>(), <a href="#addPage">addPage</a>(), <a href="#subtractPage">subtractPage</a>(), <a href="#addLine">addLine</a>(), <a href="#subtractLine">subtractLine</a>(), <a href="#rangeChange">rangeChange</a>(), and <a href="#stepChange">stepChange</a>().
-<p>Reimplemented in <a href="ntqdial.html#valueChange">TQDial</a>, <a href="ntqslider.html#valueChange">TQSlider</a>, and <a href="ntqspinbox.html#valueChange">TQSpinBox</a>.
+<p>Reimplemented in <a href="tqdial.html#valueChange">TQDial</a>, <a href="tqslider.html#valueChange">TQSlider</a>, and <a href="tqspinbox.html#valueChange">TQSpinBox</a>.
<h3 class=fn>int <a name="valueFromPosition"></a>TQRangeControl::valueFromPosition ( int&nbsp;pos, int&nbsp;span ) const<tt> [protected]</tt>
</h3>
Converts the pixel position <em>pos</em> to a value. 0 maps to
@@ -318,7 +318,7 @@ distributed evenly in-between.
<p> This function can handle the entire integer range without
overflow.
<p> Calling this method is useful if you actually implemented a range
-control widget such as <a href="ntqscrollbar.html">TQScrollBar</a> and want to handle mouse press
+control widget such as <a href="tqscrollbar.html">TQScrollBar</a> and want to handle mouse press
events. This function then maps screen coordinates to the logical
values.
<p> <p>See also <a href="#positionFromValue">positionFromValue</a>().