]> git.sesse.net Git - kdenlive/blob - src/parameterplotter.h
new points can be simple added
[kdenlive] / src / parameterplotter.h
1 /***************************************************************************
2                           parameterplotter.h  -  description
3                              -------------------
4     begin                : Feb 15 2008
5     copyright            : (C) 2008 by Marco Gittler
6     email                : g.marco@freenet.de
7  ***************************************************************************/
8
9 /***************************************************************************
10  *                                                                         *
11  *   This program is free software; you can redistribute it and/or modify  *
12  *   it under the terms of the GNU General Public License as published by  *
13  *   the Free Software Foundation; either version 2 of the License, or     *
14  *   (at your option) any later version.                                   *
15  *                                                                         *
16  ***************************************************************************/
17
18 #include <KPlotWidget>
19
20 class ParameterPlotter : public KPlotWidget {
21         Q_OBJECT
22         public:
23                 ParameterPlotter (QWidget *parent=0);
24                 virtual ~ParameterPlotter(){}
25                 void setMoveX(bool);
26                 void setMoveY(bool);
27                 void setMoveTimeLine(bool);
28                 void setNewPoints(bool);
29                 bool isMoveX();
30                 bool isMoveY();
31                 bool isMoveTimeline();
32                 bool isNewPoints();
33                 void replot(const QString& name="");
34         private:
35                 KPlotPoint* movepoint;
36                 int activeIndexPlot;
37                 bool m_moveX,m_moveY,m_moveTimeline,m_newPoints;
38                 QPoint oldmousepoint;
39                 int maxx,maxy;
40                 QStringList parameterNameList;
41                 void createParametersNew();
42                 QList<KPlotObject*> plotobjects;
43                 QList<QColor> colors;
44                 
45         protected:
46                 void mouseMoveEvent ( QMouseEvent * event );
47                 void mousePressEvent ( QMouseEvent * event );
48         public slots:
49                 void setPointLists(const QList< QPair<QString, QMap<int,QVariant> > >&,int,int);
50         signals:
51                 void parameterChanged(QList< QPair<QString, QMap<int,QVariant> > > );
52                 void updateFrame(int);
53         
54 };