You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
115 lines
0 B
115 lines
0 B
15 years ago
|
/* -*- mode: C++ ; c-file-style: "stroustrup" -*- *****************************
|
||
|
* Qwt Widget Library
|
||
|
* Copyright (C) 1997 Josef Wilgen
|
||
|
* Copyright (C) 2002 Uwe Rathmann
|
||
14 years ago
|
*
|
||
15 years ago
|
* This library is free software; you can redistribute it and/or
|
||
|
* modify it under the terms of the Qwt License, Version 1.0
|
||
|
*****************************************************************************/
|
||
|
|
||
|
// vim: expandtab
|
||
|
|
||
|
#ifndef QWT_PLOT_PICKER_H
|
||
|
#define QWT_PLOT_PICKER_H
|
||
|
|
||
|
#include "qwt_double_rect.h"
|
||
|
#include "qwt_plot_canvas.h"
|
||
|
#include "qwt_picker.h"
|
||
|
|
||
|
class QwtPlot;
|
||
|
|
||
|
/*!
|
||
|
\brief QwtPlotPicker provides selections on a plot canvas
|
||
|
|
||
|
QwtPlotPicker is a QwtPicker tailored for selections on
|
||
|
a plot canvas. It is set to a x-Axis and y-Axis and
|
||
|
translates all pixel coordinates into this coodinate system.
|
||
|
*/
|
||
|
|
||
|
class QWT_EXPORT QwtPlotPicker: public QwtPicker
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
explicit QwtPlotPicker(QwtPlotCanvas *);
|
||
|
|
||
|
explicit QwtPlotPicker(int xAxis, int yAxis,
|
||
14 years ago
|
QwtPlotCanvas *);
|
||
15 years ago
|
|
||
14 years ago
|
explicit QwtPlotPicker(int xAxis, int yAxis, int selectionFlags,
|
||
|
RubberBand rubberBand, DisplayMode trackerMode,
|
||
|
QwtPlotCanvas *);
|
||
15 years ago
|
|
||
|
virtual void setAxis(int xAxis, int yAxis);
|
||
|
|
||
|
int xAxis() const;
|
||
|
int yAxis() const;
|
||
|
|
||
|
QwtPlot *plot();
|
||
|
const QwtPlot *plot() const;
|
||
14 years ago
|
|
||
15 years ago
|
QwtPlotCanvas *canvas();
|
||
|
const QwtPlotCanvas *canvas() const;
|
||
|
|
||
|
signals:
|
||
|
|
||
|
/*!
|
||
|
A signal emitted in case of selectionFlags() & PointSelection.
|
||
|
\param pos Selected point
|
||
|
*/
|
||
|
void selected(const QwtDoublePoint &pos);
|
||
|
|
||
|
/*!
|
||
|
A signal emitted in case of selectionFlags() & RectSelection.
|
||
|
\param rect Selected rectangle
|
||
|
*/
|
||
|
void selected(const QwtDoubleRect &rect);
|
||
|
|
||
|
/*!
|
||
|
A signal emitting the selected points,
|
||
|
at the end of a selection.
|
||
|
|
||
|
\param pa Selected points
|
||
|
*/
|
||
|
void selected(const QwtArray<QwtDoublePoint> &pa);
|
||
|
|
||
|
/*!
|
||
|
A signal emitted when a point has been appended to the selection
|
||
|
|
||
|
\param pos Position of the appended point.
|
||
|
\sa append(). moved()
|
||
|
*/
|
||
|
void appended(const QwtDoublePoint &pos);
|
||
|
|
||
|
/*!
|
||
|
A signal emitted whenever the last appended point of the
|
||
|
selection has been moved.
|
||
|
|
||
|
\param pos Position of the moved last point of the selection.
|
||
14 years ago
|
\sa move(), appended()
|
||
15 years ago
|
*/
|
||
|
void moved(const QwtDoublePoint &pos);
|
||
|
|
||
|
protected:
|
||
|
QwtDoubleRect scaleRect() const;
|
||
|
|
||
|
QwtDoubleRect invTransform(const QRect &) const;
|
||
|
QRect transform(const QwtDoubleRect &) const;
|
||
|
|
||
|
QwtDoublePoint invTransform(const QPoint &) const;
|
||
|
QPoint transform(const QwtDoublePoint &) const;
|
||
|
|
||
|
virtual QwtText trackerText(const QPoint &) const;
|
||
|
virtual QwtText trackerText(const QwtDoublePoint &) const;
|
||
|
|
||
|
virtual void move(const QPoint &);
|
||
|
virtual void append(const QPoint &);
|
||
|
virtual bool end(bool ok = true);
|
||
|
|
||
|
private:
|
||
|
int d_xAxis;
|
||
|
int d_yAxis;
|
||
|
};
|
||
14 years ago
|
|
||
15 years ago
|
#endif
|