]> git.sesse.net Git - kdenlive/blob - src/titledocument.h
Fix opening of title with profile different than current one
[kdenlive] / src / titledocument.h
1 /***************************************************************************
2                           titledocument.h  -  description
3                              -------------------
4     begin                : Feb 28 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 #ifndef TITLEDOCUMENT_H
18 #define TITLEDOCUMENT_H
19
20 #include <QDomDocument>
21
22 #include <KUrl>
23
24 class QGraphicsScene;
25 class QGraphicsPolygonItem;
26
27 class TitleDocument
28 {
29
30 public:
31     TitleDocument();
32     void setScene(QGraphicsScene* scene, int width, int height);
33     bool saveDocument(const KUrl& url, QGraphicsPolygonItem* startv, QGraphicsPolygonItem* endv, double out);
34     int loadDocument(const KUrl& url, QGraphicsPolygonItem* startv, QGraphicsPolygonItem* endv, double *out);
35     QDomDocument xml(QGraphicsPolygonItem* startv, QGraphicsPolygonItem* endv);
36     int loadFromXml(QDomDocument doc, QGraphicsPolygonItem* startv, QGraphicsPolygonItem* endv, double *out);
37     /** \brief Get the background color (incl. alpha) from the document, if possibly
38      * \returns The background color of the document, inclusive alpha. If none found, returns (0,0,0,0) */
39     QColor getBackgroundColor();
40     int frameWidth() const;
41     int frameHeight() const;
42
43     enum ItemOrigin {OriginXLeft = 0, OriginYTop = 1};
44     enum AxisPosition {AxisDefault = 0, AxisInverted = 1};
45
46 private:
47     QGraphicsScene* m_scene;
48     int m_width;
49     int m_height;
50     QString colorToString(const QColor&);
51     QString rectFToString(const QRectF&);
52     QRectF stringToRect(const QString &);
53     QColor stringToColor(const QString &);
54     QTransform stringToTransform(const QString &);
55 };
56
57 #endif
58
59