📄 qslider.3qt
字号:
'\" t.TH QSlider 3qt "2 September 2005" "Trolltech AS" \" -*- nroff -*-.\" Copyright 1992-2001 Trolltech AS. All rights reserved. See the.\" license file included in the distribution for a complete license.\" statement..\".ad l.nh.SH NAMEQSlider \- Vertical or horizontal slider.SH SYNOPSIS\fC#include <qslider.h>\fR.PPInherits QWidget and QRangeControl..PP.SS "Public Members".in +1c.ti -1c.BI "enum \fBTickSetting\fR { NoMarks = 0, Above = 1, Left = Above, Below = 2, Right = Below, Both = 3 }".br.ti -1c.BI "\fBQSlider\fR ( QWidget * parent, const char * name = 0 )".br.ti -1c.BI "\fBQSlider\fR ( Orientation orientation, QWidget * parent, const char * name = 0 )".br.ti -1c.BI "\fBQSlider\fR ( int minValue, int maxValue, int pageStep, int value, Orientation orientation, QWidget * parent, const char * name = 0 )".br.ti -1c.BI "\fB~QSlider\fR ()".br.ti -1c.BI "virtual void \fBsetOrientation\fR ( Orientation )".br.ti -1c.BI "Orientation \fBorientation\fR () const".br.ti -1c.BI "virtual void \fBsetTracking\fR ( bool enable )".br.ti -1c.BI "bool \fBtracking\fR () const".br.ti -1c.BI "virtual void \fBsetPalette\fR ( const QPalette & p )".br.ti -1c.BI "int \fBsliderStart\fR () const".br.ti -1c.BI "QRect \fBsliderRect\fR () const".br.ti -1c.BI "virtual void \fBsetTickmarks\fR ( TickSetting )".br.ti -1c.BI "TickSetting \fBtickmarks\fR () const".br.ti -1c.BI "virtual void \fBsetTickInterval\fR ( int )".br.ti -1c.BI "int \fBtickInterval\fR () const".br.ti -1c.BI "int \fBminValue\fR () const".br.ti -1c.BI "int \fBmaxValue\fR () const".br.ti -1c.BI "void \fBsetMinValue\fR ( int )".br.ti -1c.BI "void \fBsetMaxValue\fR ( int )".br.ti -1c.BI "int \fBlineStep\fR () const".br.ti -1c.BI "int \fBpageStep\fR () const".br.ti -1c.BI "void \fBsetLineStep\fR ( int )".br.ti -1c.BI "void \fBsetPageStep\fR ( int )".br.ti -1c.BI "int \fBvalue\fR () const".br.in -1c.SS "Public Slots".in +1c.ti -1c.BI "virtual void \fBsetValue\fR ( int )".br.ti -1c.BI "void \fBaddStep\fR ()".br.ti -1c.BI "void \fBsubtractStep\fR ()".br.in -1c.SS "Signals".in +1c.ti -1c.BI "void \fBvalueChanged\fR ( int value )".br.ti -1c.BI "void \fBsliderPressed\fR ()".br.ti -1c.BI "void \fBsliderMoved\fR ( int value )".br.ti -1c.BI "void \fBsliderReleased\fR ()".br.in -1c.SS "Important Inherited Members".in +1c.ti -1c.BI "void \fBsetRange\fR ( int minValue, int maxValue )".br.in -1c.SS "Properties".in +1c.ti -1c.BI "int \fBlineStep\fR - the current line step".br.ti -1c.BI "int \fBmaxValue\fR - the current maximum value of the slider".br.ti -1c.BI "int \fBminValue\fR - the current minimum value of the slider".br.ti -1c.BI "Orientation \fBorientation\fR - the slider's orientation".br.ti -1c.BI "int \fBpageStep\fR - the current page step".br.ti -1c.BI "int \fBtickInterval\fR - the interval between tickmarks".br.ti -1c.BI "TickSetting \fBtickmarks\fR - the tickmark settings for this slider".br.ti -1c.BI "bool \fBtracking\fR - whether slider tracking is enabled".br.ti -1c.BI "int \fBvalue\fR - the current slider value".br.in -1c.SS "Protected Members".in +1c.ti -1c.BI "virtual void \fBvalueChange\fR ()".br.ti -1c.BI "virtual void \fBrangeChange\fR ()".br.in -1c.SH DESCRIPTIONThe QSlider widget provides a vertical or horizontal slider..PPThe slider is the classic widget for controlling a bounded value. It lets the user move a slider along a horizontal or vertical groove and translates the slider's position into an integer value within the legal range..PPQSlider inherits QRangeControl, which provides the "integer" side of the slider. setRange() and value() are likely to be used by practically all slider users; see the QRangeControl documentation for information about the many other functions that class provides..PPThe main functions offered by the slider itself are tickmark and orientation control; you can use setTickmarks() to indicate where you want the tickmarks to be, setTickInterval() to indicate how many of them you want and setOrientation() to indicate whether the slider is to be horizontal or vertical..PPA slider accepts focus on Tab and uses the mouse wheel and a suitable keyboard interface..PP.ce 1.B "[Image Omitted]".PP.ce 1.B "[Image Omitted]".PPSee also QScrollBar, QSpinBox, GUI Design Handbook: Slider, and Basic Widgets..SS "Member Type Documentation".SH "QSlider::TickSetting"This enum specifies where the tickmarks are to be drawn relative to the slider's groove and the handle the user moves..TP\fCQSlider::NoMarks\fR - do not draw any tickmarks..TP\fCQSlider::Both\fR - draw tickmarks on both sides of the groove..TP\fCQSlider::Above\fR - draw tickmarks above the (horizontal) slider.TP\fCQSlider::Below\fR - draw tickmarks below the (horizontal) slider.TP\fCQSlider::Left\fR - draw tickmarks to the left of the (vertical) slider.TP\fCQSlider::Right\fR - draw tickmarks to the right of the (vertical) slider.SH MEMBER FUNCTION DOCUMENTATION.SH "QSlider::QSlider ( QWidget * parent, const char * name = 0 )"Constructs a vertical slider..PPThe \fIparent\fR and \fIname\fR arguments are sent on to the QWidget constructor..SH "QSlider::QSlider ( Orientation orientation, QWidget * parent, const char * name = 0 )"Constructs a slider..PPThe \fIorientation\fR must be Qt::Vertical or Qt::Horizontal..PPThe \fIparent\fR and \fIname\fR arguments are sent on to the QWidget constructor..SH "QSlider::QSlider ( int minValue, int maxValue, int pageStep, int value, Orientation orientation, QWidget * parent, const char * name = 0 )"Constructs a slider whose value can never be smaller than \fIminValue\fR or greater than \fImaxValue\fR, whose page step size is \fIpageStep\fR and whose value is initially \fIvalue\fR (which is guaranteed to be in range using bound())..PPIf \fIorientation\fR is Qt::Vertical the slider is vertical and if it is Qt::Horizontal the slider is horizontal..PPThe \fIparent\fR and \fIname\fR arguments are sent on to the QWidget constructor..SH "QSlider::~QSlider ()"Destructor..SH "void QSlider::addStep ()\fC [slot]\fR"Moves the slider one pageStep() up or right..SH "int QSlider::lineStep () const"Returns the current line step. See the "lineStep" property for details..SH "int QSlider::maxValue () const"Returns the current maximum value of the slider. See the "maxValue" property for details..SH "int QSlider::minValue () const"Returns the current minimum value of the slider. See the "minValue" property for details..SH "Orientation QSlider::orientation () const"Returns the slider's orientation. See the "orientation" property for details..SH "int QSlider::pageStep () const"Returns the current page step. See the "pageStep" property for details..SH "void QSlider::rangeChange ()\fC [virtual protected]\fR"Implements the virtual QRangeControl function..PPReimplemented from QRangeControl..SH "void QSlider::setLineStep ( int )"Sets the current line step. See the "lineStep" property for details..SH "void QSlider::setMaxValue ( int )"Sets the current maximum value of the slider. See the "maxValue" property for details..SH "void QSlider::setMinValue ( int )"Sets the current minimum value of the slider. See the "minValue" property for details..SH "void QSlider::setOrientation ( Orientation )\fC [virtual]\fR"Sets the slider's orientation. See the "orientation" property for details..SH "void QSlider::setPageStep ( int )"Sets the current page step. See the "pageStep" property for details..SH "void QSlider::setPalette ( const QPalette & p )\fC [virtual]\fR"Reimplements the virtual function QWidget::setPalette()..PPSets the background color to the mid color for Motif style sliders using palette \fIp\fR..PPReimplemented from QWidget..SH "void QRangeControl::setRange ( int minValue, int maxValue )"Sets the range control's minimum value to \fIminValue\fR and its maximum value to \fImaxValue\fR..PPCalls the virtual rangeChange() function if one or both of the new minimum and maximum values are different from the previous setting. Calls the virtual valueChange() function if the current value is adjusted because it was outside the new range..PPIf \fImaxValue\fR is smaller than \fIminValue\fR, \fIminValue\fR becomes the only legal value..PPSee also minValue and maxValue..PPExamples:.)l listbox/listbox.cpp, t12/lcdrange.cpp, t5/main.cpp, t6/main.cpp, t8/lcdrange.cpp, and xform/xform.cpp..SH "void QSlider::setTickInterval ( int )\fC [virtual]\fR"Sets the interval between tickmarks. See the "tickInterval" property for details..SH "void QSlider::setTickmarks ( TickSetting )\fC [virtual]\fR"Sets the tickmark settings for this slider. See the "tickmarks" property for details..SH "void QSlider::setTracking ( bool enable )\fC [virtual]\fR"Sets whether slider tracking is enabled to \fIenable\fR. See the "tracking" property for details..SH "void QSlider::setValue ( int )\fC [virtual slot]\fR"Sets the current slider value. See the "value" property for details..SH "void QSlider::sliderMoved ( int value )\fC [signal]\fR"This signal is emitted when the slider is dragged, with the new slider \fIvalue\fR as its argument..SH "void QSlider::sliderPressed ()\fC [signal]\fR"This signal is emitted when the user presses the slider with the mouse..SH "QRect QSlider::sliderRect () const"Returns the slider handle rectangle. (This is the visual marker that the user can move.).SH "void QSlider::sliderReleased ()\fC [signal]\fR"This signal is emitted when the user releases the slider with the mouse..SH "int QSlider::sliderStart () const"Returns the start position of the slider..SH "void QSlider::subtractStep ()\fC [slot]\fR"Moves the slider one pageStep() down or left..SH "int QSlider::tickInterval () const"Returns the interval between tickmarks. See the "tickInterval" property for details..SH "TickSetting QSlider::tickmarks () const"Returns the tickmark settings for this slider. See the "tickmarks" property for details..SH "bool QSlider::tracking () const"Returns TRUE if slider tracking is enabled; otherwise returns FALSE. See the "tracking" property for details..SH "int QSlider::value () const"Returns the current slider value. See the "value" property for details..SH "void QSlider::valueChange ()\fC [virtual protected]\fR"Implements the virtual QRangeControl function..PPReimplemented from QRangeControl..SH "void QSlider::valueChanged ( int value )\fC [signal]\fR"This signal is emitted when the slider value is changed, with the new slider \fIvalue\fR as its argument..PPExamples:.)l rangecontrols/rangecontrols.cpp, simple/main.cpp, t12/lcdrange.cpp, t5/main.cpp, t6/main.cpp, t7/lcdrange.cpp, and xform/xform.cpp..SS "Property Documentation".SH "int lineStep"This property holds the current line step..PPWhen setting lineStep, the virtual stepChange() function will be called if the new line step is different from the previous setting..PPSee also setSteps(), QRangeControl::pageStep(), and setRange()..PPSet this property's value with setLineStep() and get this property's value with lineStep()..SH "int maxValue"This property holds the current maximum value of the slider..PPWhen setting this property, the QSlider::minValue is adjusted, if necessary, to ensure that the range remains valid..PPSee also setRange()..PPSet this property's value with setMaxValue() and get this property's value with maxValue()..SH "int minValue"This property holds the current minimum value of the slider..PPWhen setting this property, the QSlider::maxValue is adjusted, if necessary, to ensure that the range remains valid..PPSee also setRange()..PPSet this property's value with setMinValue() and get this property's value with minValue()..SH "Orientation orientation"This property holds the slider's orientation..PPThe orientation must be Qt::Vertical (the default) or Qt::Horizontal..PPSet this property's value with setOrientation() and get this property's value with orientation()..SH "int pageStep"This property holds the current page step..PPWhen setting pageStep, the virtual stepChange() function will be called if the new page step is different from the previous setting..PPSee also QRangeControl::setSteps(), lineStep, and setRange()..PPSet this property's value with setPageStep() and get this property's value with pageStep()..SH "int tickInterval"This property holds the interval between tickmarks..PPThis is a value interval, not a pixel interval. If it is 0, the slider will choose between lineStep() and pageStep(). The initial value of tickInterval is 0..PPSee also QRangeControl::lineStep() and QRangeControl::pageStep()..PPSet this property's value with setTickInterval() and get this property's value with tickInterval()..SH "TickSetting tickmarks"This property holds the tickmark settings for this slider..PPThe valid values are in QSlider::TickSetting. The default is NoMarks..PPSee also tickInterval..PPSet this property's value with setTickmarks() and get this property's value with tickmarks()..SH "bool tracking"This property holds whether slider tracking is enabled..PPIf tracking is enabled (the default), the slider emits the valueChanged() signal whenever the slider is being dragged. If tracking is disabled, the slider emits the valueChanged() signal when the user releases the mouse button (unless the value happens to be the same as before)..PPSet this property's value with setTracking() and get this property's value with tracking()..SH "int value"This property holds the current slider value..PPSet this property's value with setValue() and get this property's value with value()..PPSee also QRangeControl::value() and prevValue()..SH "SEE ALSO".BR http://doc.trolltech.com/qslider.html.BR http://www.trolltech.com/faq/tech.html.SH COPYRIGHTCopyright 1992-2001 Trolltech AS, http://www.trolltech.com. See thelicense file included in the distribution for a complete licensestatement..SH AUTHORGenerated automatically from the source code..SH BUGSIf you find a bug in Qt, please report it as described in.BR http://doc.trolltech.com/bughowto.html .Good bug reports help us to help you. Thank you..PThe definitive Qt documentation is provided in HTML format; it islocated at $QTDIR/doc/html and can be read using Qt Assistant or witha web browser. This man page is provided as a convenience for thoseusers who prefer man pages, although this format is not officiallysupported by Trolltech. .PIf you find errors in this manual page, please report them to.BR qt-bugs@trolltech.com .Please include the name of the manual page (qslider.3qt) and the Qtversion (3.3.5).
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -