Sophie

Sophie

distrib > Mandriva > cooker > i586 > by-pkgid > 76bdad05b5dca2a491582dbec0713d55 > files > 150

libqwt-devel-6.0.1-2.i586.rpm

#ifndef _PLOT_H_
#define _PLOT_H_ 1

#include <qwt_plot.h>

class RectItem;
class QwtInterval;

class Plot: public QwtPlot
{
    Q_OBJECT

public:
    Plot(QWidget *parent, const QwtInterval &);
    virtual void updateLayout();

    void setRectOfInterest(const QRectF &);

Q_SIGNALS:
    void resized(double xRatio, double yRatio);

private:
    RectItem *d_rectOfInterest;
};

#endif