]> git.sesse.net Git - kdenlive/blob - src/parameterplotter.h
update in effectstack for setup
[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                 bool isMoveX();
29                 bool isMoveY();
30                 bool isMoveTimeline();
31         private:
32                 KPlotPoint* movepoint;
33                 bool m_moveX,m_moveY,m_moveTimeline;
34                 QPoint oldmousepoint;
35                 int maxx,maxy;
36                 QStringList parameterNameList;
37                 void createParametersNew();
38                 QList<KPlotObject*> plotobjects;
39                 QList<QColor> colors;
40         protected:
41                 void mouseMoveEvent ( QMouseEvent * event );
42                 void mousePressEvent ( QMouseEvent * event );
43         public slots:
44                 void setPointLists(const QList< QPair<QString, QMap<int,QVariant> > >&,int,int);
45         signals:
46                 void parameterChanged(QList< QPair<QString, QMap<int,QVariant> > > );
47         
48 };