]> git.sesse.net Git - kdenlive/blob - src/beziercurve/cubicbezierspline.h
Bezier Spline Editor: if zoomed out draw borders indicating the standard range
[kdenlive] / src / beziercurve / cubicbezierspline.h
1 /***************************************************************************
2  *   Copyright (C) 2010 by Till Theato (root@ttill.de)                     *
3  *   This file is part of Kdenlive (www.kdenlive.org).                     *
4  *                                                                         *
5  *   Kdenlive is free software: you can redistribute it and/or modify      *
6  *   it under the terms of the GNU General Public License as published by  *
7  *   the Free Software Foundation, either version 2 of the License, or     *
8  *   (at your option) any later version.                                   *
9  *                                                                         *
10  *   Kdenlive is distributed in the hope that it will be useful,           *
11  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
12  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
13  *   GNU General Public License for more details.                          *
14  *                                                                         *
15  *   You should have received a copy of the GNU General Public License     *
16  *   along with Kdenlive.  If not, see <http://www.gnu.org/licenses/>.     *
17  ***************************************************************************/
18
19 #ifndef CUBICBEZIERSPLINE_H
20 #define CUBICBEZIERSPLINE_H
21
22
23 #include <QtCore>
24
25 class BPoint
26 {
27 public:
28     QPointF h1;     // handle 1
29     QPointF p;      // point
30     QPointF h2;     // handle 2
31
32     BPoint() { p = QPointF(-1,-1); } // makes it illegal -> cannot be equal any point
33     bool operator==(const BPoint &point) const { return point.h1 == h1 && point.p == p && point.h2 == h2; }
34 };
35
36 class CubicBezierSpline : public QObject
37 {
38     Q_OBJECT
39
40 public:
41     CubicBezierSpline(QObject* parent = 0);
42     CubicBezierSpline(const CubicBezierSpline &spline, QObject* parent = 0);
43     CubicBezierSpline& operator=(const CubicBezierSpline &spline);
44
45     void fromString(const QString &spline);
46     QString toString() const;
47
48     QList <BPoint> points();
49     qreal value(qreal x, bool cont = false);
50
51     int setPoint(int ix, const BPoint &point);
52     int addPoint(const BPoint &point);
53     void removePoint(int ix);
54     void setPrecision(int pre);
55     int getPrecision();
56
57 private:
58     QPointF point(double t, const QList<QPointF> &points);
59     void validatePoints();
60     void keepSorted();
61     void update();
62
63     QList <BPoint> m_points;
64     QMap <double, double> m_spline;
65     QMap <double, double>::const_iterator m_i;
66     bool m_validSpline;
67     int m_precision;
68     
69 };
70
71 #endif