forked from dimv36/QCustomPlot-PyQt5
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathplottable1d.sip
56 lines (52 loc) · 2.06 KB
/
plottable1d.sip
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
/** PyQt5 binding for QCustomPlot v2.0.0
*
* Authors: Dmitry Voronin, Giuseppe Corbelli
* License: MIT
*
* QCustomPlot author: Emanuel Eichhammer
* QCustomPlot Website/Contact: http://www.qcustomplot.com
*/
class QCPPlottableInterface1D /Abstract/
{
%TypeHeaderCode
#include <QCustomPlot/src/plottable1d.h>
%End
public:
virtual ~QCPPlottableInterface1D();
// introduced pure virtual methods:
virtual int dataCount() const = 0;
virtual double dataMainKey(int index) const = 0;
virtual double dataSortKey(int index) const = 0;
virtual double dataMainValue(int index) const = 0;
virtual QCPRange dataValueRange(int index) const = 0;
virtual QPointF dataPixelPosition(int index) const = 0;
virtual bool sortKeyIsMainKey() const = 0;
virtual QCPDataSelection selectTestRect(const QRectF &rect, bool onlySelectable) const = 0;
virtual int findBegin(double sortKey, bool expandedRange=true) const = 0;
virtual int findEnd(double sortKey, bool expandedRange=true) const = 0;
};
template <DataType>
class QCPAbstractPlottable1D : public QCPAbstractPlottable, public QCPPlottableInterface1D /Abstract/
{
%TypeHeaderCode
#include <QCustomPlot/src/qcp.h>
#include "helper.h"
%End
public:
QCPAbstractPlottable1D(QCPAxis *keyAxis, QCPAxis *valueAxis);
virtual ~QCPAbstractPlottable1D();
// virtual methods of 1d plottable interface:
virtual int dataCount() const;
virtual double dataMainKey(int index) const;
virtual double dataSortKey(int index) const;
virtual double dataMainValue(int index) const;
virtual QCPRange dataValueRange(int index) const;
virtual QPointF dataPixelPosition(int index) const;
virtual bool sortKeyIsMainKey() const;
virtual QCPDataSelection selectTestRect(const QRectF &rect, bool onlySelectable) const;
virtual int findBegin(double sortKey, bool expandedRange=true) const;
virtual int findEnd(double sortKey, bool expandedRange=true) const;
// reimplemented virtual methods:
virtual double selectTest(const QPointF &pos, bool onlySelectable, QVariant *details=0) const;
virtual QCPPlottableInterface1D *interface1D();
};