summaryrefslogtreecommitdiffstats
path: root/doc/man/man3/tqdial.3qt
diff options
context:
space:
mode:
Diffstat (limited to 'doc/man/man3/tqdial.3qt')
-rw-r--r--doc/man/man3/tqdial.3qt12
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/man/man3/tqdial.3qt b/doc/man/man3/tqdial.3qt
index 3400b5df5..3b13d980c 100644
--- a/doc/man/man3/tqdial.3qt
+++ b/doc/man/man3/tqdial.3qt
@@ -11,7 +11,7 @@ TQDial \- Rounded range control (like a speedometer or potentiometer)
.SH SYNOPSIS
\fC#include <tqdial.h>\fR
.PP
-Inherits TQWidget and QRangeControl.
+Inherits TQWidget and TQRangeControl.
.PP
.SS "Public Members"
.in +1c
@@ -170,7 +170,7 @@ The slider also emits dialPressed() and dialReleased() signals when the mouse bu
.PP
Unlike the slider, TQDial attempts to draw a "nice" number of notches rather than one per lineStep(). If possible, the number of notches drawn is one per lineStep(), but if there aren't enough pixels to draw every one, TQDial will draw every second, third etc., notch. notchSize() returns the number of units per notch, hopefully a multiple of lineStep(); setNotchTarget() sets the target distance between neighbouring notches in pixels. The default is 3.75 pixels.
.PP
-Like the slider, the dial makes the QRangeControl functions setValue(), addLine(), subtractLine(), addPage() and subtractPage() available as slots.
+Like the slider, the dial makes the TQRangeControl functions setValue(), addLine(), subtractLine(), addPage() and subtractPage() available as slots.
.PP
The dial's keyboard interface is fairly simple: The left/up and right/down arrow keys move by lineStep(), page up and page down by pageStep() and Home and End to minValue() and maxValue().
.PP
@@ -184,7 +184,7 @@ The dial's keyboard interface is fairly simple: The left/up and right/down arrow
See also TQScrollBar, TQSpinBox, GUI Design Handbook: Slider, and Basic Widgets.
.SH MEMBER FUNCTION DOCUMENTATION
.SH "TQDial::TQDial ( TQWidget * parent = 0, const char * name = 0, WFlags f = 0 )"
-Constructs a dial called \fIname\fR with parent \fIparent\fR. \fIf\fR is propagated to the TQWidget constructor. It has the default range of a QRangeControl.
+Constructs a dial called \fIname\fR with parent \fIparent\fR. \fIf\fR is propagated to the TQWidget constructor. It has the default range of a TQRangeControl.
.SH "TQDial::TQDial ( int minValue, int maxValue, int pageStep, int value, TQWidget * parent = 0, const char * name = 0 )"
Constructs a dial called \fIname\fR with parent \fIparent\fR. The dial's value can never be smaller than \fIminValue\fR or greater than \fImaxValue\fR. Its page step size is \fIpageStep\fR, and its initial value is \fIvalue\fR.
.PP
@@ -224,7 +224,7 @@ Returns the current page step. See the "pageStep" property for details.
.SH "void TQDial::rangeChange ()\fC [virtual protected]\fR"
Reimplemented to ensure tick-marks are consistent with the new range.
.PP
-Reimplemented from QRangeControl.
+Reimplemented from TQRangeControl.
.SH "void TQDial::repaintScreen ( const TQRect * cr = 0 )\fC [virtual protected]\fR"
Paints the dial using clip region \fIcr\fR.
.SH "void TQDial::setLineStep ( int )"
@@ -256,7 +256,7 @@ Returns the current dial value. See the "value" property for details.
.SH "void TQDial::valueChange ()\fC [virtual protected]\fR"
Reimplemented to ensure the display is correct and to emit the valueChanged(int) signal when appropriate.
.PP
-Reimplemented from QRangeControl.
+Reimplemented from TQRangeControl.
.SH "void TQDial::valueChanged ( int value )\fC [signal]\fR"
This signal is emitted whenever the dial's \fIvalue\fR changes. The frequency of this signal is influenced by setTracking().
.SH "bool TQDial::wrapping () const"
@@ -267,7 +267,7 @@ This property holds the current line step.
.PP
setLineStep() calls the virtual stepChange() function if the new line step is different from the previous setting.
.PP
-See also QRangeControl::setSteps(), pageStep, and setRange().
+See also TQRangeControl::setSteps(), pageStep, and setRange().
.PP
Set this property's value with setLineStep() and get this property's value with lineStep().
.SH "int maxValue"