123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908 |
- /* -*- 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_scale_widget.h"
- #include "qwt_painter.h"
- #include "qwt_color_map.h"
- #include "qwt_scale_map.h"
- #include "qwt_math.h"
- #include "qwt_scale_div.h"
- #include "qwt_text.h"
- #include <qpainter.h>
- #include <qevent.h>
- #include <qmath.h>
- class QwtScaleWidget::PrivateData
- {
- public:
- PrivateData():
- scaleDraw( NULL )
- {
- colorBar.colorMap = NULL;
- }
- ~PrivateData()
- {
- delete scaleDraw;
- delete colorBar.colorMap;
- }
- QwtScaleDraw *scaleDraw;
- int borderDist[2];
- int minBorderDist[2];
- int scaleLength;
- int margin;
- int titleOffset;
- int spacing;
- QwtText title;
- int layoutFlags;
- struct t_colorBar
- {
- bool isEnabled;
- int width;
- QwtInterval interval;
- QwtColorMap *colorMap;
- } colorBar;
- };
- /*!
- \brief Create a scale with the position QwtScaleWidget::Left
- \param parent Parent widget
- */
- QwtScaleWidget::QwtScaleWidget( QWidget *parent ):
- QWidget( parent )
- {
- initScale( QwtScaleDraw::LeftScale );
- }
- /*!
- \brief Constructor
- \param align Alignment.
- \param parent Parent widget
- */
- QwtScaleWidget::QwtScaleWidget(
- QwtScaleDraw::Alignment align, QWidget *parent ):
- QWidget( parent )
- {
- initScale( align );
- }
- //! Destructor
- QwtScaleWidget::~QwtScaleWidget()
- {
- delete d_data;
- }
- //! Initialize the scale
- void QwtScaleWidget::initScale( QwtScaleDraw::Alignment align )
- {
- d_data = new PrivateData;
- d_data->layoutFlags = 0;
- if ( align == QwtScaleDraw::RightScale )
- d_data->layoutFlags |= TitleInverted;
- d_data->borderDist[0] = 0;
- d_data->borderDist[1] = 0;
- d_data->minBorderDist[0] = 0;
- d_data->minBorderDist[1] = 0;
- d_data->margin = 4;
- d_data->titleOffset = 0;
- d_data->spacing = 2;
- d_data->scaleDraw = new QwtScaleDraw;
- d_data->scaleDraw->setAlignment( align );
- d_data->scaleDraw->setLength( 10 );
- d_data->colorBar.colorMap = new QwtLinearColorMap();
- d_data->colorBar.isEnabled = false;
- d_data->colorBar.width = 10;
- const int flags = Qt::AlignHCenter
- | Qt::TextExpandTabs | Qt::TextWordWrap;
- d_data->title.setRenderFlags( flags );
- d_data->title.setFont( font() );
- QSizePolicy policy( QSizePolicy::MinimumExpanding,
- QSizePolicy::Fixed );
- if ( d_data->scaleDraw->orientation() == Qt::Vertical )
- policy.transpose();
- setSizePolicy( policy );
- setAttribute( Qt::WA_WState_OwnSizePolicy, false );
- }
- /*!
- Toggle an layout flag
- \param flag Layout flag
- \param on true/false
- \sa testLayoutFlag(), LayoutFlag
- */
- void QwtScaleWidget::setLayoutFlag( LayoutFlag flag, bool on )
- {
- if ( ( ( d_data->layoutFlags & flag ) != 0 ) != on )
- {
- if ( on )
- d_data->layoutFlags |= flag;
- else
- d_data->layoutFlags &= ~flag;
- }
- }
- /*!
- Test a layout flag
- \param flag Layout flag
- \return true/false
- \sa setLayoutFlag(), LayoutFlag
- */
- bool QwtScaleWidget::testLayoutFlag( LayoutFlag flag ) const
- {
- return ( d_data->layoutFlags & flag );
- }
- /*!
- Give title new text contents
- \param title New title
- \sa title(), setTitle(const QwtText &);
- */
- void QwtScaleWidget::setTitle( const QString &title )
- {
- if ( d_data->title.text() != title )
- {
- d_data->title.setText( title );
- layoutScale();
- }
- }
- /*!
- Give title new text contents
- \param title New title
- \sa title()
- \warning The title flags are interpreted in
- direction of the label, AlignTop, AlignBottom can't be set
- as the title will always be aligned to the scale.
- */
- void QwtScaleWidget::setTitle( const QwtText &title )
- {
- QwtText t = title;
- const int flags = title.renderFlags() & ~( Qt::AlignTop | Qt::AlignBottom );
- t.setRenderFlags( flags );
- if ( t != d_data->title )
- {
- d_data->title = t;
- layoutScale();
- }
- }
- /*!
- Change the alignment
- \param alignment New alignment
- \sa alignment()
- */
- void QwtScaleWidget::setAlignment( QwtScaleDraw::Alignment alignment )
- {
- if ( !testAttribute( Qt::WA_WState_OwnSizePolicy ) )
- {
- QSizePolicy policy( QSizePolicy::MinimumExpanding,
- QSizePolicy::Fixed );
- if ( d_data->scaleDraw->orientation() == Qt::Vertical )
- policy.transpose();
- setSizePolicy( policy );
- setAttribute( Qt::WA_WState_OwnSizePolicy, false );
- }
- if ( d_data->scaleDraw )
- d_data->scaleDraw->setAlignment( alignment );
- layoutScale();
- }
- /*!
- \return position
- \sa setPosition()
- */
- QwtScaleDraw::Alignment QwtScaleWidget::alignment() const
- {
- if ( !scaleDraw() )
- return QwtScaleDraw::LeftScale;
- return scaleDraw()->alignment();
- }
- /*!
- Specify distances of the scale's endpoints from the
- widget's borders. The actual borders will never be less
- than minimum border distance.
- \param dist1 Left or top Distance
- \param dist2 Right or bottom distance
- \sa borderDist()
- */
- void QwtScaleWidget::setBorderDist( int dist1, int dist2 )
- {
- if ( dist1 != d_data->borderDist[0] || dist2 != d_data->borderDist[1] )
- {
- d_data->borderDist[0] = dist1;
- d_data->borderDist[1] = dist2;
- layoutScale();
- }
- }
- /*!
- \brief Specify the margin to the colorBar/base line.
- \param margin Margin
- \sa margin()
- */
- void QwtScaleWidget::setMargin( int margin )
- {
- margin = qMax( 0, margin );
- if ( margin != d_data->margin )
- {
- d_data->margin = margin;
- layoutScale();
- }
- }
- /*!
- \brief Specify the distance between color bar, scale and title
- \param spacing Spacing
- \sa spacing()
- */
- void QwtScaleWidget::setSpacing( int spacing )
- {
- spacing = qMax( 0, spacing );
- if ( spacing != d_data->spacing )
- {
- d_data->spacing = spacing;
- layoutScale();
- }
- }
- /*!
- \brief Change the alignment for the labels.
- \sa QwtScaleDraw::setLabelAlignment(), setLabelRotation()
- */
- void QwtScaleWidget::setLabelAlignment( Qt::Alignment alignment )
- {
- d_data->scaleDraw->setLabelAlignment( alignment );
- layoutScale();
- }
- /*!
- \brief Change the rotation for the labels.
- See QwtScaleDraw::setLabelRotation().
- \param rotation Rotation
- \sa QwtScaleDraw::setLabelRotation(), setLabelFlags()
- */
- void QwtScaleWidget::setLabelRotation( double rotation )
- {
- d_data->scaleDraw->setLabelRotation( rotation );
- layoutScale();
- }
- /*!
- Set a scale draw
- sd has to be created with new and will be deleted in
- ~QwtScaleWidget() or the next call of setScaleDraw().
- \param sd ScaleDraw object
- \sa scaleDraw()
- */
- void QwtScaleWidget::setScaleDraw( QwtScaleDraw *sd )
- {
- if ( sd == NULL || sd == d_data->scaleDraw )
- return;
- if ( d_data->scaleDraw )
- sd->setAlignment( d_data->scaleDraw->alignment() );
- delete d_data->scaleDraw;
- d_data->scaleDraw = sd;
- layoutScale();
- }
- /*!
- scaleDraw of this scale
- \sa setScaleDraw(), QwtScaleDraw::setScaleDraw()
- */
- const QwtScaleDraw *QwtScaleWidget::scaleDraw() const
- {
- return d_data->scaleDraw;
- }
- /*!
- scaleDraw of this scale
- \sa QwtScaleDraw::setScaleDraw()
- */
- QwtScaleDraw *QwtScaleWidget::scaleDraw()
- {
- return d_data->scaleDraw;
- }
- /*!
- \return title
- \sa setTitle()
- */
- QwtText QwtScaleWidget::title() const
- {
- return d_data->title;
- }
- /*!
- \return start border distance
- \sa setBorderDist()
- */
- int QwtScaleWidget::startBorderDist() const
- {
- return d_data->borderDist[0];
- }
- /*!
- \return end border distance
- \sa setBorderDist()
- */
- int QwtScaleWidget::endBorderDist() const
- {
- return d_data->borderDist[1];
- }
- /*!
- \return margin
- \sa setMargin()
- */
- int QwtScaleWidget::margin() const
- {
- return d_data->margin;
- }
- /*!
- \return distance between scale and title
- \sa setMargin()
- */
- int QwtScaleWidget::spacing() const
- {
- return d_data->spacing;
- }
- /*!
- \brief paintEvent
- */
- void QwtScaleWidget::paintEvent( QPaintEvent *event )
- {
- QPainter painter( this );
- painter.setClipRegion( event->region() );
- draw( &painter );
- }
- /*!
- \brief draw the scale
- */
- void QwtScaleWidget::draw( QPainter *painter ) const
- {
- d_data->scaleDraw->draw( painter, palette() );
- if ( d_data->colorBar.isEnabled && d_data->colorBar.width > 0 &&
- d_data->colorBar.interval.isValid() )
- {
- drawColorBar( painter, colorBarRect( rect() ) );
- }
- QRect r = rect();
- if ( d_data->scaleDraw->orientation() == Qt::Horizontal )
- {
- r.setLeft( r.left() + d_data->borderDist[0] );
- r.setWidth( r.width() - d_data->borderDist[1] );
- }
- else
- {
- r.setTop( r.top() + d_data->borderDist[0] );
- r.setHeight( r.height() - d_data->borderDist[1] );
- }
- if ( !d_data->title.isEmpty() )
- drawTitle( painter, d_data->scaleDraw->alignment(), r );
- }
- /*!
- Calculate the the rectangle for the color bar
- \param rect Bounding rectangle for all components of the scale
- \return Rectabgle for the color bar
- */
- QRectF QwtScaleWidget::colorBarRect( const QRectF& rect ) const
- {
- QRectF cr = rect;
- if ( d_data->scaleDraw->orientation() == Qt::Horizontal )
- {
- cr.setLeft( cr.left() + d_data->borderDist[0] );
- cr.setWidth( cr.width() - d_data->borderDist[1] + 1 );
- }
- else
- {
- cr.setTop( cr.top() + d_data->borderDist[0] );
- cr.setHeight( cr.height() - d_data->borderDist[1] + 1 );
- }
- switch ( d_data->scaleDraw->alignment() )
- {
- case QwtScaleDraw::LeftScale:
- {
- cr.setLeft( cr.right() - d_data->margin
- - d_data->colorBar.width );
- cr.setWidth( d_data->colorBar.width );
- break;
- }
- case QwtScaleDraw::RightScale:
- {
- cr.setLeft( cr.left() + d_data->margin );
- cr.setWidth( d_data->colorBar.width );
- break;
- }
- case QwtScaleDraw::BottomScale:
- {
- cr.setTop( cr.top() + d_data->margin );
- cr.setHeight( d_data->colorBar.width );
- break;
- }
- case QwtScaleDraw::TopScale:
- {
- cr.setTop( cr.bottom() - d_data->margin
- - d_data->colorBar.width );
- cr.setHeight( d_data->colorBar.width );
- break;
- }
- }
- return cr;
- }
- /*!
- Event handler for resize event
- \param event Resize event
- */
- void QwtScaleWidget::resizeEvent( QResizeEvent * )
- {
- layoutScale( false );
- }
- /*!
- Recalculate the scale'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 QwtScaleWidget::layoutScale( bool update_geometry )
- {
- int bd0, bd1;
- getBorderDistHint( bd0, bd1 );
- if ( d_data->borderDist[0] > bd0 )
- bd0 = d_data->borderDist[0];
- if ( d_data->borderDist[1] > bd1 )
- bd1 = d_data->borderDist[1];
- int colorBarWidth = 0;
- if ( d_data->colorBar.isEnabled && d_data->colorBar.interval.isValid() )
- colorBarWidth = d_data->colorBar.width + d_data->spacing;
- const QRectF r = rect();
- double x, y, length;
- if ( d_data->scaleDraw->orientation() == Qt::Vertical )
- {
- y = r.top() + bd0;
- length = r.height() - ( bd0 + bd1 );
- if ( d_data->scaleDraw->alignment() == QwtScaleDraw::LeftScale )
- x = r.right() - 1.0 - d_data->margin - colorBarWidth;
- else
- x = r.left() + d_data->margin + colorBarWidth;
- }
- else
- {
- x = r.left() + bd0;
- length = r.width() - ( bd0 + bd1 );
- if ( d_data->scaleDraw->alignment() == QwtScaleDraw::BottomScale )
- y = r.top() + d_data->margin + colorBarWidth;
- else
- y = r.bottom() - 1.0 - d_data->margin - colorBarWidth;
- }
- d_data->scaleDraw->move( x, y );
- d_data->scaleDraw->setLength( length );
- const int extent = qCeil( d_data->scaleDraw->extent( font() ) );
- d_data->titleOffset =
- d_data->margin + d_data->spacing + colorBarWidth + extent;
- if ( update_geometry )
- {
- updateGeometry();
- update();
- }
- }
- /*!
- Draw the color bar of the scale widget
- \param painter Painter
- \param rect Bounding rectangle for the color bar
- \sa setColorBarEnabled()
- */
- void QwtScaleWidget::drawColorBar( QPainter *painter, const QRectF& rect ) const
- {
- if ( !d_data->colorBar.interval.isValid() )
- return;
- const QwtScaleDraw* sd = d_data->scaleDraw;
- QwtPainter::drawColorBar( painter, *d_data->colorBar.colorMap,
- d_data->colorBar.interval.normalized(), sd->map(),
- sd->orientation(), rect );
- }
- /*!
- Rotate and paint a title according to its position into a given rectangle.
- \param painter Painter
- \param align Alignment
- \param rect Bounding rectangle
- */
- void QwtScaleWidget::drawTitle( QPainter *painter,
- QwtScaleDraw::Alignment align, const QRectF &rect ) const
- {
- QRectF r = rect;
- double angle;
- int flags = d_data->title.renderFlags() &
- ~( Qt::AlignTop | Qt::AlignBottom | Qt::AlignVCenter );
- switch ( align )
- {
- case QwtScaleDraw::LeftScale:
- angle = -90.0;
- flags |= Qt::AlignTop;
- r.setRect( r.left(), r.bottom(),
- r.height(), r.width() - d_data->titleOffset );
- break;
- case QwtScaleDraw::RightScale:
- angle = -90.0;
- flags |= Qt::AlignTop;
- r.setRect( r.left() + d_data->titleOffset, r.bottom(),
- r.height(), r.width() - d_data->titleOffset );
- break;
- case QwtScaleDraw::BottomScale:
- angle = 0.0;
- flags |= Qt::AlignBottom;
- r.setTop( r.top() + d_data->titleOffset );
- break;
- case QwtScaleDraw::TopScale:
- default:
- angle = 0.0;
- flags |= Qt::AlignTop;
- r.setBottom( r.bottom() - d_data->titleOffset );
- break;
- }
- if ( d_data->layoutFlags & TitleInverted )
- {
- if ( align == QwtScaleDraw::LeftScale
- || align == QwtScaleDraw::RightScale )
- {
- angle = -angle;
- r.setRect( r.x() + r.height(), r.y() - r.width(),
- r.width(), r.height() );
- }
- }
- painter->save();
- painter->setFont( font() );
- painter->setPen( palette().color( QPalette::Text ) );
- painter->translate( r.x(), r.y() );
- if ( angle != 0.0 )
- painter->rotate( angle );
- QwtText title = d_data->title;
- title.setRenderFlags( flags );
- title.draw( painter, QRect( 0, 0, r.width(), r.height() ) );
- painter->restore();
- }
- /*!
- \brief Notify a change of the scale
- This virtual function can be overloaded by derived
- classes. The default implementation updates the geometry
- and repaints the widget.
- */
- void QwtScaleWidget::scaleChange()
- {
- layoutScale();
- }
- /*!
- \return a size hint
- */
- QSize QwtScaleWidget::sizeHint() const
- {
- return minimumSizeHint();
- }
- /*!
- \return a minimum size hint
- */
- QSize QwtScaleWidget::minimumSizeHint() const
- {
- const Qt::Orientation o = d_data->scaleDraw->orientation();
- // Border Distance cannot be less than the scale borderDistHint
- // Note, the borderDistHint is already included in minHeight/minWidth
- int length = 0;
- int mbd1, mbd2;
- getBorderDistHint( mbd1, mbd2 );
- length += qMax( 0, d_data->borderDist[0] - mbd1 );
- length += qMax( 0, d_data->borderDist[1] - mbd2 );
- length += d_data->scaleDraw->minLength( font() );
- int dim = dimForLength( length, font() );
- if ( length < dim )
- {
- // compensate for long titles
- length = dim;
- dim = dimForLength( length, font() );
- }
- QSize size( length + 2, dim );
- if ( o == Qt::Vertical )
- size.transpose();
- return size;
- }
- /*!
- \brief Find the height of the title for a given width.
- \param width Width
- \return height Height
- */
- int QwtScaleWidget::titleHeightForWidth( int width ) const
- {
- return d_data->title.heightForWidth( width, font() );
- }
- /*!
- \brief Find the minimum dimension for a given length.
- dim is the height, length the width seen in
- direction of the title.
- \param length width for horizontal, height for vertical scales
- \param scaleFont Font of the scale
- \return height for horizontal, width for vertical scales
- */
- int QwtScaleWidget::dimForLength( int length, const QFont &scaleFont ) const
- {
- const int extent = qCeil( d_data->scaleDraw->extent( scaleFont ) );
- int dim = d_data->margin + extent + 1;
- if ( !d_data->title.isEmpty() )
- dim += titleHeightForWidth( length ) + d_data->spacing;
- if ( d_data->colorBar.isEnabled && d_data->colorBar.interval.isValid() )
- dim += d_data->colorBar.width + d_data->spacing;
- return dim;
- }
- /*!
- \brief Calculate a hint for the border distances.
- This member function calculates the distance
- of the scale's endpoints from the widget borders which
- is required for the mark labels to fit into the widget.
- The maximum of this distance an the minimum border distance
- is returned.
- \warning
- <ul> <li>The minimum border distance depends on the font.</ul>
- \sa setMinBorderDist(), getMinBorderDist(), setBorderDist()
- */
- void QwtScaleWidget::getBorderDistHint( int &start, int &end ) const
- {
- d_data->scaleDraw->getBorderDistHint( font(), start, end );
- if ( start < d_data->minBorderDist[0] )
- start = d_data->minBorderDist[0];
- if ( end < d_data->minBorderDist[1] )
- end = d_data->minBorderDist[1];
- }
- /*!
- Set a minimum value for the distances of the scale's endpoints from
- the widget borders. This is useful to avoid that the scales
- are "jumping", when the tick labels or their positions change
- often.
- \param start Minimum for the start border
- \param end Minimum for the end border
- \sa getMinBorderDist(), getBorderDistHint()
- */
- void QwtScaleWidget::setMinBorderDist( int start, int end )
- {
- d_data->minBorderDist[0] = start;
- d_data->minBorderDist[1] = end;
- }
- /*!
- Get the minimum value for the distances of the scale's endpoints from
- the widget borders.
- \sa setMinBorderDist(), getBorderDistHint()
- */
- void QwtScaleWidget::getMinBorderDist( int &start, int &end ) const
- {
- start = d_data->minBorderDist[0];
- end = d_data->minBorderDist[1];
- }
- /*!
- \brief Assign a scale division
- The scale division determines where to set the tick marks.
- \param transformation Transformation, needed to translate between
- scale and pixal values
- \param scaleDiv Scale Division
- \sa For more information about scale divisions, see QwtScaleDiv.
- */
- void QwtScaleWidget::setScaleDiv(
- QwtScaleTransformation *transformation,
- const QwtScaleDiv &scaleDiv )
- {
- QwtScaleDraw *sd = d_data->scaleDraw;
- if ( sd->scaleDiv() != scaleDiv ||
- sd->map().transformation()->type() != transformation->type() )
- {
- sd->setTransformation( transformation );
- sd->setScaleDiv( scaleDiv );
- layoutScale();
- Q_EMIT scaleDivChanged();
- }
- else
- {
- /*
- The transformation doesn't anything different as the
- previous one. So we better throw it silently away instead of
- initiating heavy updates
- */
- delete transformation;
- }
- }
- /*!
- En/disable a color bar associated to the scale
- \sa isColorBarEnabled(), setColorBarWidth()
- */
- void QwtScaleWidget::setColorBarEnabled( bool on )
- {
- if ( on != d_data->colorBar.isEnabled )
- {
- d_data->colorBar.isEnabled = on;
- layoutScale();
- }
- }
- /*!
- \return true, when the color bar is enabled
- \sa setColorBarEnabled(), setColorBarWidth()
- */
- bool QwtScaleWidget::isColorBarEnabled() const
- {
- return d_data->colorBar.isEnabled;
- }
- /*!
- Set the width of the color bar
- \param width Width
- \sa colorBarWidth(), setColorBarEnabled()
- */
- void QwtScaleWidget::setColorBarWidth( int width )
- {
- if ( width != d_data->colorBar.width )
- {
- d_data->colorBar.width = width;
- if ( isColorBarEnabled() )
- layoutScale();
- }
- }
- /*!
- \return Width of the color bar
- \sa setColorBarEnabled(), setColorBarEnabled()
- */
- int QwtScaleWidget::colorBarWidth() const
- {
- return d_data->colorBar.width;
- }
- /*!
- \return Value interval for the color bar
- \sa setColorMap(), colorMap()
- */
- QwtInterval QwtScaleWidget::colorBarInterval() const
- {
- return d_data->colorBar.interval;
- }
- /*!
- Set the color map and value interval, that are used for displaying
- the color bar.
- \param interval Value interval
- \param colorMap Color map
- \sa colorMap(), colorBarInterval()
- */
- void QwtScaleWidget::setColorMap(
- const QwtInterval &interval, QwtColorMap *colorMap )
- {
- d_data->colorBar.interval = interval;
- if ( colorMap != d_data->colorBar.colorMap )
- {
- delete d_data->colorBar.colorMap;
- d_data->colorBar.colorMap = colorMap;
- }
- if ( isColorBarEnabled() )
- layoutScale();
- }
- /*!
- \return Color map
- \sa setColorMap(), colorBarInterval()
- */
- const QwtColorMap *QwtScaleWidget::colorMap() const
- {
- return d_data->colorBar.colorMap;
- }
|