]> git.sesse.net Git - kdenlive/blob - src/parameterplotter.h
parameter adjustable
[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         void setPointLists(const QList< QPair<QString, QMap<int,QVariant> > >&,int,int);
25                 QList< QPair<QString, QMap<int,QVariant> > > getPointLists();
26         private:
27                 QList< QPair<QString, QMap<int,QVariant> > > pointlists;
28                 KPlotPoint* movepoint;
29                 KPlotObject *plot;
30                 QPoint oldmousepoint;
31         protected:
32                 void mouseMoveEvent ( QMouseEvent * event );
33                 void mousePressEvent ( QMouseEvent * event );   
34         
35 };