]> git.sesse.net Git - kdenlive/blob - src/titlewidget.h
correctly load / save text clips
[kdenlive] / src / titlewidget.h
1 /***************************************************************************
2                           titlewidget.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
18 #ifndef TITLEWIDGET_H
19 #define TITLEWIDGET_H
20
21
22 #include <QDialog>
23
24 #include <QMap>
25
26 #include "ui_titlewidget_ui.h"
27 #include "titledocument.h"
28 #include "renderer.h"
29 #include "graphicsscenerectmove.h"
30
31
32
33 class Transform {
34 public:
35     Transform() {
36         scalex = 1.0;
37         scaley = 1.0;
38         rotate = 0.0;
39     }
40     double scalex, scaley;
41     double rotate;
42 };
43
44 class TitleWidget : public QDialog , public Ui::TitleWidget_UI {
45     Q_OBJECT
46 public:
47     TitleWidget(KUrl url, QString projectPath, Render *render, QWidget *parent = 0);
48     QDomDocument xml();
49     void setXml(QDomDocument doc);
50
51 protected:
52     virtual void resizeEvent(QResizeEvent * event);
53
54 private:
55     QGraphicsPolygonItem *startViewport, *endViewport;
56     GraphicsSceneRectMove *m_scene;
57     void initViewports();
58     QMap<QGraphicsItem*, Transform > transformations;
59     TitleDocument m_titledocument;
60     QGraphicsRectItem *m_frameBorder;
61     QGraphicsPixmapItem *m_frameImage;
62     int m_frameWidth;
63     int m_frameHeight;
64     Render *m_render;
65     int m_count;
66     QAction *m_buttonRect;
67     QAction *m_buttonText;
68     QAction *m_buttonImage;
69     QAction *m_buttonCursor;
70     QAction *m_buttonSave;
71     QAction *m_buttonLoad;
72     /** project path for storing title clips */
73     QString m_projectPath;
74
75 public slots:
76     void slotNewText(QGraphicsTextItem *tt);
77     void slotNewRect(QGraphicsRectItem *rect);
78     void slotChangeBackground();
79     void selectionChanged();
80     void textChanged();
81     void rectChanged();
82     void fontBold();
83     void setupViewports();
84     void zIndexChanged(int);
85     void itemScaled(int);
86     void itemRotate(int);
87     void itemHCenter();
88     void itemVCenter();
89     void saveTitle(KUrl url = KUrl());
90     void loadTitle();
91     QPixmap renderedPixmap();
92
93 private slots:
94     void slotAdjustSelectedItem();
95     void slotUpdateZoom(int pos);
96     void slotZoom(bool up);
97     void slotAdjustZoom();
98     void slotZoomOneToOne();
99     void slotUpdateText();
100     void displayBackgroundFrame();
101     void setCurrentItem(QGraphicsItem *item);
102     void slotTextTool();
103     void slotRectTool();
104     void slotSelectTool();
105     void slotImageTool();
106 };
107
108
109 #endif