]> git.sesse.net Git - kdenlive/blob - src/titlewidget.h
r6477@lapL: simon | 2010-06-02 17:42:57 +0200
[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 #include "ui_titlewidget_ui.h"
22 #include "titledocument.h"
23 #include "renderer.h"
24 #include "graphicsscenerectmove.h"
25 #include "unicodedialog.h"
26 #include "timecode.h"
27
28 #include <QMap>
29 #include <QSignalMapper>
30
31 class TitleTemplate
32 {
33 public:
34     QString file;
35     QString name;
36     QIcon icon;
37 };
38
39 class Transform
40 {
41 public:
42     Transform() {
43         scalex = 1.0;
44         scaley = 1.0;
45         rotatex = 0.0;
46         rotatey = 0.0;
47         rotatez = 0.0;
48     }
49     double scalex, scaley;
50     double rotatex, rotatey, rotatez;
51 };
52
53
54 class TitleWidget : public QDialog , public Ui::TitleWidget_UI
55 {
56     Q_OBJECT
57
58 public:
59
60     /** @brief Draws the dialog and loads a title document (if any).
61      * @param url title document to load
62      * @param tc timecode of the project
63      * @param projectPath default path to save to or load from title documents
64      * @param render project renderer
65      * @param parent (optional) parent widget */
66     TitleWidget(KUrl url, Timecode tc, QString projectTitlePath, Render *render, QWidget *parent = 0);
67     virtual ~TitleWidget();
68     QDomDocument xml();
69     void setXml(QDomDocument doc);
70
71     /** @brief Finds the first available file name for a title document.
72      * @deprecated With the titler module there's no need to save titles as images.
73      * @param projectUrl project directory
74      * @param isClone (optional) if true, the file name will be cloneXXX.png
75      * @return list with title name (Title XXX or Clone XXX) and file name
76      *
77      * The path "/titles/" is appended to projectUrl, and the format of the file name is (title|clone)XXX.png. */
78     static QStringList getFreeTitleInfo(const KUrl &projectUrl, bool isClone = false);
79
80     /** @brief Checks for the images referenced by a title clip.
81      * @param xml XML data representing the title
82      * @return list of the image files */
83     static QStringList extractImageList(QString xml);
84
85     /** @brief Checks for the fonts referenced by a title clip.
86      * @param xml XML data representing the title
87      * @return list of the fonts */
88     static QStringList extractFontList(QString xml);
89
90     /** @brief Builds a file name for a title document.
91      * @deprecated With the titler module there's no need to save titles as images.
92      * @param projectUrl project directory
93      * @param titleName name of title, in the form titleXXX
94      * @return file name composed with the given arguments
95      *
96      * The path "/titles/" is appended to projectUrl, and .png is appended to
97      * get the file name. There is no check for the existence of the file. */
98     static QString getTitleResourceFromName(const KUrl &projectUrl, const QString &titleName);
99
100     /** @brief Returns clip out position. */
101     int outPoint() const;
102
103     /** @brief Retrieves a list of all available title templates. */
104     static void refreshTitleTemplates();
105
106 protected:
107     virtual void resizeEvent(QResizeEvent * event);
108
109 private:
110
111     /** @brief Rectangle describing the animation start viewport. */
112     QGraphicsRectItem *m_startViewport;
113
114     /** @brief Rectangle describing the animation end viewport. */
115     QGraphicsRectItem *m_endViewport;
116
117     /** @brief Scene for the titler. */
118     GraphicsSceneRectMove *m_scene;
119
120     /** @brief Initialises the animation properties (viewport size, etc.). */
121     void initAnimation();
122     QMap<QGraphicsItem*, Transform > m_transformations;
123     TitleDocument m_titledocument;
124     QGraphicsRectItem *m_frameBorder;
125     QGraphicsPixmapItem *m_frameImage;
126     int m_frameWidth;
127     int m_frameHeight;
128     Render *m_render;   // TODO Is NOT destroyed in the destructor. Deliberately?
129     int m_count;
130     QAction *m_buttonRect;
131     QAction *m_buttonText;
132     QAction *m_buttonImage;
133     QAction *m_buttonCursor;
134     QAction *m_buttonSave;
135     QAction *m_buttonLoad;
136
137     QAction *m_unicodeAction;
138     QAction *m_zUp;
139     QAction *m_zDown;
140     QAction *m_zTop;
141     QAction *m_zBottom;
142     QAction *m_selectAll;
143     QAction *m_selectText;
144     QAction *m_selectRects;
145     QAction *m_selectImages;
146     QAction *m_unselectAll;
147
148     /** @brief Dialog for entering Unicode characters in text fields. */
149     UnicodeDialog *m_unicodeDialog;
150
151     /** @brief Project path for storing title documents. */
152     QString m_projectTitlePath;
153     Timecode m_tc;
154     QString lastDocumentHash;
155
156     // See http://doc.trolltech.com/4.5/signalsandslots.html#advanced-signals-and-slots-usage.
157     QSignalMapper *m_signalMapper;
158
159     enum ValueType { ValueWidth = 0, ValueHeight = 1 };
160
161     /** @brief Sets the font weight value in the combo box. (#909) */
162     void setFontBoxWeight(int weight);
163
164     /** @brief Stores the choices of font, background and rectangle values. */
165     void writeChoices();
166
167     /** @brief Reads the last stored choices into the dialog. */
168     void readChoices();
169
170     /** @brief Updates the displayed X/Y coordinates. */
171     void updateCoordinates(QGraphicsItem *i);
172
173     /** @brief Updates the displayed width/height values. */
174     void updateDimension(QGraphicsItem *i);
175
176     /** @brief Updates the displayed rotation/zoom values. */
177     void updateRotZoom(QGraphicsItem *i);
178
179     /** @brief Updates the item position. */
180     void updatePosition(QGraphicsItem *i);
181
182     void textChanged(QGraphicsTextItem *i);
183     void updateAxisButtons(QGraphicsItem *i);
184
185     void updateTextOriginX();
186     void updateTextOriginY();
187
188     /** @brief Enables the toolbars suiting to toolType. */
189     void enableToolbars(TITLETOOL toolType);
190
191     /** @brief Shows the toolbars suiting to toolType. */
192     void showToolbars(TITLETOOL toolType);
193
194     /** @brief Checks a tool button. */
195     void checkButton(TITLETOOL toolType);
196
197     void adjustFrameSize();
198
199     /** @brief Adds a "start" and "end" info text to the animation viewports. */
200     void addAnimInfoText();
201
202     /** @brief Updates the font for the "start" and "end" info text. */
203     void updateInfoText();
204
205     /** @brief Removes the "start" and "end" info text from animation viewports. */
206     void deleteAnimInfoText();
207
208     qreal maxZIndex();
209
210     /** @brief Gets the minimum/maximum Z index of items.
211      * @param maxBound true: use maximum Z index; false: use minimum
212      * @param intersectingOnly if true, consider only the items intersecting
213      *     with the currently selected item
214      */
215     qreal zIndexBounds(bool maxBound, bool intersectingOnly);
216
217     void itemRotate(qreal val, int axis);
218     
219     void selectItems(int itemType);
220
221 public slots:
222     void slotNewText(QGraphicsTextItem *tt);
223     void slotNewRect(QGraphicsRectItem *rect);
224     void slotChangeBackground();
225
226     /** @brief Sets up the tools (toolbars etc.) according to the selected item. */
227     void selectionChanged();
228     void rectChanged();
229     void setupViewports();
230     void zIndexChanged(int);
231     void itemScaled(int);
232     void itemRotateX(qreal);
233     void itemRotateY(qreal);
234     void itemRotateZ(qreal);
235     /** Save a title to a title file */
236     void saveTitle(KUrl url = KUrl());
237     /** Load a title from a title file */
238     void loadTitle(KUrl url = KUrl());
239
240 private slots:
241
242     /** @brief Updates position/size of the selected item when a value changes. */
243     void slotAdjustSelectedItem();
244
245     /** @brief Switches the origin of the X axis between left and right border.
246      *
247      * It's called when the origin of the X coordinate has been changed. The X
248      * origin will either be at the left or at the right side of the frame.
249      *
250      * When the origin of the X axis is at the left side, the user can enter the
251      * distance between an element's left border and the left side of the frame.
252      *
253      * When on the right, the distance from the right border of the frame to the
254      * right border of the element can be entered. This would result in negative
255      * values as long as the element's right border is at the left of the
256      * frame's right border. As that is usually the case, I additionally invert
257      * the X axis.
258      *
259      * Default value is left.
260      *
261      * |----l----->|#######|----r--->|
262      * |           |---w-->|         |
263      * |           |#######|         |
264      * |                             |
265      * |----------m_frameWidth------>|
266      * |                             |
267      *
268      * Left selected: Value = l
269      * Right selected: Value = r
270      *
271      * To calculate between the two coorindate systems:
272      * l = m_frameWidth - w - r
273      * r = m_frameWidth - w - l
274      */
275     void slotOriginXClicked();
276
277     /** @brief Same as slotOriginXClicked(), but for the Y axis; default is top.
278      * @ref slotOriginXClicked */
279     void slotOriginYClicked();
280
281     /** @brief Updates coordinates of text fields if necessary.
282      *
283      * It's called when something changes in the QGraphicsScene. */
284     void slotChanged();
285
286     /** @param valueType of type ValueType */
287     void slotValueChanged(int valueType);
288
289     void slotZoom(bool up);
290     void slotUpdateZoom(int pos);
291     void slotAdjustZoom();
292     void slotZoomOneToOne();
293     
294     void slotSelectAll();
295     void slotSelectText();
296     void slotSelectRects();
297     void slotSelectImages();
298     void slotSelectNone();
299     
300
301     /** Called whenever text properties change (font e.g.) */
302     void slotUpdateText();
303     void slotInsertUnicode();
304     void slotInsertUnicodeString(QString);
305
306     void displayBackgroundFrame();
307
308     void setCurrentItem(QGraphicsItem *item);
309
310     void slotTextTool();
311     void slotRectTool();
312     void slotSelectTool();
313     void slotImageTool();
314
315     void slotAnimStart(bool);
316     void slotAnimEnd(bool);
317     void slotKeepAspect(bool keep);
318
319     void itemHCenter();
320     void itemVCenter();
321     void itemTop();
322     void itemBottom();
323     void itemLeft();
324     void itemRight();
325     void slotResize50();
326     void slotResize100();
327     void slotResize200();
328
329     /** @brief Called when accepted, stores user selections for next time use.
330      * @ref writeChoices */
331     void slotAccepted();
332
333     void slotFontText(const QString& s);
334
335     /** @brief Adds an effect to an element.
336      * @param ix index of the effect in the effects menu
337      *
338      * The current implementation allows for one QGraphicsEffect to be added
339      * along with the typewriter effect. This is not clear to the user: the
340      * stack would help, and would permit us to make more QGraphicsEffects
341      * coexist (with different layers of QGraphicsItems). */
342     void slotAddEffect(int ix);
343     void slotEditBlur(int ix);
344     void slotEditShadow();
345     void slotEditTypewriter(int ix);
346
347     /** @brief Changes the Z index of objects. */
348     void slotZIndexUp();
349     void slotZIndexDown();
350     void slotZIndexTop();
351     void slotZIndexBottom();
352     /** Called when the user wants to apply a different template to the title */
353     void templateIndexChanged(int);
354 };
355
356 #endif