Skip to content
qwt_abstract_scale.h 2.84 KiB
Newer Older
pixhawk's avatar
pixhawk committed
/* -*- mode: C++ ; c-file-style: "stroustrup" -*- *****************************
 * Qwt Widget Library
 * Copyright (C) 1997   Josef Wilgen
 * Copyright (C) 2002   Uwe Rathmann
pixhawk's avatar
pixhawk committed
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the Qwt License, Version 1.0
 *****************************************************************************/

#ifndef QWT_ABSTRACT_SCALE_H
#define QWT_ABSTRACT_SCALE_H

#include "qwt_global.h"
Bryant's avatar
Bryant committed
#include <qwidget.h>
pixhawk's avatar
pixhawk committed

class QwtScaleEngine;
class QwtAbstractScaleDraw;
class QwtScaleDiv;
class QwtScaleMap;
Bryant's avatar
Bryant committed
class QwtInterval;
pixhawk's avatar
pixhawk committed

/*!
Bryant's avatar
Bryant committed
  \brief An abstract base class for widgets having a scale
pixhawk's avatar
pixhawk committed

Bryant's avatar
Bryant committed
  The scale of an QwtAbstractScale is determined by a QwtScaleDiv
  definition, that contains the boundaries and the ticks of the scale.
  The scale is painted using a QwtScaleDraw object.

  The scale division might be assigned explicitly - but usually
  it is calculated from the boundaries using a QwtScaleEngine. 

  The scale engine also decides the type of transformation of the scale 
  ( linear, logarithmic ... ).
pixhawk's avatar
pixhawk committed
*/

Bryant's avatar
Bryant committed
class QWT_EXPORT QwtAbstractScale: public QWidget
pixhawk's avatar
pixhawk committed
{
Bryant's avatar
Bryant committed
    Q_OBJECT

    Q_PROPERTY( double lowerBound READ lowerBound WRITE setLowerBound )
    Q_PROPERTY( double upperBound READ upperBound WRITE setUpperBound )

    Q_PROPERTY( int scaleMaxMajor READ scaleMaxMajor WRITE setScaleMaxMajor )
    Q_PROPERTY( int scaleMaxMinor READ scaleMaxMinor WRITE setScaleMaxMinor )

    Q_PROPERTY( double scaleStepSize READ scaleStepSize WRITE setScaleStepSize )

pixhawk's avatar
pixhawk committed
public:
Bryant's avatar
Bryant committed
    QwtAbstractScale( QWidget *parent = NULL );
pixhawk's avatar
pixhawk committed
    virtual ~QwtAbstractScale();
Bryant's avatar
Bryant committed
    void setScale( double lowerBound, double upperBound );
    void setScale( const QwtInterval & );
    void setScale( const QwtScaleDiv & );

    const QwtScaleDiv& scaleDiv() const;
pixhawk's avatar
pixhawk committed

Bryant's avatar
Bryant committed
    void setLowerBound( double value );
    double lowerBound() const;
pixhawk's avatar
pixhawk committed

Bryant's avatar
Bryant committed
    void setUpperBound( double value );
    double upperBound() const;

    void setScaleStepSize( double stepSize );
    double scaleStepSize() const;

    void setScaleMaxMajor( int ticks );
pixhawk's avatar
pixhawk committed
    int scaleMaxMinor() const;

Bryant's avatar
Bryant committed
    void setScaleMaxMinor( int ticks );
    int scaleMaxMajor() const;
pixhawk's avatar
pixhawk committed

Bryant's avatar
Bryant committed
    void setScaleEngine( QwtScaleEngine * );
pixhawk's avatar
pixhawk committed
    const QwtScaleEngine *scaleEngine() const;
    QwtScaleEngine *scaleEngine();

Bryant's avatar
Bryant committed
    int transform( double ) const;
    double invTransform( int ) const;

    bool isInverted() const;

    double minimum() const;
    double maximum() const;

pixhawk's avatar
pixhawk committed
    const QwtScaleMap &scaleMap() const;
pixhawk's avatar
pixhawk committed
protected:
Bryant's avatar
Bryant committed
    void rescale( double lowerBound, 
        double upperBound, double stepSize );

    void setAbstractScaleDraw( QwtAbstractScaleDraw * );
pixhawk's avatar
pixhawk committed

    const QwtAbstractScaleDraw *abstractScaleDraw() const;
    QwtAbstractScaleDraw *abstractScaleDraw();

    virtual void scaleChange();

private:
    void updateScaleDraw();

    class PrivateData;
    PrivateData *d_data;
};

#endif