summaryrefslogtreecommitdiffstats
path: root/doc/html/ntqbutton.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/html/ntqbutton.html')
-rw-r--r--doc/html/ntqbutton.html18
1 files changed, 9 insertions, 9 deletions
diff --git a/doc/html/ntqbutton.html b/doc/html/ntqbutton.html
index 8b4a3a198..da74633f0 100644
--- a/doc/html/ntqbutton.html
+++ b/doc/html/ntqbutton.html
@@ -36,7 +36,7 @@ widgets, providing functionality common to buttons.
<a href="#details">More...</a>
<p><tt>#include &lt;<a href="qbutton-h.html">ntqbutton.h</a>&gt;</tt>
<p>Inherits <a href="tqwidget.html">TQWidget</a>.
-<p>Inherited by <a href="ntqcheckbox.html">TQCheckBox</a>, <a href="ntqpushbutton.html">TQPushButton</a>, <a href="ntqradiobutton.html">TQRadioButton</a>, and <a href="tqtoolbutton.html">TQToolButton</a>.
+<p>Inherited by <a href="tqcheckbox.html">TQCheckBox</a>, <a href="tqpushbutton.html">TQPushButton</a>, <a href="tqradiobutton.html">TQRadioButton</a>, and <a href="tqtoolbutton.html">TQToolButton</a>.
<p><a href="qbutton-members.html">List of all member functions.</a>
<h2>Public Members</h2>
<ul>
@@ -104,12 +104,12 @@ widgets, providing functionality common to buttons.
The TQButton class is the abstract base class of button
widgets, providing functionality common to buttons.
<p>
-<p> <b>If you want to create a button use <a href="ntqpushbutton.html">TQPushButton</a>.</b>
+<p> <b>If you want to create a button use <a href="tqpushbutton.html">TQPushButton</a>.</b>
<p> The TQButton class implements an <em>abstract</em> button, and lets
subclasses specify how to reply to user actions and how to draw
the button.
-<p> TQButton provides both push and toggle buttons. The <a href="ntqradiobutton.html">TQRadioButton</a>
-and <a href="ntqcheckbox.html">TQCheckBox</a> classes provide only toggle buttons; TQPushButton and
+<p> TQButton provides both push and toggle buttons. The <a href="tqradiobutton.html">TQRadioButton</a>
+and <a href="tqcheckbox.html">TQCheckBox</a> classes provide only toggle buttons; TQPushButton and
<a href="tqtoolbutton.html">TQToolButton</a> provide both toggle and push buttons.
<p> Any button can have either a text or pixmap label. <a href="#setText">setText</a>() sets
the button to be a text button and <a href="#setPixmap">setPixmap</a>() sets it to be a
@@ -134,7 +134,7 @@ clicks it again (to toggle it off), the button moves first to the
<em>pressed</em> state, then to the <em>off</em> state (isOn() and isDown()
are both FALSE).
<p> Default buttons (as used in many dialogs) are provided by
-<a href="ntqpushbutton.html#setDefault">TQPushButton::setDefault</a>() and <a href="ntqpushbutton.html#setAutoDefault">TQPushButton::setAutoDefault</a>().
+<a href="tqpushbutton.html#setDefault">TQPushButton::setDefault</a>() and <a href="tqpushbutton.html#setAutoDefault">TQPushButton::setAutoDefault</a>().
<p> TQButton provides five signals:
<ol type=1>
<li> <a href="#pressed">pressed</a>() is emitted when the button is pressed. E.g. with the mouse
@@ -153,7 +153,7 @@ TQButton creates an automatic accelerator key. This code creates a
push button labelled "Ro<u>c</u>k &amp; Roll" (where the c is
underlined). The button gets an automatic accelerator key, Alt+C:
<p> <pre>
- <a href="ntqpushbutton.html">TQPushButton</a> *p = new <a href="ntqpushbutton.html">TQPushButton</a>( "Ro&amp;ck &amp;&amp; Roll", this );
+ <a href="tqpushbutton.html">TQPushButton</a> *p = new <a href="tqpushbutton.html">TQPushButton</a>( "Ro&amp;ck &amp;&amp; Roll", this );
</pre>
<p> In this example, when the user presses Alt+C the button will call
@@ -166,8 +166,8 @@ have no automatic accelerator.
p-&gt;setAccel( ALT+Key_F7 );
</pre>
-<p> All of the buttons provided by TQt (<a href="ntqpushbutton.html">TQPushButton</a>, <a href="tqtoolbutton.html">TQToolButton</a>,
-<a href="ntqcheckbox.html">TQCheckBox</a> and <a href="ntqradiobutton.html">TQRadioButton</a>) can display both text and
+<p> All of the buttons provided by TQt (<a href="tqpushbutton.html">TQPushButton</a>, <a href="tqtoolbutton.html">TQToolButton</a>,
+<a href="tqcheckbox.html">TQCheckBox</a> and <a href="tqradiobutton.html">TQRadioButton</a>) can display both text and
pixmaps.
<p> To subclass TQButton, you must reimplement at least <a href="#drawButton">drawButton</a>()
(to draw the button's outline) and <a href="#drawButtonLabel">drawButtonLabel</a>() (to draw its
@@ -353,7 +353,7 @@ See the <a href="ntqbutton.html#toggleState-prop">"toggleState"</a> property for
</h3>
<p> This signal is emitted whenever a toggle button changes state. <em>state</em> is <a href="#ToggleState-enum">On</a> if the button is on, <a href="#ToggleState-enum">NoChange</a> if it is in the
-<a href="ntqcheckbox.html#setTristate">"no change" state</a> or <a href="#ToggleState-enum">Off</a>
+<a href="tqcheckbox.html#setTristate">"no change" state</a> or <a href="#ToggleState-enum">Off</a>
if the button is off.
<p> This may be the result of a user action, <a href="#toggle">toggle</a>() slot activation,
<a href="#setState">setState</a>(), or because <a href="#setOn">setOn</a>() was called.