]> git.sesse.net Git - kdenlive/blob - src/titlewidget.h
re-indented :-/
[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 "ui_titlewidget_ui.h"
23 #include "titledocument.h"
24 #include "renderer.h"
25 #include "graphicsscenerectmove.h"
26 #include "unicodedialog.h"
27
28 #include <QMap>
29
30
31 class Transform
32 {
33 public:
34     Transform() {
35         scalex = 1.0;
36         scaley = 1.0;
37         rotate = 0.0;
38     }
39     double scalex, scaley;
40     double rotate;
41 };
42
43 class TitleWidget : public QDialog , public Ui::TitleWidget_UI
44 {
45     Q_OBJECT
46
47 public:
48     /** \brief Constructor
49      * \param projectPath Path to use when user requests loading or saving of titles as .kdenlivetitle documents */
50     TitleWidget(KUrl url, QString projectTitlePath, Render *render, QWidget *parent = 0);
51     virtual ~TitleWidget();
52     QDomDocument xml();
53     void setXml(QDomDocument doc);
54
55     /** \brief Find first available filename of the form titleXXX.png in projectUrl + "/titles/" directory
56     * \param projectUrl Url to directory of project.
57      * \returns A list, with the name in the form of "/path/to/titles/titleXXX" as the first element, the extension
58      * ".png" as the second element.
59      *
60      * The path "/titles/" is appended to projectUrl to locate the actual directory that contains the title pngs. */
61     static QStringList getFreeTitleInfo(const KUrl &projectUrl, bool isClone = false);
62
63     /** \brief Build a filename from a projectUrl and a titleName
64      * \param projectUrl Url to directory of project.
65      * \param titleName Name of title, on the form "titleXXX"
66      *
67      * The path "/titles/" is appended to projectUrl to build the directoryname, then .pgn is appended to
68      * get the filename. It is not checked that the title png actually exists, only the name is build and
69      * returned. */
70     static QString getTitleResourceFromName(const KUrl &projectUrl, const QString &titleName);
71
72     /** \brief returns the size of the rendered pixmap
73     *
74     */
75     const QRect renderedRect();
76
77 protected:
78     virtual void resizeEvent(QResizeEvent * event);
79
80 private:
81     QGraphicsPolygonItem *m_startViewport, *m_endViewport;
82     GraphicsSceneRectMove *m_scene;
83     void initViewports();
84     QMap<QGraphicsItem*, Transform > m_transformations;
85     TitleDocument m_titledocument;
86     QGraphicsRectItem *m_frameBorder;
87     QGraphicsPixmapItem *m_frameImage;
88     int m_frameWidth;
89     int m_frameHeight;
90     Render *m_render;
91     int m_count;
92     QAction *m_buttonRect;
93     QAction *m_buttonText;
94     QAction *m_buttonImage;
95     QAction *m_buttonCursor;
96     QAction *m_buttonSave;
97     QAction *m_buttonLoad;
98     /** \brief Dialog for entering unicode in text fields */
99     UnicodeDialog *m_unicodeDialog;
100     /** project path for storing title clips */
101     QString m_projectTitlePath;
102     /** \brief Store the current choices of font, background and rect values */
103     void writeChoices();
104     /** \brief Read the last stored choices into the dialog */
105     void readChoices();
106     /** \brief Update the displayed X/Y coordinates */
107     void updateCoordinates(QGraphicsItem *i);
108     void updateDimension(QGraphicsItem *i);
109     /** \brief Update the item's position */
110     void updatePosition(QGraphicsItem *i);
111
112     void textChanged(QGraphicsTextItem *i);
113     void updateAxisButtons(QGraphicsItem *i);
114
115     void updateTextOriginX();
116     void updateTextOriginY();
117
118     /** \brief Enables the toolbars suiting to toolType */
119     void enableToolbars(TITLETOOL toolType);
120     /** \brief Shows the toolbars suiting to toolType */
121     void showToolbars(TITLETOOL toolType);
122
123 public slots:
124     void slotNewText(QGraphicsTextItem *tt);
125     void slotNewRect(QGraphicsRectItem *rect);
126     void slotChangeBackground();
127     void selectionChanged();
128     void rectChanged();
129     void setupViewports();
130     void zIndexChanged(int);
131     void itemScaled(int);
132     void itemRotate(int);
133     void itemHCenter();
134     void itemVCenter();
135     void saveTitle(KUrl url = KUrl());
136     void loadTitle();
137     QImage renderedPixmap();
138
139 private slots:
140     void slotAdjustSelectedItem();
141
142     /**
143      * \brief Switches the origin of the x axis between left and right
144      * border of the frame (offset from left/right frame border)
145      * \param originLeft Take left border?
146      *
147      * Called when the origin of the x coorinate has been changed. The
148      * x origin will either be at the left or at the right side of the frame.
149      *
150      * When the origin of the x axis is at the left side, the user can
151      * enter the distance between an element's left border and the left
152      * side of the frame.
153      *
154      * When on the right, the distance from the right border of the
155      * frame to the right border of the element can be entered. This
156      * would result in negative values as long as the element's right
157      * border is at the left of the frame's right border. As that is
158      * usually the case, I additionally invert the x axis.
159      *
160      * Default value is left.
161      *
162      * |----l----->|#######|----r--->|
163      * |           |---w-->|         |
164      * |           |#######|         |
165      * |                             |
166      * |----------m_frameWidth------>|
167      * |                             |
168      *
169      * Left selected: Value = l
170      * Right selected: Value = r
171      *
172      * To calculate between the two coorindate systems:
173      * l = m_frameWidth - w - r
174      * r = m_frameWidth - w - l
175      *
176      */
177     void slotOriginXClicked();
178     /** \brief Same as slotOriginYChanged, but for the Y axis; default is top.
179      *  \param originTop Take top border? */
180     void slotOriginYClicked();
181
182     /** \brief Update coorinates of text fields if necessary and text has changed */
183     void slotChanged();
184
185     void slotZoom(bool up);
186     void slotUpdateZoom(int pos);
187     void slotAdjustZoom();
188     void slotZoomOneToOne();
189
190     void slotUpdateText();
191     void slotInsertUnicode();
192     void slotInsertUnicodeString(QString);
193
194     void displayBackgroundFrame();
195
196     void setCurrentItem(QGraphicsItem *item);
197
198     void slotTextTool();
199     void slotRectTool();
200     void slotSelectTool();
201     void slotImageTool();
202
203
204     /** \brief Called when accepted, stores the user selections for next time use */
205     void slotAccepted();
206 };
207
208
209 #endif