]> git.sesse.net Git - kdenlive/blob - src/titlewidget.h
1fcc6de504a65ec5759acf7e161779ce95f28bd6
[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
49 protected:
50     virtual void resizeEvent(QResizeEvent * event);
51
52 private:
53     QGraphicsPolygonItem *startViewport, *endViewport;
54     GraphicsSceneRectMove *m_scene;
55     void initViewports();
56     QMap<QGraphicsItem*, Transform > transformations;
57     TitleDocument m_titledocument;
58     QGraphicsRectItem *m_frameBorder;
59     QGraphicsPixmapItem *m_frameImage;
60     int m_frameWidth;
61     int m_frameHeight;
62     Render *m_render;
63     int m_count;
64     QAction *m_buttonRect;
65     QAction *m_buttonText;
66     QAction *m_buttonImage;
67     QAction *m_buttonCursor;
68     QAction *m_buttonSave;
69     QAction *m_buttonLoad;
70     /** project path for storing title clips */
71     QString m_projectPath;
72
73 public slots:
74     void slotNewText(QGraphicsTextItem *tt);
75     void slotNewRect(QGraphicsRectItem *rect);
76     void slotChangeBackground();
77     void selectionChanged();
78     void textChanged();
79     void rectChanged();
80     void fontBold();
81     void setupViewports();
82     void zIndexChanged(int);
83     void itemScaled(int);
84     void itemRotate(int);
85     void itemHCenter();
86     void itemVCenter();
87     void saveTitle(KUrl url = KUrl());
88     void loadTitle();
89     QPixmap renderedPixmap();
90
91 private slots:
92     void slotAdjustSelectedItem();
93     void slotUpdateZoom(int pos);
94     void slotZoom(bool up);
95     void slotAdjustZoom();
96     void slotZoomOneToOne();
97     void slotUpdateText();
98     void displayBackgroundFrame();
99     void setCurrentItem(QGraphicsItem *item);
100     void slotTextTool();
101     void slotRectTool();
102     void slotSelectTool();
103     void slotImageTool();
104 };
105
106
107 #endif