123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800 |
- /* -*- mode: C++ ; c-file-style: "stroustrup" -*- *****************************
- * Qwt Widget Library
- * Copyright (C) 1997 Josef Wilgen
- * Copyright (C) 2002 Uwe Rathmann
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the Qwt License, Version 1.0
- *****************************************************************************/
- #include "qwt_slider.h"
- #include "qwt_painter.h"
- #include "qwt_scale_draw.h"
- #include "qwt_scale_map.h"
- #include <qevent.h>
- #include <qdrawutil.h>
- #include <qpainter.h>
- #include <qalgorithms.h>
- #include <qmath.h>
- class QwtSlider::PrivateData
- {
- public:
- QRect sliderRect;
- int thumbLength;
- int thumbWidth;
- int borderWidth;
- int scaleDist;
- int xMargin;
- int yMargin;
- QwtSlider::ScalePos scalePos;
- QwtSlider::BGSTYLE bgStyle;
- /*
- Scale and values might have different maps. This is
- confusing and I can't see strong arguments for such
- a feature. TODO ...
- */
- QwtScaleMap map; // linear map
- mutable QSize sizeHintCache;
- };
- /*!
- \brief Constructor
- \param parent parent widget
- \param orientation Orientation of the slider. Can be Qt::Horizontal
- or Qt::Vertical. Defaults to Qt::Horizontal.
- \param scalePos Position of the scale.
- Defaults to QwtSlider::NoScale.
- \param bgStyle Background style. QwtSlider::BgTrough draws the
- slider button in a trough, QwtSlider::BgSlot draws
- a slot underneath the button. An or-combination of both
- may also be used. The default is QwtSlider::BgTrough.
- QwtSlider enforces valid combinations of its orientation and scale position.
- If the combination is invalid, the scale position will be set to NoScale.
- Valid combinations are:
- - Qt::Horizonal with NoScale, TopScale, or BottomScale;
- - Qt::Vertical with NoScale, LeftScale, or RightScale.
- */
- QwtSlider::QwtSlider( QWidget *parent,
- Qt::Orientation orientation, ScalePos scalePos, BGSTYLE bgStyle ):
- QwtAbstractSlider( orientation, parent )
- {
- initSlider( orientation, scalePos, bgStyle );
- }
- void QwtSlider::initSlider( Qt::Orientation orientation,
- ScalePos scalePos, BGSTYLE bgStyle )
- {
- if ( orientation == Qt::Vertical )
- setSizePolicy( QSizePolicy::Fixed, QSizePolicy::Expanding );
- else
- setSizePolicy( QSizePolicy::Expanding, QSizePolicy::Fixed );
- setAttribute( Qt::WA_WState_OwnSizePolicy, false );
- d_data = new QwtSlider::PrivateData;
- d_data->borderWidth = 2;
- d_data->scaleDist = 4;
- d_data->scalePos = scalePos;
- d_data->xMargin = 0;
- d_data->yMargin = 0;
- d_data->bgStyle = bgStyle;
- if ( bgStyle == BgSlot )
- {
- d_data->thumbLength = 16;
- d_data->thumbWidth = 30;
- }
- else
- {
- d_data->thumbLength = 31;
- d_data->thumbWidth = 16;
- }
- d_data->sliderRect.setRect( 0, 0, 8, 8 );
- QwtScaleDraw::Alignment align;
- if ( orientation == Qt::Vertical )
- {
- // enforce a valid combination of scale position and orientation
- if ( ( d_data->scalePos == BottomScale ) || ( d_data->scalePos == TopScale ) )
- d_data->scalePos = NoScale;
- // adopt the policy of layoutSlider (NoScale lays out like Left)
- if ( d_data->scalePos == RightScale )
- align = QwtScaleDraw::RightScale;
- else
- align = QwtScaleDraw::LeftScale;
- }
- else
- {
- // enforce a valid combination of scale position and orientation
- if ( ( d_data->scalePos == LeftScale ) || ( d_data->scalePos == RightScale ) )
- d_data->scalePos = NoScale;
- // adopt the policy of layoutSlider (NoScale lays out like Bottom)
- if ( d_data->scalePos == TopScale )
- align = QwtScaleDraw::TopScale;
- else
- align = QwtScaleDraw::BottomScale;
- }
- scaleDraw()->setAlignment( align );
- scaleDraw()->setLength( 100 );
- setRange( 0.0, 100.0, 1.0 );
- setValue( 0.0 );
- }
- QwtSlider::~QwtSlider()
- {
- delete d_data;
- }
- /*!
- \brief Set the orientation.
- \param o Orientation. Allowed values are Qt::Horizontal and Qt::Vertical.
- If the new orientation and the old scale position are an invalid combination,
- the scale position will be set to QwtSlider::NoScale.
- \sa QwtAbstractSlider::orientation()
- */
- void QwtSlider::setOrientation( Qt::Orientation o )
- {
- if ( o == orientation() )
- return;
- if ( o == Qt::Horizontal )
- {
- if ( ( d_data->scalePos == LeftScale ) || ( d_data->scalePos == RightScale ) )
- d_data->scalePos = NoScale;
- }
- else // if (o == Qt::Vertical)
- {
- if ( ( d_data->scalePos == BottomScale ) || ( d_data->scalePos == TopScale ) )
- d_data->scalePos = NoScale;
- }
- if ( !testAttribute( Qt::WA_WState_OwnSizePolicy ) )
- {
- QSizePolicy sp = sizePolicy();
- sp.transpose();
- setSizePolicy( sp );
- setAttribute( Qt::WA_WState_OwnSizePolicy, false );
- }
- QwtAbstractSlider::setOrientation( o );
- layoutSlider();
- }
- /*!
- \brief Change the scale position (and slider orientation).
- \param s Position of the scale.
- A valid combination of scale position and orientation is enforced:
- - if the new scale position is Left or Right, the scale orientation will
- become Qt::Vertical;
- - if the new scale position is Bottom or Top the scale orientation will
- become Qt::Horizontal;
- - if the new scale position is QwtSlider::NoScale, the scale
- orientation will not change.
- */
- void QwtSlider::setScalePosition( ScalePos s )
- {
- if ( d_data->scalePos == s )
- return;
- d_data->scalePos = s;
- switch ( d_data->scalePos )
- {
- case BottomScale:
- {
- setOrientation( Qt::Horizontal );
- scaleDraw()->setAlignment( QwtScaleDraw::BottomScale );
- break;
- }
- case TopScale:
- {
- setOrientation( Qt::Horizontal );
- scaleDraw()->setAlignment( QwtScaleDraw::TopScale );
- break;
- }
- case LeftScale:
- {
- setOrientation( Qt::Vertical );
- scaleDraw()->setAlignment( QwtScaleDraw::LeftScale );
- break;
- }
- case RightScale:
- {
- setOrientation( Qt::Vertical );
- scaleDraw()->setAlignment( QwtScaleDraw::RightScale );
- break;
- }
- default:
- {
- // nothing
- }
- }
- layoutSlider();
- }
- //! Return the scale position.
- QwtSlider::ScalePos QwtSlider::scalePosition() const
- {
- return d_data->scalePos;
- }
- /*!
- \brief Change the slider's border width
- \param bd border width
- */
- void QwtSlider::setBorderWidth( int bd )
- {
- if ( bd < 0 )
- bd = 0;
- if ( bd != d_data->borderWidth )
- {
- d_data->borderWidth = bd;
- layoutSlider();
- }
- }
- /*!
- \brief Set the slider's thumb length
- \param thumbLength new length
- */
- void QwtSlider::setThumbLength( int thumbLength )
- {
- if ( thumbLength < 8 )
- thumbLength = 8;
- if ( thumbLength != d_data->thumbLength )
- {
- d_data->thumbLength = thumbLength;
- layoutSlider();
- }
- }
- /*!
- \brief Change the width of the thumb
- \param w new width
- */
- void QwtSlider::setThumbWidth( int w )
- {
- if ( w < 4 )
- w = 4;
- if ( d_data->thumbWidth != w )
- {
- d_data->thumbWidth = w;
- layoutSlider();
- }
- }
- /*!
- \brief Set a scale draw
- For changing the labels of the scales, it
- is necessary to derive from QwtScaleDraw and
- overload QwtScaleDraw::label().
- \param scaleDraw ScaleDraw object, that has to be created with
- new and will be deleted in ~QwtSlider or the next
- call of setScaleDraw().
- */
- void QwtSlider::setScaleDraw( QwtScaleDraw *scaleDraw )
- {
- const QwtScaleDraw *previousScaleDraw = this->scaleDraw();
- if ( scaleDraw == NULL || scaleDraw == previousScaleDraw )
- return;
- if ( previousScaleDraw )
- scaleDraw->setAlignment( previousScaleDraw->alignment() );
- setAbstractScaleDraw( scaleDraw );
- layoutSlider();
- }
- /*!
- \return the scale draw of the slider
- \sa setScaleDraw()
- */
- const QwtScaleDraw *QwtSlider::scaleDraw() const
- {
- return static_cast<const QwtScaleDraw *>( abstractScaleDraw() );
- }
- /*!
- \return the scale draw of the slider
- \sa setScaleDraw()
- */
- QwtScaleDraw *QwtSlider::scaleDraw()
- {
- return static_cast<QwtScaleDraw *>( abstractScaleDraw() );
- }
- //! Notify changed scale
- void QwtSlider::scaleChange()
- {
- layoutSlider();
- }
- //! Notify change in font
- void QwtSlider::fontChange( const QFont &f )
- {
- QwtAbstractSlider::fontChange( f );
- layoutSlider();
- }
- /*!
- Draw the slider into the specified rectangle.
- \param painter Painter
- \param r Rectangle
- */
- void QwtSlider::drawSlider( QPainter *painter, const QRect &r )
- {
- QRect cr( r );
- if ( d_data->bgStyle & BgTrough )
- {
- qDrawShadePanel( painter, r.x(), r.y(),
- r.width(), r.height(), palette(),
- true, d_data->borderWidth, 0 );
- cr.setRect( r.x() + d_data->borderWidth,
- r.y() + d_data->borderWidth,
- r.width() - 2 * d_data->borderWidth,
- r.height() - 2 * d_data->borderWidth );
- painter->fillRect( cr.x(), cr.y(), cr.width(), cr.height(),
- palette().brush( QPalette::Mid ) );
- }
- if ( d_data->bgStyle & BgSlot )
- {
- int ws = 4;
- int ds = d_data->thumbLength / 2 - 4;
- if ( ds < 1 )
- ds = 1;
- QRect rSlot;
- if ( orientation() == Qt::Horizontal )
- {
- if ( cr.height() & 1 )
- ws++;
- rSlot = QRect( cr.x() + ds,
- cr.y() + ( cr.height() - ws ) / 2,
- cr.width() - 2 * ds, ws );
- }
- else
- {
- if ( cr.width() & 1 )
- ws++;
- rSlot = QRect( cr.x() + ( cr.width() - ws ) / 2,
- cr.y() + ds,
- ws, cr.height() - 2 * ds );
- }
- painter->fillRect( rSlot.x(), rSlot.y(), rSlot.width(), rSlot.height(),
- palette().brush( QPalette::Dark ) );
- qDrawShadePanel( painter, rSlot.x(), rSlot.y(),
- rSlot.width(), rSlot.height(), palette(),
- true, 1 , 0 );
- }
- if ( isValid() )
- drawThumb( painter, cr, xyPosition( value() ) );
- }
- /*!
- Draw the thumb at a position
- \param painter Painter
- \param sliderRect Bounding rectangle of the slider
- \param pos Position of the slider thumb
- */
- void QwtSlider::drawThumb( QPainter *painter, const QRect &sliderRect, int pos )
- {
- pos++; // shade line points one pixel below
- if ( orientation() == Qt::Horizontal )
- {
- qDrawShadePanel( painter, pos - d_data->thumbLength / 2,
- sliderRect.y(), d_data->thumbLength, sliderRect.height(),
- palette(), false, d_data->borderWidth,
- &palette().brush( QPalette::Button ) );
- qDrawShadeLine( painter, pos, sliderRect.y(),
- pos, sliderRect.y() + sliderRect.height() - 2,
- palette(), true, 1 );
- }
- else // Vertical
- {
- qDrawShadePanel( painter, sliderRect.x(), pos - d_data->thumbLength / 2,
- sliderRect.width(), d_data->thumbLength,
- palette(), false, d_data->borderWidth,
- &palette().brush( QPalette::Button ) );
- qDrawShadeLine( painter, sliderRect.x(), pos,
- sliderRect.x() + sliderRect.width() - 2, pos,
- palette(), true, 1 );
- }
- }
- /*!
- Find the x/y position for a given value v
- \param value Value
- */
- int QwtSlider::xyPosition( double value ) const
- {
- return qRound( d_data->map.transform( value ) );
- }
- /*!
- Determine the value corresponding to a specified mouse location.
- \param pos Mouse position
- */
- double QwtSlider::getValue( const QPoint &pos )
- {
- return d_data->map.invTransform(
- orientation() == Qt::Horizontal ? pos.x() : pos.y() );
- }
- /*!
- \brief Determine scrolling mode and direction
- \param p point
- \param scrollMode Scrolling mode
- \param direction Direction
- */
- void QwtSlider::getScrollMode( const QPoint &p,
- int &scrollMode, int &direction )
- {
- if ( !d_data->sliderRect.contains( p ) )
- {
- scrollMode = ScrNone;
- direction = 0;
- return;
- }
- const int pos = ( orientation() == Qt::Horizontal ) ? p.x() : p.y();
- const int markerPos = xyPosition( value() );
- if ( ( pos > markerPos - d_data->thumbLength / 2 )
- && ( pos < markerPos + d_data->thumbLength / 2 ) )
- {
- scrollMode = ScrMouse;
- direction = 0;
- return;
- }
- scrollMode = ScrPage;
- direction = ( pos > markerPos ) ? 1 : -1;
- if ( scaleDraw()->map().p1() > scaleDraw()->map().p2() )
- direction = -direction;
- }
- /*!
- Qt paint event
- \param event Paint event
- */
- void QwtSlider::paintEvent( QPaintEvent *event )
- {
- const QRect &ur = event->rect();
- if ( ur.isValid() )
- {
- QPainter painter( this );
- draw( &painter, ur );
- }
- }
- //! Draw the QwtSlider
- void QwtSlider::draw( QPainter *painter, const QRect& )
- {
- if ( d_data->scalePos != NoScale )
- scaleDraw()->draw( painter, palette() );
- drawSlider( painter, d_data->sliderRect );
- if ( hasFocus() )
- QwtPainter::drawFocusRect( painter, this, d_data->sliderRect );
- }
- //! Qt resize event
- void QwtSlider::resizeEvent( QResizeEvent * )
- {
- layoutSlider( false );
- }
- /*!
- Recalculate the slider's geometry and layout based on
- the current rect and fonts.
- \param update_geometry notify the layout system and call update
- to redraw the scale
- */
- void QwtSlider::layoutSlider( bool update_geometry )
- {
- int sliderWidth = d_data->thumbWidth;
- int sld1 = d_data->thumbLength / 2 - 1;
- int sld2 = d_data->thumbLength / 2 + d_data->thumbLength % 2;
- if ( d_data->bgStyle & BgTrough )
- {
- sliderWidth += 2 * d_data->borderWidth;
- sld1 += d_data->borderWidth;
- sld2 += d_data->borderWidth;
- }
- int scd = 0;
- if ( d_data->scalePos != NoScale )
- {
- int d1, d2;
- scaleDraw()->getBorderDistHint( font(), d1, d2 );
- scd = qMax( d1, d2 );
- }
- int slo = scd - sld1;
- if ( slo < 0 )
- slo = 0;
- int x, y, length;
- const QRect r = rect();
- if ( orientation() == Qt::Horizontal )
- {
- switch ( d_data->scalePos )
- {
- case TopScale:
- {
- d_data->sliderRect.setRect(
- r.x() + d_data->xMargin + slo,
- r.y() + r.height() -
- d_data->yMargin - sliderWidth,
- r.width() - 2 * d_data->xMargin - 2 * slo,
- sliderWidth );
- x = d_data->sliderRect.x() + sld1;
- y = d_data->sliderRect.y() - d_data->scaleDist;
- break;
- }
- case BottomScale:
- {
- d_data->sliderRect.setRect(
- r.x() + d_data->xMargin + slo,
- r.y() + d_data->yMargin,
- r.width() - 2 * d_data->xMargin - 2 * slo,
- sliderWidth );
- x = d_data->sliderRect.x() + sld1;
- y = d_data->sliderRect.y() + d_data->sliderRect.height()
- + d_data->scaleDist;
- break;
- }
- case NoScale: // like Bottom, but no scale. See QwtSlider().
- default: // inconsistent orientation and scale position
- {
- d_data->sliderRect.setRect(
- r.x() + d_data->xMargin + slo,
- r.y() + d_data->yMargin,
- r.width() - 2 * d_data->xMargin - 2 * slo,
- sliderWidth );
- x = d_data->sliderRect.x() + sld1;
- y = 0;
- break;
- }
- }
- length = d_data->sliderRect.width() - ( sld1 + sld2 );
- }
- else // if (orientation() == Qt::Vertical
- {
- switch ( d_data->scalePos )
- {
- case RightScale:
- d_data->sliderRect.setRect(
- r.x() + d_data->xMargin,
- r.y() + d_data->yMargin + slo,
- sliderWidth,
- r.height() - 2 * d_data->yMargin - 2 * slo );
- x = d_data->sliderRect.x() + d_data->sliderRect.width()
- + d_data->scaleDist;
- y = d_data->sliderRect.y() + sld1;
- break;
- case LeftScale:
- d_data->sliderRect.setRect(
- r.x() + r.width() - sliderWidth - d_data->xMargin,
- r.y() + d_data->yMargin + slo,
- sliderWidth,
- r.height() - 2 * d_data->yMargin - 2 * slo );
- x = d_data->sliderRect.x() - d_data->scaleDist;
- y = d_data->sliderRect.y() + sld1;
- break;
- case NoScale: // like Left, but no scale. See QwtSlider().
- default: // inconsistent orientation and scale position
- d_data->sliderRect.setRect(
- r.x() + r.width() - sliderWidth - d_data->xMargin,
- r.y() + d_data->yMargin + slo,
- sliderWidth,
- r.height() - 2 * d_data->yMargin - 2 * slo );
- x = 0;
- y = d_data->sliderRect.y() + sld1;
- break;
- }
- length = d_data->sliderRect.height() - ( sld1 + sld2 );
- }
- scaleDraw()->move( x, y );
- scaleDraw()->setLength( length );
- d_data->map.setPaintInterval( scaleDraw()->map().p1(),
- scaleDraw()->map().p2() );
- if ( update_geometry )
- {
- d_data->sizeHintCache = QSize(); // invalidate
- updateGeometry();
- update();
- }
- }
- //! Notify change of value
- void QwtSlider::valueChange()
- {
- QwtAbstractSlider::valueChange();
- update();
- }
- //! Notify change of range
- void QwtSlider::rangeChange()
- {
- d_data->map.setScaleInterval( minValue(), maxValue() );
- if ( autoScale() )
- rescale( minValue(), maxValue() );
- QwtAbstractSlider::rangeChange();
- layoutSlider();
- }
- /*!
- \brief Set distances between the widget's border and internals.
- \param xMargin Horizontal margin
- \param yMargin Vertical margin
- */
- void QwtSlider::setMargins( int xMargin, int yMargin )
- {
- if ( xMargin < 0 )
- xMargin = 0;
- if ( yMargin < 0 )
- yMargin = 0;
- if ( xMargin != d_data->xMargin || yMargin != d_data->yMargin )
- {
- d_data->xMargin = xMargin;
- d_data->yMargin = yMargin;
- layoutSlider();
- }
- }
- /*!
- Set the background style.
- */
- void QwtSlider::setBgStyle( BGSTYLE st )
- {
- d_data->bgStyle = st;
- layoutSlider();
- }
- /*!
- \return the background style.
- */
- QwtSlider::BGSTYLE QwtSlider::bgStyle() const
- {
- return d_data->bgStyle;
- }
- /*!
- \return the thumb length.
- */
- int QwtSlider::thumbLength() const
- {
- return d_data->thumbLength;
- }
- /*!
- \return the thumb width.
- */
- int QwtSlider::thumbWidth() const
- {
- return d_data->thumbWidth;
- }
- /*!
- \return the border width.
- */
- int QwtSlider::borderWidth() const
- {
- return d_data->borderWidth;
- }
- /*!
- \return QwtSlider::minimumSizeHint()
- */
- QSize QwtSlider::sizeHint() const
- {
- return minimumSizeHint();
- }
- /*!
- \brief Return a minimum size hint
- \warning The return value of QwtSlider::minimumSizeHint() depends on
- the font and the scale.
- */
- QSize QwtSlider::minimumSizeHint() const
- {
- if ( !d_data->sizeHintCache.isEmpty() )
- return d_data->sizeHintCache;
- int sliderWidth = d_data->thumbWidth;
- if ( d_data->bgStyle & BgTrough )
- sliderWidth += 2 * d_data->borderWidth;
- int w = 0, h = 0;
- if ( d_data->scalePos != NoScale )
- {
- int d1, d2;
- scaleDraw()->getBorderDistHint( font(), d1, d2 );
- int msMbd = qMax( d1, d2 );
- int mbd = d_data->thumbLength / 2;
- if ( d_data->bgStyle & BgTrough )
- mbd += d_data->borderWidth;
- if ( mbd < msMbd )
- mbd = msMbd;
- const int sdExtent = qCeil( scaleDraw()->extent( font() ) );
- const int sdLength = scaleDraw()->minLength( font() );
- h = sliderWidth + sdExtent + d_data->scaleDist;
- w = sdLength - 2 * msMbd + 2 * mbd;
- }
- else // no scale
- {
- w = 200;
- h = sliderWidth;
- }
- if ( orientation() == Qt::Vertical )
- qSwap( w, h );
- w += 2 * d_data->xMargin;
- h += 2 * d_data->yMargin;
- d_data->sizeHintCache = QSize( w, h );
- return d_data->sizeHintCache;
- }
|