]> git.sesse.net Git - kdenlive/blob - src/beziercurve/beziersplineeditor.h
Bézier spline:
[kdenlive] / src / beziercurve / beziersplineeditor.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 BEZIERSPLINEEDITOR_H
20 #define BEZIERSPLINEEDITOR_H
21
22 #include "cubicbezierspline.h"
23
24 #include <QtCore>
25 #include <QWidget>
26
27 class BezierSplineEditor : public QWidget
28 {
29     Q_OBJECT
30
31 public:
32     BezierSplineEditor(QWidget* parent = 0);
33
34     CubicBezierSpline spline();
35     void setSpline(const CubicBezierSpline &spline);
36
37     BPoint getCurrentPoint();
38     void updateCurrentPoint(const BPoint &p);
39
40 protected:
41     //void keyPressEvent(QKeyEvent *event);
42     void paintEvent(QPaintEvent *event);
43     void mousePressEvent(QMouseEvent *event);
44     void mouseReleaseEvent(QMouseEvent * event);
45     void mouseMoveEvent(QMouseEvent * event);
46     void leaveEvent(QEvent *event);
47     void resizeEvent(QResizeEvent *event);
48
49 private:
50     CubicBezierSpline m_spline;
51     enum modes { ModeDrag, ModeNormal };
52     enum point_types { PTypeH1, PTypeP, PTypeH2 };
53     modes m_mode;
54     int m_currentPointIndex;
55     point_types m_currentPointType;
56     double m_grabOffsetX;
57     double m_grabOffsetY;
58     double m_grabOriginalX;
59     double m_grabOriginalY;
60     //QPointF m_draggedAwayPoint;
61     //int m_draggedAwayPointIndex;
62
63     //inline void drawGrid(QPainter &p, int width, int height);
64     int nearestPointInRange(QPointF p, int wWidth, int wHeight, point_types *sel);
65
66 signals:
67     void modified();
68     void currentPoint(const BPoint &p);
69 };
70
71 #endif