📄 qslider.cpp
字号:
/******************************************************************************** Copyright (C) 1992-2006 Trolltech ASA. All rights reserved.**** This file is part of the QtGui module of the Qt Toolkit.**** This file may be used under the terms of the GNU General Public** License version 2.0 as published by the Free Software Foundation** and appearing in the file LICENSE.GPL included in the packaging of** this file. Please review the following information to ensure GNU** General Public Licensing requirements will be met:** http://www.trolltech.com/products/qt/opensource.html**** If you are unsure which license is appropriate for your use, please** review the following information:** http://www.trolltech.com/products/qt/licensing.html or contact the** sales department at sales@trolltech.com.**** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.******************************************************************************/#include "qslider.h"#ifndef QT_NO_SLIDER#ifndef QT_NO_ACCESSIBILITY#include "qaccessible.h"#endif#include "qapplication.h"#include "qevent.h"#include "qpainter.h"#include "qstyle.h"#include "qstyleoption.h"#include "private/qabstractslider_p.h"#include "qdebug.h"static const int thresholdTime = 300;static const int repeatTime = 100;class QSliderPrivate : public QAbstractSliderPrivate{ Q_DECLARE_PUBLIC(QSlider)public: QStyle::SubControl pressedControl; int tickInterval; QSlider::TickPosition tickPosition; int clickOffset; int snapBackPosition; void init(); int pixelPosToRangeValue(int pos) const; inline int pick(const QPoint &pt) const; QStyleOptionSlider getStyleOption() const; QStyle::SubControl newHoverControl(const QPoint &pos); bool updateHoverControl(const QPoint &pos); QStyle::SubControl hoverControl; QRect hoverRect;};void QSliderPrivate::init(){ Q_Q(QSlider); pressedControl = QStyle::SC_None; tickInterval = 0; tickPosition = QSlider::NoTicks; hoverControl = QStyle::SC_None; q->setFocusPolicy(Qt::FocusPolicy(q->style()->styleHint(QStyle::SH_Button_FocusPolicy))); QSizePolicy sp(QSizePolicy::Expanding, QSizePolicy::Fixed); if (orientation == Qt::Vertical) sp.transpose(); q->setSizePolicy(sp); q->setAttribute(Qt::WA_WState_OwnSizePolicy, false);}int QSliderPrivate::pixelPosToRangeValue(int pos) const{ Q_Q(const QSlider); QStyleOptionSlider opt = getStyleOption(); QRect gr = q->style()->subControlRect(QStyle::CC_Slider, &opt, QStyle::SC_SliderGroove, q); QRect sr = q->style()->subControlRect(QStyle::CC_Slider, &opt, QStyle::SC_SliderHandle, q); int sliderMin, sliderMax, sliderLength; if (orientation == Qt::Horizontal) { sliderLength = sr.width(); sliderMin = gr.x(); sliderMax = gr.right() - sliderLength + 1; } else { sliderLength = sr.height(); sliderMin = gr.y(); sliderMax = gr.bottom() - sliderLength + 1; } return QStyle::sliderValueFromPosition(minimum, maximum, pos - sliderMin, sliderMax - sliderMin, opt.upsideDown);}inline int QSliderPrivate::pick(const QPoint &pt) const{ return orientation == Qt::Horizontal ? pt.x() : pt.y();}QStyleOptionSlider QSliderPrivate::getStyleOption() const{ Q_Q(const QSlider); QStyleOptionSlider opt; opt.init(q); opt.subControls = QStyle::SC_None; opt.activeSubControls = QStyle::SC_None; opt.orientation = orientation; opt.maximum = maximum; opt.minimum = minimum; opt.tickPosition = (QSlider::TickPosition)tickPosition; opt.tickInterval = tickInterval; opt.upsideDown = (orientation == Qt::Horizontal) ? (invertedAppearance != (opt.direction == Qt::RightToLeft)) : (!invertedAppearance); opt.direction = Qt::LeftToRight; // we use the upsideDown option instead opt.sliderPosition = position; opt.sliderValue = value; opt.singleStep = singleStep; opt.pageStep = pageStep; if (orientation == Qt::Horizontal) opt.state |= QStyle::State_Horizontal; return opt;}bool QSliderPrivate::updateHoverControl(const QPoint &pos){ Q_Q(QSlider); QRect lastHoverRect = hoverRect; QStyle::SubControl lastHoverControl = hoverControl; bool doesHover = q->testAttribute(Qt::WA_Hover); if (lastHoverControl != newHoverControl(pos) && doesHover) { q->update(lastHoverRect); q->update(hoverRect); return true; } return !doesHover;}QStyle::SubControl QSliderPrivate::newHoverControl(const QPoint &pos){ Q_Q(QSlider); QStyleOptionSlider opt = getStyleOption(); opt.subControls = QStyle::SC_All; QRect handleRect = q->style()->subControlRect(QStyle::CC_Slider, &opt, QStyle::SC_SliderHandle, q); QRect grooveRect = q->style()->subControlRect(QStyle::CC_Slider, &opt, QStyle::SC_SliderGroove, q); QRect tickmarksRect = q->style()->subControlRect(QStyle::CC_Slider, &opt, QStyle::SC_SliderTickmarks, q); if (handleRect.contains(pos)) { hoverRect = handleRect; hoverControl = QStyle::SC_SliderHandle; } else if (grooveRect.contains(pos)) { hoverRect = grooveRect; hoverControl = QStyle::SC_SliderGroove; } else if (tickmarksRect.contains(pos)) { hoverRect = tickmarksRect; hoverControl = QStyle::SC_SliderTickmarks; } else { hoverRect = QRect(); hoverControl = QStyle::SC_None; } return hoverControl;}/*! \class QSlider \brief The QSlider widget provides a vertical or horizontal slider. \ingroup basic \mainclass The slider is the classic widget for controlling a bounded value. It lets the user move a slider handle along a horizontal or vertical groove and translates the handle's position into an integer value within the legal range. QSlider has very few of its own functions; most of the functionality is in QAbstractSlider. The most useful functions are setValue() to set the slider directly to some value; triggerAction() to simulate the effects of clicking (useful for shortcut keys); setSingleStep(), setPageStep() to set the steps; and setMinimum() and setMaximum() to define the range of the scroll bar. QSlider provides methods for controlling tickmarks. You can use setTickPosition() to indicate where you want the tickmarks to be, setTickInterval() to indicate how many of them you want. the currently set tick position and interval can be queried using the tickPosition() and tickInterval() functions, respectively. QSlider inherits a comprehensive set of signals: \table \header \o Signal \o Description \row \o \l valueChanged() \o Emitted when the slider's value has changed. The tracking() determines whether this signal is emitted during user interaction. \row \o \l sliderPressed() \o Emitted when the user starts to drag the slider. \row \o \l sliderMoved() \o Emitted when the user drags the slider. \row \o \l sliderReleased() \o Emitted when the user releases the slider. \endtable QSlider only provides integer ranges. Note that although QSlider handles very large numbers, it becomes difficult for users to use a slider accurately for very large ranges. A slider accepts focus on Tab and provides both a mouse wheel and a keyboard interface. The keyboard interface is the following: \list \o Left/Right move a horizontal slider by one single step. \o Up/Down move a vertical slider by one single step. \o PageUp moves up one page. \o PageDown moves down one page. \o Home moves to the start (mininum). \o End moves to the end (maximum). \endlist \table 100% \row \o \inlineimage macintosh-slider.png Screenshot of a Macintosh slider \o A slider shown in the \l{Macintosh Style Widget Gallery}{Macintosh widget style}. \row \o \inlineimage windows-slider.png Screenshot of a Windows XP slider \o A slider shown in the \l{Windows XP Style Widget Gallery}{Windows XP widget style}. \row \o \inlineimage plastique-slider.png Screenshot of a Plastique slider \o A slider shown in the \l{Plastique Style Widget Gallery}{Plastique widget style}. \endtable \sa QScrollBar, QSpinBox, {fowler}{GUI Design Handbook: Slider}*//*! \enum QSlider::TickPosition This enum specifies where the tick marks are to be drawn relative to the slider's groove and the handle the user moves. \value NoTicks Do not draw any tick marks. \value TicksBothSides Draw tick marks on both sides of the groove. \value TicksAbove Draw tick marks above the (horizontal) slider \value TicksBelow Draw tick marks below the (horizontal) slider \value TicksLeft Draw tick marks to the left of the (vertical) slider \value TicksRight Draw tick marks to the right of the (vertical) slider \omitvalue NoMarks \omitvalue Above \omitvalue Left \omitvalue Below \omitvalue Right \omitvalue Both*//*! Constructs a vertical slider with the given \a parent.*/QSlider::QSlider(QWidget *parent) : QAbstractSlider(*new QSliderPrivate, parent){ d_func()->orientation = Qt::Vertical; d_func()->init();}/*! Constructs a slider with the given \a parent. The \a orientation parameter determines whether the slider is horizontal or vertical; the valid values are Qt::Vertical and Qt::Horizontal.*/QSlider::QSlider(Qt::Orientation orientation, QWidget *parent) : QAbstractSlider(*new QSliderPrivate, parent){ d_func()->orientation = orientation; d_func()->init();}#ifdef QT3_SUPPORT/*! Use QSlider() and QObject::setObjectName() instead. \oldcode QSlider *mySlider = new QSlider(parent, name); \newcode QSlider *mySlider = new QSlider(parent); mySlider->setObjectName(name); \endcode*/QSlider::QSlider(QWidget *parent, const char *name) : QAbstractSlider(*new QSliderPrivate, parent){ setObjectName(QString::fromAscii(name)); d_func()->orientation = Qt::Vertical; d_func()->init();}/*!
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -