diff options
Diffstat (limited to 'doc/man/man3/tqspinbox.3qt')
-rw-r--r-- | doc/man/man3/tqspinbox.3qt | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/doc/man/man3/tqspinbox.3qt b/doc/man/man3/tqspinbox.3qt index 60183decb..139e0d16d 100644 --- a/doc/man/man3/tqspinbox.3qt +++ b/doc/man/man3/tqspinbox.3qt @@ -11,7 +11,7 @@ TQSpinBox \- Spin box widget (spin button) .SH SYNOPSIS \fC#include <tqspinbox.h>\fR .PP -Inherits TQWidget and QRangeControl. +Inherits TQWidget and TQRangeControl. .PP .SS "Public Members" .in +1c @@ -200,7 +200,7 @@ TQSpinBox allows the user to choose a value either by clicking the up/down butto .PP Every time the value changes TQSpinBox emits the valueChanged() signal. The current value can be fetched with value() and set with setValue(). .PP -The spin box keeps the value within a numeric range, and to multiples of the lineStep() size (see QRangeControl for details). Clicking the up/down buttons or using the keyboard accelerator's up and down arrows will increase or decrease the current value in steps of size lineStep(). The minimum and maximum value and the step size can be set using one of the constructors, and can be changed later with setMinValue(), setMaxValue() and setLineStep(). +The spin box keeps the value within a numeric range, and to multiples of the lineStep() size (see TQRangeControl for details). Clicking the up/down buttons or using the keyboard accelerator's up and down arrows will increase or decrease the current value in steps of size lineStep(). The minimum and maximum value and the step size can be set using one of the constructors, and can be changed later with setMinValue(), setMaxValue() and setLineStep(). .PP Most spin boxes are directional, but TQSpinBox can also operate as a circular spin box, i.e. if the range is 0-99 and the current value is 99, clicking "up" will give 0. Use setWrapping() if you want circular behavior. .PP @@ -283,7 +283,7 @@ This enum type determines what the buttons in a spin box show. See also TQSpinBox::buttonSymbols. .SH MEMBER FUNCTION DOCUMENTATION .SH "TQSpinBox::TQSpinBox ( TQWidget * parent = 0, const char * name = 0 )" -Constructs a spin box with the default QRangeControl range and step values. It is called \fIname\fR and has parent \fIparent\fR. +Constructs a spin box with the default TQRangeControl range and step values. It is called \fIname\fR and has parent \fIparent\fR. .PP See also minValue, maxValue, setRange(), lineStep, and setSteps(). .SH "TQSpinBox::TQSpinBox ( int minValue, int maxValue, int step = 1, TQWidget * parent = 0, const char * name = 0 )" @@ -341,9 +341,9 @@ Returns the minimum value of the spin box. See the "minValue" property for detai .SH "TQString TQSpinBox::prefix () const\fC [virtual]\fR" Returns the spin box's prefix. See the "prefix" property for details. .SH "void TQSpinBox::rangeChange ()\fC [virtual protected]\fR" -This virtual function is called by QRangeControl whenever the range has changed. It adjusts the default validator and updates the display; if you need additional processing, you can reimplement this function. +This virtual function is called by TQRangeControl whenever the range has changed. It adjusts the default validator and updates the display; if you need additional processing, you can reimplement this function. .PP -Reimplemented from QRangeControl. +Reimplemented from TQRangeControl. .SH "void TQSpinBox::selectAll ()\fC [virtual slot]\fR" Selects all the text in the spin box's editor. .SH "void TQSpinBox::setButtonSymbols ( ButtonSymbols )\fC [virtual]\fR" @@ -397,9 +397,9 @@ See also setValidator() and TQValidator. .SH "int TQSpinBox::value () const" Returns the value of the spin box. See the "value" property for details. .SH "void TQSpinBox::valueChange ()\fC [virtual protected]\fR" -This virtual function is called by QRangeControl whenever the value has changed. The TQSpinBox reimplementation updates the display and emits the valueChanged() signals; if you need additional processing, either reimplement this or connect to one of the valueChanged() signals. +This virtual function is called by TQRangeControl whenever the value has changed. The TQSpinBox reimplementation updates the display and emits the valueChanged() signals; if you need additional processing, either reimplement this or connect to one of the valueChanged() signals. .PP -Reimplemented from QRangeControl. +Reimplemented from TQRangeControl. .SH "void TQSpinBox::valueChanged ( int value )\fC [signal]\fR" This signal is emitted every time the value of the spin box changes; the new value is passed in \fIvalue\fR. This signal will be emitted as a result of a call to setValue(), or because the user changed the value by using a keyboard accelerator or mouse click, etc. .PP @@ -441,7 +441,7 @@ When the user uses the arrows to change the spin box's value the value will be i .PP The setLineStep() function calls the virtual stepChange() function if the new line step is different from the previous setting. .PP -See also QRangeControl::setSteps() and setRange(). +See also TQRangeControl::setSteps() and setRange(). .PP Set this property's value with setLineStep() and get this property's value with lineStep(). .SH "int maxValue" @@ -534,7 +534,7 @@ This property holds the value of the spin box. .PP Set this property's value with setValue() and get this property's value with value(). .PP -See also QRangeControl::setValue(). +See also TQRangeControl::setValue(). .SH "bool wrapping" This property holds whether it is possible to step the value from the highest value to the lowest value and vice versa. .PP |