]> git.sesse.net Git - kdenlive/blob - src/titlewidget.h
55392513c2d563b17a3166ad9fef77490d1d9531
[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(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
71 public slots:
72     void slotNewText(QGraphicsTextItem *tt);
73     void slotNewRect(QGraphicsRectItem *rect);
74     void slotChangeBackground();
75     void selectionChanged();
76     void textChanged();
77     void rectChanged();
78     void fontBold();
79     void setupViewports();
80     void zIndexChanged(int);
81     void svgSelected(const KUrl&);
82     void itemScaled(int);
83     void itemRotate(int);
84     void saveTitle();
85     void loadTitle();
86     QPixmap renderedPixmap();
87
88 private slots:
89     void slotAdjustSelectedItem();
90     void slotUpdateZoom(int pos);
91     void slotZoom(bool up);
92     void slotAdjustZoom();
93     void slotZoomOneToOne();
94     void slotUpdateText();
95     void displayBackgroundFrame();
96     void setCurrentItem(QGraphicsItem *item);
97     void slotTextTool();
98     void slotRectTool();
99     void slotSelectTool();
100 };
101
102
103 #endif