]> git.sesse.net Git - kdenlive/blob - src/parameterplotter.h
multiparamter 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
26         private:
27                 KPlotPoint* movepoint;
28                 QPoint oldmousepoint;
29                 int maxx,maxy;
30                 QStringList parameterNameList;
31                 void createParametersNew();
32                 QList<KPlotObject*> plotobjects;
33                 QList<QColor> colors;
34         protected:
35                 void mouseMoveEvent ( QMouseEvent * event );
36                 void mousePressEvent ( QMouseEvent * event );
37         public slots:
38                 void setPointLists(const QList< QPair<QString, QMap<int,QVariant> > >&,int,int);
39         signals:
40                 void parameterChanged(QList< QPair<QString, QMap<int,QVariant> > > );
41         
42 };