]> git.sesse.net Git - kdenlive/blob - src/geometryval.h
first classes for geometry widget
[kdenlive] / src / geometryval.h
1 /***************************************************************************
2                           geomeytrval.h  -  description
3                              -------------------
4     begin                : 03 Aug 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 #ifndef GEOMETRYVAL_H
19 #define GEOMETRYVAL_H
20
21
22 #include "ui_geometryval_ui.h"
23 #include <QWidget>
24 #include <QDomElement>
25
26 //class QGraphicsScene;
27 class GraphicsSceneRectMove;
28 class Geometryval : public QWidget {
29 public:
30     Geometryval(QWidget* parent = 0);
31     QDomElement getParamDesc();
32 private:
33     Ui::Geometryval ui;
34     //QGraphicsScene* scene;
35     GraphicsSceneRectMove *scene;
36 public slots:
37     void setupParam(const QDomElement&, const QString& paramName, int, int);
38 signals:
39     void parameterChanged();
40 };
41
42 #endif