]> git.sesse.net Git - kdenlive/blob - src/titlewidget.cpp
2882b9a71e7fa96b6c8c9ce55ec6a904b59d6ec8
[kdenlive] / src / titlewidget.cpp
1 /***************************************************************************
2                           titlewidget.cpp  -  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 #include "titlewidget.h"
19 #include "kdenlivesettings.h"
20
21 #include <KDebug>
22 #include <KGlobalSettings>
23 #include <KFileDialog>
24 #include <KStandardDirs>
25 #include <KMessageBox>
26
27 #include <QDomDocument>
28 #include <QGraphicsItem>
29 #include <QGraphicsSvgItem>
30 #include <QTimer>
31 #include <QToolBar>
32 #include <QMenu>
33 #include <QTextBlockFormat>
34 #include <QTextCursor>
35
36 int settingUp = false;
37
38 const int IMAGEITEM = 7;
39 const int RECTITEM = 3;
40 const int TEXTITEM = 8;
41
42 TitleWidget::TitleWidget(KUrl url, QString projectPath, Render *render, QWidget *parent) :
43         QDialog(parent),
44         Ui::TitleWidget_UI(),
45         m_startViewport(NULL),
46         m_endViewport(NULL),
47         m_render(render),
48         m_count(0),
49         m_unicodeDialog(new UnicodeDialog(UnicodeDialog::InputHex)),
50         m_projectPath(projectPath)
51 {
52     setupUi(this);
53     setFont(KGlobalSettings::toolBarFont());
54     //toolBox->setFont(KGlobalSettings::toolBarFont());
55     frame_properties->setEnabled(false);
56     rect_properties->setFixedHeight(frame_properties->height() + 4);
57     text_properties->setFixedHeight(frame_properties->height() + 4);
58     m_frameWidth = render->renderWidth();
59     m_frameHeight = render->renderHeight();
60     connect(kcolorbutton, SIGNAL(clicked()), this, SLOT(slotChangeBackground())) ;
61     connect(horizontalSlider, SIGNAL(valueChanged(int)), this, SLOT(slotChangeBackground())) ;
62
63
64     connect(fontColorButton, SIGNAL(clicked()), this, SLOT(slotUpdateText())) ;
65     connect(font_family, SIGNAL(currentFontChanged(const QFont &)), this, SLOT(slotUpdateText())) ;
66     connect(font_size, SIGNAL(valueChanged(int)), this, SLOT(slotUpdateText())) ;
67     connect(textAlpha, SIGNAL(valueChanged(int)), this, SLOT(slotUpdateText()));
68
69     connect(rectFAlpha, SIGNAL(valueChanged(int)), this, SLOT(rectChanged()));
70     connect(rectBAlpha, SIGNAL(valueChanged(int)), this, SLOT(rectChanged()));
71     connect(rectFColor, SIGNAL(clicked()), this, SLOT(rectChanged()));
72     connect(rectBColor, SIGNAL(clicked()), this, SLOT(rectChanged()));
73     connect(rectLineWidth, SIGNAL(valueChanged(int)), this, SLOT(rectChanged()));
74
75     connect(startViewportX, SIGNAL(valueChanged(int)), this, SLOT(setupViewports()));
76     connect(startViewportY, SIGNAL(valueChanged(int)), this, SLOT(setupViewports()));
77     connect(startViewportSize, SIGNAL(valueChanged(int)), this, SLOT(setupViewports()));
78     connect(endViewportX, SIGNAL(valueChanged(int)), this, SLOT(setupViewports()));
79     connect(endViewportY, SIGNAL(valueChanged(int)), this, SLOT(setupViewports()));
80     connect(endViewportSize, SIGNAL(valueChanged(int)), this, SLOT(setupViewports()));
81
82     connect(zValue, SIGNAL(valueChanged(int)), this, SLOT(zIndexChanged(int)));
83     connect(itemzoom, SIGNAL(valueChanged(int)), this, SLOT(itemScaled(int)));
84     connect(itemrotate, SIGNAL(valueChanged(int)), this, SLOT(itemRotate(int)));
85     connect(itemhcenter, SIGNAL(clicked()), this, SLOT(itemHCenter()));
86     connect(itemvcenter, SIGNAL(clicked()), this, SLOT(itemVCenter()));
87
88     connect(origin_x_left, SIGNAL(clicked()), this, SLOT(slotOriginXClicked()));
89     connect(origin_y_top, SIGNAL(clicked()), this, SLOT(slotOriginYClicked()));
90
91     connect(value_x, SIGNAL(valueChanged(int)), this, SLOT(slotAdjustSelectedItem()));
92     connect(value_y, SIGNAL(valueChanged(int)), this, SLOT(slotAdjustSelectedItem()));
93     connect(value_w, SIGNAL(valueChanged(int)), this, SLOT(slotAdjustSelectedItem()));
94     connect(value_h, SIGNAL(valueChanged(int)), this, SLOT(slotAdjustSelectedItem()));
95     connect(buttonFitZoom, SIGNAL(clicked()), this, SLOT(slotAdjustZoom()));
96     connect(buttonRealSize, SIGNAL(clicked()), this, SLOT(slotZoomOneToOne()));
97     connect(buttonBold, SIGNAL(clicked()), this, SLOT(slotUpdateText()));
98     connect(buttonItalic, SIGNAL(clicked()), this, SLOT(slotUpdateText()));
99     connect(buttonUnder, SIGNAL(clicked()), this, SLOT(slotUpdateText()));
100     connect(buttonAlignLeft, SIGNAL(clicked()), this, SLOT(slotUpdateText()));
101     connect(buttonAlignRight, SIGNAL(clicked()), this, SLOT(slotUpdateText()));
102     connect(buttonAlignCenter, SIGNAL(clicked()), this, SLOT(slotUpdateText()));
103     connect(buttonAlignNone, SIGNAL(clicked()), this, SLOT(slotUpdateText()));
104     connect(buttonInsertUnicode, SIGNAL(clicked()), this, SLOT(slotInsertUnicode()));
105     connect(m_unicodeDialog, SIGNAL(charSelected(QString)), this, SLOT(slotInsertUnicodeString(QString)));
106     connect(displayBg, SIGNAL(stateChanged(int)), this, SLOT(displayBackgroundFrame()));
107
108     // mbd
109     connect(this, SIGNAL(accepted()), this, SLOT(slotAccepted()));
110
111     buttonFitZoom->setIcon(KIcon("zoom-fit-best"));
112     buttonRealSize->setIcon(KIcon("zoom-original"));
113     buttonBold->setIcon(KIcon("format-text-bold"));
114     buttonItalic->setIcon(KIcon("format-text-italic"));
115     buttonUnder->setIcon(KIcon("format-text-underline"));
116     buttonAlignCenter->setIcon(KIcon("format-justify-center"));
117     buttonAlignLeft->setIcon(KIcon("format-justify-left"));
118     buttonAlignRight->setIcon(KIcon("format-justify-right"));
119     buttonAlignNone->setIcon(KIcon("kdenlive-align-none"));
120     buttonInsertUnicode->setIcon(KIcon("kdenlive-insert-unicode"));
121
122     buttonAlignNone->setToolTip(i18n("No alignment"));
123     buttonAlignRight->setToolTip(i18n("Align right"));
124     buttonAlignLeft->setToolTip(i18n("Align left"));
125     buttonAlignCenter->setToolTip(i18n("Align center"));
126     buttonInsertUnicode->setToolTip(i18n("Insert Unicode character (Shift+Ctrl+U)"));
127     buttonInsertUnicode->setShortcut(Qt::SHIFT + Qt::CTRL + Qt::Key_U);
128     origin_x_left->setToolTip(i18n("Invert x axis and change 0 point"));
129     origin_y_top->setToolTip(i18n("Invert y axis and change 0 point"));
130     rectBColor->setToolTip(i18n("Select fill color"));
131     rectFColor->setToolTip(i18n("Select border color"));
132     rectBAlpha->setToolTip(i18n("Fill transparency"));
133     rectFAlpha->setToolTip(i18n("Border transparency"));
134     zoom_slider->setToolTip(i18n("Zoom"));
135     buttonRealSize->setToolTip(i18n("Original size (1:1)"));
136     buttonFitZoom->setToolTip(i18n("Fit zoom"));
137     kcolorbutton->setToolTip(i18n("Select background color"));
138     horizontalSlider->setToolTip(i18n("Background Transparency"));
139
140     itemhcenter->setIcon(KIcon("kdenlive-align-hor"));
141     itemhcenter->setToolTip(i18n("Align item horizontally"));
142     itemvcenter->setIcon(KIcon("kdenlive-align-vert"));
143     itemvcenter->setToolTip(i18n("Align item vertically"));
144
145     QHBoxLayout *layout = new QHBoxLayout;
146     frame_toolbar->setLayout(layout);
147     layout->setContentsMargins(2, 2, 2, 2);
148     QToolBar *m_toolbar = new QToolBar("titleToolBar", this);
149
150     m_buttonRect = m_toolbar->addAction(KIcon("kdenlive-insert-rect"), i18n("Add Rectangle (Alt+R)"));
151     m_buttonRect->setCheckable(true);
152     m_buttonRect->setShortcut(Qt::ALT + Qt::Key_R);
153     connect(m_buttonRect, SIGNAL(triggered()), this, SLOT(slotRectTool()));
154
155     m_buttonText = m_toolbar->addAction(KIcon("insert-text"), i18n("Add Text (Alt+T)"));
156     m_buttonText->setCheckable(true);
157     m_buttonText->setShortcut(Qt::ALT + Qt::Key_T);
158     connect(m_buttonText, SIGNAL(triggered()), this, SLOT(slotTextTool()));
159
160     m_buttonImage = m_toolbar->addAction(KIcon("insert-image"), i18n("Add Image (Alt+I)"));
161     m_buttonImage->setCheckable(false);
162     m_buttonImage->setShortcut(Qt::ALT + Qt::Key_I);
163     connect(m_buttonImage, SIGNAL(triggered()), this, SLOT(slotImageTool()));
164
165     m_buttonCursor = m_toolbar->addAction(KIcon("transform-move"), i18n("Selection Tool (Alt+S)"));
166     m_buttonCursor->setCheckable(true);
167     m_buttonCursor->setShortcut(Qt::ALT + Qt::Key_S);
168     connect(m_buttonCursor, SIGNAL(triggered()), this, SLOT(slotSelectTool()));
169
170     m_buttonLoad = m_toolbar->addAction(KIcon("document-open"), i18n("Open Document"));
171     m_buttonLoad->setCheckable(false);
172     m_buttonLoad->setShortcut(Qt::CTRL + Qt::Key_O);
173     connect(m_buttonLoad, SIGNAL(triggered()), this, SLOT(loadTitle()));
174
175     m_buttonSave = m_toolbar->addAction(KIcon("document-save-as"), i18n("Save As"));
176     m_buttonSave->setCheckable(false);
177     m_buttonSave->setShortcut(Qt::CTRL + Qt::Key_S);
178     connect(m_buttonSave, SIGNAL(triggered()), this, SLOT(saveTitle()));
179
180     layout->addWidget(m_toolbar);
181     text_properties->setHidden(true);
182
183     // initialize graphic scene
184     m_scene = new GraphicsSceneRectMove(this);
185     graphicsView->setScene(m_scene);
186     m_titledocument.setScene(m_scene);
187     connect(m_scene, SIGNAL(changed(QList<QRectF>)), this, SLOT(slotChanged()));
188
189     // a gradient background
190     /*QRadialGradient *gradient = new QRadialGradient(0, 0, 10);
191     gradient->setSpread(QGradient::ReflectSpread);
192     scene->setBackgroundBrush(*gradient);*/
193
194     m_frameImage = new QGraphicsPixmapItem();
195     QTransform qtrans;
196     qtrans.scale(2.0, 2.0);
197     m_frameImage->setTransform(qtrans);
198     m_frameImage->setZValue(-1200);
199     m_frameImage->setFlags(QGraphicsItem::ItemClipsToShape);
200     displayBackgroundFrame();
201     graphicsView->scene()->addItem(m_frameImage);
202
203     connect(m_scene, SIGNAL(selectionChanged()), this , SLOT(selectionChanged()));
204     connect(m_scene, SIGNAL(itemMoved()), this , SLOT(selectionChanged()));
205     connect(m_scene, SIGNAL(sceneZoom(bool)), this , SLOT(slotZoom(bool)));
206     connect(m_scene, SIGNAL(actionFinished()), this , SLOT(slotSelectTool()));
207     connect(m_scene, SIGNAL(actionFinished()), this , SLOT(selectionChanged()));
208     connect(m_scene, SIGNAL(newRect(QGraphicsRectItem *)), this , SLOT(slotNewRect(QGraphicsRectItem *)));
209     connect(m_scene, SIGNAL(newText(QGraphicsTextItem *)), this , SLOT(slotNewText(QGraphicsTextItem *)));
210     connect(zoom_slider, SIGNAL(valueChanged(int)), this , SLOT(slotUpdateZoom(int)));
211
212     QPen framepen(Qt::DotLine);
213     framepen.setColor(Qt::red);
214
215     m_frameBorder = new QGraphicsRectItem(QRectF(0, 0, m_frameWidth, m_frameHeight));
216     m_frameBorder->setPen(framepen);
217     m_frameBorder->setZValue(-1100);
218     m_frameBorder->setBrush(Qt::transparent);
219     m_frameBorder->setFlags(QGraphicsItem::ItemClipsToShape);
220     graphicsView->scene()->addItem(m_frameBorder);
221
222     // mbd: load saved settings
223     readChoices();
224
225     initViewports();
226     QTimer::singleShot(500, this, SLOT(slotAdjustZoom()));
227     graphicsView->show();
228     //graphicsView->setRenderHint(QPainter::Antialiasing);
229     graphicsView->setInteractive(true);
230     //graphicsView->resize(400, 300);
231     kDebug() << "// TITLE WIDGWT: " << graphicsView->viewport()->width() << "x" << graphicsView->viewport()->height();
232     toolBox->setItemEnabled(2, false);
233     if (!url.isEmpty()) {
234         m_count = m_titledocument.loadDocument(url, m_startViewport, m_endViewport) + 1;
235         slotSelectTool();
236     } else {
237         slotRectTool();
238     }
239 }
240
241 TitleWidget::~TitleWidget()
242 {
243     delete m_buttonRect;
244     delete m_buttonText;
245     delete m_buttonImage;
246     delete m_buttonCursor;
247     delete m_buttonSave;
248     delete m_buttonLoad;
249
250     delete m_unicodeDialog;
251     delete m_frameBorder;
252     delete m_frameImage;
253     delete m_startViewport;
254     delete m_endViewport;
255     delete m_scene;
256 }
257
258 //static
259 QStringList TitleWidget::getFreeTitleInfo(const KUrl &projectUrl)
260 {
261     QStringList result;
262     QString titlePath = projectUrl.path() + "/titles/";
263     KStandardDirs::makeDir(titlePath);
264     QString titleName = "title";
265     int counter = 0;
266     QString path = titlePath + titleName + QString::number(counter).rightJustified(3, '0', false);
267     while (QFile::exists(path + ".png")) {
268         counter++;
269         path = titlePath + titleName + QString::number(counter).rightJustified(3, '0', false);
270     }
271     result.append(titleName + QString::number(counter).rightJustified(3, '0', false));
272     result.append(path + ".png");
273     return result;
274 }
275
276 QString TitleWidget::getTitleResourceFromName(const KUrl &projectUrl, const QString &titleName)
277 {
278     QStringList result;
279     QString titlePath = projectUrl.path() + "/titles/";
280     KStandardDirs::makeDir(titlePath);
281     return titlePath + titleName + ".png";
282 }
283
284 //virtual
285 void TitleWidget::resizeEvent(QResizeEvent * /*event*/)
286 {
287     //slotAdjustZoom();
288 }
289
290 void TitleWidget::slotTextTool()
291 {
292     rect_properties->setHidden(true);
293     text_properties->setHidden(false);
294     m_scene->setTool(TITLE_TEXT);
295     m_buttonRect->setChecked(false);
296     m_buttonCursor->setChecked(false);
297 }
298
299 void TitleWidget::slotRectTool()
300 {
301     text_properties->setHidden(true);
302     rect_properties->setHidden(false);
303     m_scene->setTool(TITLE_RECTANGLE);
304     m_buttonText->setChecked(false);
305     m_buttonCursor->setChecked(false);
306     m_buttonRect->setChecked(true);
307 }
308
309 void TitleWidget::slotSelectTool()
310 {
311     m_scene->setTool(TITLE_SELECT);
312     m_buttonCursor->setChecked(true);
313     m_buttonText->setChecked(false);
314     m_buttonRect->setChecked(false);
315 }
316
317 void TitleWidget::slotImageTool()
318 {
319     KUrl url = KFileDialog::getOpenUrl(KUrl(), "*.svg *.png *.jpg *.jpeg *.gif *.raw", this, i18n("Load Image"));
320     if (!url.isEmpty()) {
321         if (url.path().endsWith(".svg")) {
322             QGraphicsSvgItem *svg = new QGraphicsSvgItem(url.toLocalFile());
323             svg->setFlags(QGraphicsItem::ItemIsMovable | QGraphicsItem::ItemIsSelectable);
324             svg->setZValue(m_count++);
325             svg->setData(Qt::UserRole, url.path());
326             graphicsView->scene()->addItem(svg);
327         } else {
328             QPixmap pix(url.path());
329             QGraphicsPixmapItem *image = new QGraphicsPixmapItem(pix);
330             image->setShapeMode(QGraphicsPixmapItem::BoundingRectShape);
331             image->setFlags(QGraphicsItem::ItemIsMovable | QGraphicsItem::ItemIsSelectable);
332             image->setData(Qt::UserRole, url.path());
333             image->setZValue(m_count++);
334             graphicsView->scene()->addItem(image);
335         }
336     }
337     m_scene->setTool(TITLE_SELECT);
338     m_buttonRect->setChecked(false);
339     m_buttonCursor->setChecked(true);
340     m_buttonText->setChecked(false);
341 }
342
343 void TitleWidget::displayBackgroundFrame()
344 {
345     if (!displayBg->isChecked()) {
346         QPixmap bg(m_frameWidth / 2, m_frameHeight / 2);
347         QPixmap pattern(20, 20);
348         pattern.fill();
349         QPainter p;
350         p.begin(&pattern);
351         p.fillRect(QRect(0, 0, 10, 10), QColor(210, 210, 210));
352         p.fillRect(QRect(10, 10, 20, 20), QColor(210, 210, 210));
353         p.end();
354         QBrush br(pattern);
355
356         p.begin(&bg);
357         p.fillRect(bg.rect(), br);
358         p.end();
359         m_frameImage->setPixmap(bg);
360     } else {
361         m_frameImage->setPixmap(m_render->extractFrame((int) m_render->seekPosition().frames(m_render->fps()), m_frameWidth / 2, m_frameHeight / 2));
362     }
363 }
364
365 void TitleWidget::initViewports()
366 {
367     m_startViewport = new QGraphicsPolygonItem(QPolygonF(QRectF(0, 0, 0, 0)));
368     m_endViewport = new QGraphicsPolygonItem(QPolygonF(QRectF(0, 0, 0, 0)));
369
370     QPen startpen(Qt::DotLine);
371     QPen endpen(Qt::DashDotLine);
372     startpen.setColor(QColor(100, 200, 100, 140));
373     endpen.setColor(QColor(200, 100, 100, 140));
374
375     m_startViewport->setPen(startpen);
376     m_endViewport->setPen(endpen);
377
378     startViewportSize->setValue(40);
379     endViewportSize->setValue(40);
380
381     m_startViewport->setZValue(-1000);
382     m_endViewport->setZValue(-1000);
383
384     m_startViewport->setFlags(/*QGraphicsItem::ItemIsMovable|*/QGraphicsItem::ItemIsSelectable);
385     m_endViewport->setFlags(/*QGraphicsItem::ItemIsMovable|*/QGraphicsItem::ItemIsSelectable);
386
387     graphicsView->scene()->addItem(m_startViewport);
388     graphicsView->scene()->addItem(m_endViewport);
389 }
390
391 void TitleWidget::slotUpdateZoom(int pos)
392 {
393     m_scene->setZoom((double) pos / 100);
394     zoom_label->setText(QString::number(pos) + '%');
395 }
396
397 void TitleWidget::slotZoom(bool up)
398 {
399     int pos = zoom_slider->value();
400     if (up) pos++;
401     else pos--;
402     zoom_slider->setValue(pos);
403 }
404
405 void TitleWidget::slotAdjustZoom()
406 {
407     /*double scalex = graphicsView->width() / (double)(m_frameWidth * 1.2);
408     double scaley = graphicsView->height() / (double)(m_frameHeight * 1.2);
409     if (scalex > scaley) scalex = scaley;
410     int zoompos = (int)(scalex * 7 + 0.5);*/
411     graphicsView->fitInView(m_frameBorder, Qt::KeepAspectRatio);
412     int zoompos = graphicsView->matrix().m11() * 100;
413     zoom_slider->setValue(zoompos);
414     graphicsView->centerOn(m_frameBorder);
415 }
416
417 void TitleWidget::slotZoomOneToOne()
418 {
419     zoom_slider->setValue(100);
420     graphicsView->centerOn(m_frameBorder);
421 }
422
423 void TitleWidget::slotNewRect(QGraphicsRectItem * rect)
424 {
425     QColor f = rectFColor->color();
426     f.setAlpha(rectFAlpha->value());
427     QPen penf(f);
428     penf.setWidth(rectLineWidth->value());
429     rect->setPen(penf);
430     QColor b = rectBColor->color();
431     b.setAlpha(rectBAlpha->value());
432     rect->setBrush(QBrush(b));
433     rect->setZValue(m_count++);
434     //setCurrentItem(rect);
435     //graphicsView->setFocus();
436 }
437
438 void TitleWidget::slotNewText(QGraphicsTextItem *tt)
439 {
440     QFont font = font_family->currentFont();
441     font.setPixelSize(font_size->value());
442     // mbd: issue 551:
443     font.setBold(buttonBold->isChecked());
444     font.setItalic(buttonItalic->isChecked());
445     font.setUnderline(buttonUnder->isChecked());
446
447     tt->setFont(font);
448     QColor color = fontColorButton->color();
449     color.setAlpha(textAlpha->value());
450     tt->setDefaultTextColor(color);
451     tt->setZValue(m_count++);
452     setCurrentItem(tt);
453 }
454
455 void TitleWidget::setCurrentItem(QGraphicsItem *item)
456 {
457     m_scene->setSelectedItem(item);
458 }
459
460 void TitleWidget::zIndexChanged(int v)
461 {
462     QList<QGraphicsItem*> l = graphicsView->scene()->selectedItems();
463     if (l.size() >= 1) {
464         l[0]->setZValue(v);
465     }
466 }
467
468 void TitleWidget::selectionChanged()
469 {
470     if (m_scene->tool() != TITLE_SELECT) return;
471     QList<QGraphicsItem*> l = graphicsView->scene()->selectedItems();
472     //toolBox->setItemEnabled(2, false);
473     //toolBox->setItemEnabled(3, false);
474     value_x->blockSignals(true);
475     value_y->blockSignals(true);
476     value_w->blockSignals(true);
477     value_h->blockSignals(true);
478     itemzoom->blockSignals(true);
479     itemrotate->blockSignals(true);
480     if (l.size() == 0) {
481         bool blockX = !origin_x_left->signalsBlocked();
482         bool blockY = !origin_y_top->signalsBlocked();
483         if (blockX) origin_x_left->blockSignals(true);
484         if (blockY) origin_y_top->blockSignals(true);
485         origin_x_left->setChecked(false);
486         origin_y_top->setChecked(false);
487         updateTextOriginX();
488         updateTextOriginY();
489         frame_properties->setEnabled(false);
490         text_properties->setEnabled(false);
491         rect_properties->setEnabled(false);
492         if (blockX) origin_x_left->blockSignals(false);
493         if (blockY) origin_y_top->blockSignals(false);
494     } else if (l.size() == 1) {
495         if (l.at(0)->type() == TEXTITEM) {
496             rect_properties->setHidden(true);
497             text_properties->setHidden(false);
498             QGraphicsTextItem* i = static_cast <QGraphicsTextItem *>(l.at(0));
499             //if (l[0]->hasFocus())
500             toolBox->setCurrentIndex(0);
501             //toolBox->setItemEnabled(2, true);
502             font_size->blockSignals(true);
503             font_family->blockSignals(true);
504             buttonBold->blockSignals(true);
505             buttonItalic->blockSignals(true);
506             buttonUnder->blockSignals(true);
507             fontColorButton->blockSignals(true);
508             textAlpha->blockSignals(true);
509             buttonAlignLeft->blockSignals(true);
510             buttonAlignRight->blockSignals(true);
511             buttonAlignNone->blockSignals(true);
512             buttonAlignCenter->blockSignals(true);
513
514             QFont font = i->font();
515             font_family->setCurrentFont(font);
516             font_size->setValue(font.pixelSize());
517             buttonBold->setChecked(font.bold());
518             buttonItalic->setChecked(font.italic());
519             buttonUnder->setChecked(font.underline());
520
521             QColor color = i->defaultTextColor();
522             fontColorButton->setColor(color);
523             textAlpha->setValue(color.alpha());
524
525             QTextCursor cur = i->textCursor();
526             QTextBlockFormat format = cur.blockFormat();
527             if (i->textWidth() == -1) buttonAlignNone->setChecked(true);
528             else if (format.alignment() == Qt::AlignHCenter) buttonAlignCenter->setChecked(true);
529             else if (format.alignment() == Qt::AlignRight) buttonAlignRight->setChecked(true);
530             else if (format.alignment() == Qt::AlignLeft) buttonAlignLeft->setChecked(true);
531
532             font_size->blockSignals(false);
533             font_family->blockSignals(false);
534             buttonBold->blockSignals(false);
535             buttonItalic->blockSignals(false);
536             buttonUnder->blockSignals(false);
537             fontColorButton->blockSignals(false);
538             textAlpha->blockSignals(false);
539             buttonAlignLeft->blockSignals(false);
540             buttonAlignRight->blockSignals(false);
541             buttonAlignNone->blockSignals(false);
542             buttonAlignCenter->blockSignals(false);
543
544             updateAxisButtons(i);
545             updateCoordinates(i);
546             updateDimension(i);
547             //value_w->setValue((int) i->boundingRect().width());
548             //value_h->setValue((int) i->boundingRect().height());
549             frame_properties->setEnabled(true);
550             text_properties->setEnabled(true);
551             rect_properties->setEnabled(false);
552             value_w->setEnabled(false);
553             value_h->setEnabled(false);
554
555         } else if ((l.at(0))->type() == RECTITEM) {
556             rect_properties->setHidden(false);
557             text_properties->setHidden(true);
558             settingUp = true;
559             QGraphicsRectItem *rec = static_cast <QGraphicsRectItem *>(l.at(0));
560             toolBox->setCurrentIndex(0);
561             //toolBox->setItemEnabled(3, true);
562             rectFAlpha->setValue(rec->pen().color().alpha());
563             rectBAlpha->setValue(rec->brush().color().alpha());
564             //kDebug() << rec->brush().color().alpha();
565             QColor fcol = rec->pen().color();
566             QColor bcol = rec->brush().color();
567             //fcol.setAlpha(255);
568             //bcol.setAlpha(255);
569             rectFColor->setColor(fcol);
570             rectBColor->setColor(bcol);
571             settingUp = false;
572             rectLineWidth->setValue(rec->pen().width());
573
574             updateAxisButtons(l.at(0));
575             updateCoordinates(rec);
576             updateDimension(rec);
577             //value_w->setValue((int) rec->rect().width());
578             //value_h->setValue((int) rec->rect().height());
579             frame_properties->setEnabled(true);
580             text_properties->setEnabled(false);
581             rect_properties->setEnabled(true);
582             value_w->setEnabled(true);
583             value_h->setEnabled(true);
584
585         } else if (l.at(0)->type() == IMAGEITEM) {
586             updateCoordinates(l.at(0));
587             updateDimension(l.at(0));
588
589             frame_properties->setEnabled(true);
590             text_properties->setEnabled(false);
591             rect_properties->setEnabled(false);
592             value_x->setEnabled(true);
593             value_w->setEnabled(false);
594             value_h->setEnabled(false);
595
596         } else {
597             //toolBox->setCurrentIndex(0);
598             frame_properties->setEnabled(false);
599             text_properties->setEnabled(false);
600             rect_properties->setEnabled(false);
601         }
602         zValue->setValue((int)l.at(0)->zValue());
603         itemzoom->setValue((int)(m_transformations.value(l.at(0)).scalex * 100.0 + 0.5));
604         itemrotate->setValue((int)(m_transformations.value(l.at(0)).rotate));
605         value_x->blockSignals(false);
606         value_y->blockSignals(false);
607         value_w->blockSignals(false);
608         value_h->blockSignals(false);
609         itemzoom->blockSignals(false);
610         itemrotate->blockSignals(false);
611     }
612 }
613
614 /** \brief Updates position/size of the selected item when a value
615  * of an item (coordinates, size) has changed */
616 void TitleWidget::slotAdjustSelectedItem()
617 {
618     QList<QGraphicsItem*> l = graphicsView->scene()->selectedItems();
619     if (l.size() >= 1) {
620         if (l.at(0)->type() == RECTITEM) {
621             //rect item
622             QGraphicsRectItem *rec = static_cast <QGraphicsRectItem *>(l.at(0));
623             updatePosition(rec);
624             rec->setRect(QRect(0, 0, value_w->value(), value_h->value()));
625         } else if (l.at(0)->type() == TEXTITEM) {
626             //text item
627             updatePosition(l.at(0));
628         } else if (l.at(0)->type() == IMAGEITEM) {
629             //image item
630             updatePosition(l.at(0));
631         }
632     }
633 }
634
635 /** \brief Updates width/height int the text fields, regarding transformation matrix */
636 void TitleWidget::updateDimension(QGraphicsItem *i)
637 {
638     bool blockW = !value_w->signalsBlocked();
639     bool blockH = !value_h->signalsBlocked();
640
641     if (blockW) value_w->blockSignals(true);
642     if (blockH) value_h->blockSignals(true);
643
644
645     if (i->type() == IMAGEITEM) {
646         // Get multipliers for rotation/scaling
647
648         /*Transform t = m_transformations.value(i);
649         QRectF r = i->boundingRect();
650         int width = (int) ( abs(r.width()*t.scalex * cos(t.rotate/180.0*M_PI))
651                     + abs(r.height()*t.scaley * sin(t.rotate/180.0*M_PI)) );
652         int height = (int) ( abs(r.height()*t.scaley * cos(t.rotate/180*M_PI))
653                     + abs(r.width()*t.scalex * sin(t.rotate/180*M_PI)) );*/
654
655         value_w->setValue(i->sceneBoundingRect().width());
656         value_h->setValue(i->sceneBoundingRect().height());
657     } else if (i->type() == RECTITEM) {
658         QGraphicsRectItem *r = static_cast <QGraphicsRectItem *>(i);
659         value_w->setValue((int) r->rect().width());
660         value_h->setValue((int) r->rect().height());
661     } else if (i->type() == TEXTITEM) {
662         QGraphicsTextItem *t = static_cast <QGraphicsTextItem *>(i);
663         value_w->setValue((int) t->boundingRect().width());
664         value_h->setValue((int) t->boundingRect().height());
665     }
666
667     if (blockW) value_w->blockSignals(false);
668     if (blockH) value_h->blockSignals(false);
669 }
670
671 /** \brief Updates the coordinates in the text fields from the item */
672 void TitleWidget::updateCoordinates(QGraphicsItem *i)
673 {
674
675     bool blockX = !value_x->signalsBlocked();
676     bool blockY = !value_y->signalsBlocked();
677
678     // Block signals emitted by this method
679     if (blockX) value_x->blockSignals(true);
680     if (blockY) value_y->blockSignals(true);
681
682     if (i->type() == TEXTITEM) {
683
684         QGraphicsTextItem *rec = static_cast <QGraphicsTextItem *>(i);
685
686         // Set the correct x coordinate value
687         if (origin_x_left->isChecked()) {
688             // Origin (0 point) is at m_frameWidth, coordinate axis is inverted
689             value_x->setValue((int)(m_frameWidth - rec->pos().x() - rec->boundingRect().width()));
690         } else {
691             // Origin is at 0 (default)
692             value_x->setValue((int) rec->pos().x());
693         }
694
695         // Same for y
696         if (origin_y_top->isChecked()) {
697             value_y->setValue((int)(m_frameHeight - rec->pos().y() - rec->boundingRect().height()));
698         } else {
699             value_y->setValue((int) rec->pos().y());
700         }
701
702     } else if (i->type() == RECTITEM) {
703
704         QGraphicsRectItem *rec = static_cast <QGraphicsRectItem *>(i);
705
706         if (origin_x_left->isChecked()) {
707             // Origin (0 point) is at m_frameWidth
708             value_x->setValue((int)(m_frameWidth - rec->pos().x() - rec->rect().width()));
709         } else {
710             // Origin is at 0 (default)
711             value_x->setValue((int) rec->pos().x());
712         }
713
714         if (origin_y_top->isChecked()) {
715             value_y->setValue((int)(m_frameHeight - rec->pos().y() - rec->rect().height()));
716         } else {
717             value_y->setValue((int) rec->pos().y());
718         }
719
720     } else if (i->type() == IMAGEITEM) {
721
722         if (origin_x_left->isChecked()) {
723             value_x->setValue((int)(m_frameWidth - i->pos().x() - i->sceneBoundingRect().width()));
724         } else {
725             value_x->setValue((int) i->pos().x());
726         }
727
728         if (origin_y_top->isChecked()) {
729             value_y->setValue((int)(m_frameHeight - i->pos().y() - i->sceneBoundingRect().height()));
730         } else {
731             value_y->setValue((int) i->pos().y());
732         }
733
734     }
735
736     // Stop blocking signals now
737     if (!blockX) value_x->blockSignals(false);
738     if (!blockY) value_y->blockSignals(false);
739 }
740
741 /** \brief Updates the position of an item by reading coordinates from the text fields */
742 void TitleWidget::updatePosition(QGraphicsItem *i)
743 {
744
745     if (i->type() == TEXTITEM) {
746         QGraphicsTextItem *rec = static_cast <QGraphicsTextItem *>(i);
747
748         int posX;
749         if (origin_x_left->isChecked()) {
750             /* Origin of the x axis is at m_frameWidth,
751              * and distance from right border of the item to the right
752              * border of the frame is taken.
753              * See comment to slotOriginXClicked().
754              */
755             posX = m_frameWidth - value_x->value() - rec->boundingRect().width();
756         } else {
757             posX = value_x->value();
758         }
759
760         int posY;
761         if (origin_y_top->isChecked()) {
762             /* Same for y axis */
763             posY = m_frameHeight - value_y->value() - rec->boundingRect().height();
764         } else {
765             posY = value_y->value();
766         }
767
768         rec->setPos(posX, posY);
769
770     } else if (i->type() == RECTITEM) {
771
772         QGraphicsRectItem *rec = static_cast <QGraphicsRectItem *>(i);
773
774         int posX;
775         if (origin_x_left->isChecked()) {
776             posX = m_frameWidth - value_x->value() - rec->rect().width();
777         } else {
778             posX = value_x->value();
779         }
780
781         int posY;
782         if (origin_y_top->isChecked()) {
783             posY = m_frameHeight - value_y->value() - rec->rect().height();
784         } else {
785             posY = value_y->value();
786         }
787
788         rec->setPos(posX, posY);
789
790     } else if (i->type() == IMAGEITEM) {
791
792         int posX;
793         if (origin_x_left->isChecked()) {
794             // Use the sceneBoundingRect because this also regards transformations like zoom
795             posX = m_frameWidth - value_x->value() - i->sceneBoundingRect().width();
796         } else {
797             posX = value_x->value();
798         }
799
800         int posY;
801         if (origin_y_top->isChecked()) {
802             posY = m_frameHeight - value_y->value() - i->sceneBoundingRect().height();
803         } else {
804             posY = value_y->value();
805         }
806
807         i->setPos(posX, posY);
808
809     }
810
811 }
812
813 void TitleWidget::updateTextOriginX()
814 {
815     if (origin_x_left->isChecked()) {
816         origin_x_left->setText(i18n("\u2212X"));
817     } else {
818         origin_x_left->setText(i18n("+X"));
819     }
820 }
821
822 void TitleWidget::slotOriginXClicked()
823 {
824     // Update the text displayed on the button.
825     updateTextOriginX();
826
827     QList<QGraphicsItem*> l = graphicsView->scene()->selectedItems();
828     if (l.size() >= 1) {
829         updateCoordinates(l.at(0));
830
831         // Remember x axis setting
832         l.at(0)->setData(TitleDocument::OriginXLeft, origin_x_left->isChecked() ?
833                          TitleDocument::AxisInverted : TitleDocument::AxisDefault);
834     }
835 }
836
837 void TitleWidget::updateTextOriginY()
838 {
839     if (origin_y_top->isChecked()) {
840         origin_y_top->setText(i18n("\u2212Y"));
841     } else {
842         origin_y_top->setText(i18n("+Y"));
843     }
844 }
845
846 void TitleWidget::slotOriginYClicked()
847 {
848     // Update the text displayed on the button.
849     updateTextOriginY();
850
851     QList<QGraphicsItem*> l = graphicsView->scene()->selectedItems();
852     if (l.size() >= 1) {
853         updateCoordinates(l.at(0));
854
855         l.at(0)->setData(TitleDocument::OriginYTop, origin_y_top->isChecked() ?
856                          TitleDocument::AxisInverted : TitleDocument::AxisDefault);
857
858     }
859 }
860
861 void TitleWidget::updateAxisButtons(QGraphicsItem *i)
862 {
863     int xAxis = i->data(TitleDocument::OriginXLeft).toInt();
864     int yAxis = i->data(TitleDocument::OriginYTop).toInt();
865     origin_x_left->blockSignals(true);
866     origin_y_top->blockSignals(true);
867
868     if (xAxis == TitleDocument::AxisInverted) {
869         origin_x_left->setChecked(true);
870     } else {
871         origin_x_left->setChecked(false);
872     }
873     updateTextOriginX();
874
875     if (yAxis == TitleDocument::AxisInverted) {
876         origin_y_top->setChecked(true);
877     } else {
878         origin_y_top->setChecked(false);
879     }
880     updateTextOriginY();
881
882     origin_x_left->blockSignals(false);
883     origin_y_top->blockSignals(false);
884 }
885
886 void TitleWidget::slotChangeBackground()
887 {
888     QColor color = kcolorbutton->color();
889     color.setAlpha(horizontalSlider->value());
890     m_frameBorder->setBrush(QBrush(color));
891 }
892
893 /**
894  * Something (yeah) has changed in our QGraphicsScene.
895  */
896 void TitleWidget::slotChanged()
897 {
898     QList<QGraphicsItem*> l = graphicsView->scene()->selectedItems();
899     if (l.size() >= 1 && l.at(0)->type() == TEXTITEM) {
900         textChanged(static_cast <QGraphicsTextItem *>(l.at(0)));
901     }
902 }
903
904 /**
905  * If the user has set origin_x_left (everything also for y),
906  * we need to look whether a text element has been selected. If yes,
907  * we need to ensure that the right border of the text field
908  * remains fixed also when some text has been entered.
909  *
910  * This is also known as right-justified, with the difference that
911  * it is not valid for text but for its boundingRect. Text may still
912  * be left-justified.
913  */
914 void TitleWidget::textChanged(QGraphicsTextItem *i)
915 {
916
917     updateDimension(i);
918
919     if (origin_x_left->isChecked() || origin_y_top->isChecked()) {
920
921         if (!i->toPlainText().isEmpty()) {
922             updatePosition(i);
923         } else {
924             /*
925              * Don't do anything if the string is empty. If the position
926              * would be updated here, a newly created text field would
927              * be set to the position of the last selected text field.
928              */
929         }
930     }
931 }
932
933 void TitleWidget::slotInsertUnicode()
934 {
935     m_unicodeDialog->showLastUnicode();
936     m_unicodeDialog->exec();
937 }
938
939 void TitleWidget::slotInsertUnicodeString(QString text)
940 {
941     QList<QGraphicsItem *> l = graphicsView->scene()->selectedItems();
942     if (l.size() > 0) {
943         if (l.at(0)->type() == TEXTITEM) {
944             QGraphicsTextItem *t = static_cast <QGraphicsTextItem *>(l.at(0));
945             t->textCursor().insertText(text);
946         }
947     }
948 }
949
950 void TitleWidget::slotUpdateText()
951 {
952     QFont font = font_family->currentFont();
953     font.setPixelSize(font_size->value());
954     font.setBold(buttonBold->isChecked());
955     font.setItalic(buttonItalic->isChecked());
956     font.setUnderline(buttonUnder->isChecked());
957     QColor color = fontColorButton->color();
958     color.setAlpha(textAlpha->value());
959
960     QGraphicsTextItem* item = NULL;
961     QList<QGraphicsItem*> l = graphicsView->scene()->selectedItems();
962     if (l.size() == 1 && l.at(0)->type() == TEXTITEM) {
963         item = static_cast <QGraphicsTextItem *>(l.at(0));
964     }
965     if (!item) return;
966     //if (item->textCursor().selection ().isEmpty())
967     QTextCursor cur = item->textCursor();
968     QTextBlockFormat format = cur.blockFormat();
969     if (buttonAlignLeft->isChecked() || buttonAlignCenter->isChecked() || buttonAlignRight->isChecked()) {
970         item->setTextWidth(item->boundingRect().width());
971         if (buttonAlignCenter->isChecked()) format.setAlignment(Qt::AlignHCenter);
972         else if (buttonAlignRight->isChecked()) format.setAlignment(Qt::AlignRight);
973         else if (buttonAlignLeft->isChecked()) format.setAlignment(Qt::AlignLeft);
974     } else {
975         format.setAlignment(Qt::AlignLeft);
976         item->setTextWidth(-1);
977     }
978
979     {
980         item->setFont(font);
981         item->setDefaultTextColor(color);
982         cur.select(QTextCursor::Document);
983         cur.setBlockFormat(format);
984         item->setTextCursor(cur);
985         cur.clearSelection();
986         item->setTextCursor(cur);
987
988     }
989 }
990
991 void TitleWidget::rectChanged()
992 {
993     QList<QGraphicsItem*> l = graphicsView->scene()->selectedItems();
994     if (l.size() == 1 && l.at(0)->type() == RECTITEM && !settingUp) {
995         QGraphicsRectItem *rec = static_cast<QGraphicsRectItem *>(l.at(0));
996         QColor f = rectFColor->color();
997         f.setAlpha(rectFAlpha->value());
998         QPen penf(f);
999         penf.setWidth(rectLineWidth->value());
1000         rec->setPen(penf);
1001         QColor b = rectBColor->color();
1002         b.setAlpha(rectBAlpha->value());
1003         rec->setBrush(QBrush(b));
1004     }
1005 }
1006
1007 void TitleWidget::itemScaled(int val)
1008 {
1009     QList<QGraphicsItem*> l = graphicsView->scene()->selectedItems();
1010     if (l.size() == 1) {
1011         Transform x = m_transformations.value(l.at(0));
1012         x.scalex = (double)val / 100.0;
1013         x.scaley = (double)val / 100.0;
1014         QTransform qtrans;
1015         qtrans.scale(x.scalex, x.scaley);
1016         qtrans.rotate(x.rotate);
1017         l[0]->setTransform(qtrans);
1018         m_transformations[l.at(0)] = x;
1019         updateDimension(l.at(0));
1020     }
1021 }
1022
1023 void TitleWidget::itemRotate(int val)
1024 {
1025     QList<QGraphicsItem*> l = graphicsView->scene()->selectedItems();
1026     if (l.size() == 1) {
1027         Transform x = m_transformations[l.at(0)];
1028         x.rotate = (double)val;
1029         QTransform qtrans;
1030         qtrans.scale(x.scalex, x.scaley);
1031         qtrans.rotate(x.rotate);
1032         l[0]->setTransform(qtrans);
1033         m_transformations[l.at(0)] = x;
1034         updateDimension(l.at(0));
1035     }
1036 }
1037
1038 void TitleWidget::itemHCenter()
1039 {
1040     QList<QGraphicsItem*> l = graphicsView->scene()->selectedItems();
1041     if (l.size() == 1) {
1042         QGraphicsItem *item = l.at(0);
1043         QRectF br;
1044         br = item->sceneBoundingRect();
1045         int width = (int)br.width();
1046         int newPos = (int)((m_frameWidth - width) / 2);
1047         newPos += item->pos().x() - br.left(); // Check item transformation
1048         item->setPos(newPos, item->pos().y());
1049         updateCoordinates(item);
1050     }
1051 }
1052
1053 void TitleWidget::itemVCenter()
1054 {
1055     QList<QGraphicsItem*> l = graphicsView->scene()->selectedItems();
1056     if (l.size() == 1) {
1057         QGraphicsItem *item = l.at(0);
1058         QRectF br;
1059         br = item->sceneBoundingRect();
1060         int height = (int)br.height();
1061         int newPos = (int)((m_frameHeight - height) / 2);
1062         newPos += item->pos().y() - br.top(); // Check item transformation
1063         item->setPos(item->pos().x(), newPos);
1064         updateCoordinates(item);
1065     }
1066 }
1067
1068 void TitleWidget::setupViewports()
1069 {
1070     double aspect_ratio = 4.0 / 3.0;//read from project
1071
1072     QRectF sp(0, 0, 0, 0);
1073     QRectF ep(0, 0, 0, 0);
1074
1075     double sv_size = startViewportSize->value();
1076     double ev_size = endViewportSize->value();
1077     sp.adjust(-sv_size, -sv_size / aspect_ratio, sv_size, sv_size / aspect_ratio);
1078     ep.adjust(-ev_size, -ev_size / aspect_ratio, ev_size, ev_size / aspect_ratio);
1079
1080     m_startViewport->setPos(startViewportX->value(), startViewportY->value());
1081     m_endViewport->setPos(endViewportX->value(), endViewportY->value());
1082
1083     m_startViewport->setPolygon(QPolygonF(sp));
1084     m_endViewport->setPolygon(QPolygonF(ep));
1085
1086 }
1087
1088 void TitleWidget::loadTitle()
1089 {
1090     KUrl url = KFileDialog::getOpenUrl(KUrl(m_projectPath), "*.kdenlivetitle", this, i18n("Load Title"));
1091     if (!url.isEmpty()) {
1092         QList<QGraphicsItem *> items = m_scene->items();
1093         for (int i = 0; i < items.size(); i++) {
1094             if (items.at(i)->zValue() > -1000) delete items.at(i);
1095         }
1096         m_count = m_titledocument.loadDocument(url, m_startViewport, m_endViewport) + 1;
1097         slotSelectTool();
1098     }
1099 }
1100
1101 void TitleWidget::saveTitle(KUrl url)
1102 {
1103     if (url.isEmpty()) url = KFileDialog::getSaveUrl(KUrl(m_projectPath), "*.kdenlivetitle", this, i18n("Save Title"));
1104     if (!url.isEmpty()) {
1105         if (m_titledocument.saveDocument(url, m_startViewport, m_endViewport) == false)
1106             KMessageBox::error(this, i18n("Cannot write to file %1", url.path()));
1107     }
1108 }
1109
1110 QDomDocument TitleWidget::xml()
1111 {
1112     QDomDocument doc = m_titledocument.xml(m_startViewport, m_endViewport);
1113     if (cropImage->isChecked()) {
1114         doc.documentElement().setAttribute("crop", 1);
1115     }
1116     return doc;
1117 }
1118
1119 void TitleWidget::setXml(QDomDocument doc)
1120 {
1121     m_count = m_titledocument.loadFromXml(doc, m_startViewport, m_endViewport);
1122     QDomElement e = doc.documentElement();
1123     cropImage->setChecked(e.hasAttribute("crop"));
1124     m_transformations.clear();
1125     QList <QGraphicsItem *> items = graphicsView->scene()->items();
1126     const double PI = 4.0 * atan(1.0);
1127     for (int i = 0; i < items.count(); i++) {
1128         QTransform t = items.at(i)->transform();
1129         Transform x;
1130         x.scalex = t.m11();
1131         x.scaley = t.m22();
1132         x.rotate = 180. / PI * atan2(-t.m21(), t.m11());
1133         m_transformations[items.at(i)] = x;
1134     }
1135     // mbd: Update the GUI color selectors to match the stuff from the loaded document
1136     QColor background_color = m_titledocument.getBackgroundColor();
1137     horizontalSlider->blockSignals(true);
1138     kcolorbutton->blockSignals(true);
1139     horizontalSlider->setValue(background_color.alpha());
1140     background_color.setAlpha(255);
1141     kcolorbutton->setColor(background_color);
1142     horizontalSlider->blockSignals(false);
1143     kcolorbutton->blockSignals(false);
1144
1145     slotSelectTool();
1146 }
1147
1148 QImage TitleWidget::renderedPixmap()
1149 {
1150     int minX = 0;
1151     int minY = 0;
1152     int maxX = m_frameWidth;
1153     int maxY = m_frameHeight;
1154     if (!cropImage->isChecked()) {
1155         m_scene->removeItem(m_startViewport);
1156         m_scene->removeItem(m_endViewport);
1157         QRect boundingRect = m_scene->itemsBoundingRect().toRect();
1158         if (boundingRect.left() < 0) minX = boundingRect.left();
1159         if (boundingRect.top() < 0) minY = boundingRect.top();
1160         if (boundingRect.right() > maxX) maxX = boundingRect.right();
1161         if (boundingRect.bottom() > maxY) maxY = boundingRect.bottom();
1162         if (minX < 0) {
1163             maxX = maxX - minX;
1164         }
1165         if (minY < 0) {
1166             maxY = maxY - minY;
1167         }
1168     }
1169
1170     QImage pix(maxX, maxY, QImage::Format_ARGB32);
1171     pix.fill(Qt::transparent);
1172     QPainter painter(&pix);
1173     painter.setRenderHints(QPainter::Antialiasing | QPainter::TextAntialiasing | QPainter::HighQualityAntialiasing);
1174     m_scene->clearTextSelection();
1175     QPen framepen = m_frameBorder->pen();
1176     m_frameBorder->setPen(Qt::NoPen);
1177     m_startViewport->setVisible(false);
1178     m_endViewport->setVisible(false);
1179     m_frameImage->setVisible(false);
1180
1181     m_scene->render(&painter, QRectF(), QRectF(minX, minY, maxX - minX, maxY - minY));
1182     painter.end();
1183     m_frameBorder->setPen(framepen);
1184     m_startViewport->setVisible(true);
1185     m_endViewport->setVisible(true);
1186     m_frameImage->setVisible(true);
1187     return pix;
1188 }
1189
1190 /** \brief Connected to the accepted signal - calls writeChoices */
1191 void TitleWidget::slotAccepted()
1192 {
1193     writeChoices();
1194 }
1195
1196 /** \brief Store the current choices of font, background and rect values */
1197 void TitleWidget::writeChoices()
1198 {
1199     // Get a pointer to a shared configuration instance, then get the TitleWidget group.
1200     KSharedConfigPtr config = KGlobal::config();
1201     KConfigGroup titleConfig(config, "TitleWidget");
1202     // Write the entries
1203     titleConfig.writeEntry("font_family", font_family->currentFont());
1204     //titleConfig.writeEntry("font_size", font_size->value());
1205     titleConfig.writeEntry("font_pixel_size", font_size->value());
1206     titleConfig.writeEntry("font_color", fontColorButton->color());
1207     titleConfig.writeEntry("font_alpha", textAlpha->value());
1208     titleConfig.writeEntry("font_bold", buttonBold->isChecked());
1209     titleConfig.writeEntry("font_italic", buttonItalic->isChecked());
1210     titleConfig.writeEntry("font_underlined", buttonUnder->isChecked());
1211
1212     titleConfig.writeEntry("rect_foreground_color", rectFColor->color());
1213     titleConfig.writeEntry("rect_foreground_alpha", rectFAlpha->value());
1214     titleConfig.writeEntry("rect_background_color", rectBColor->color());
1215     titleConfig.writeEntry("rect_background_alpha", rectBAlpha->value());
1216     titleConfig.writeEntry("rect_line_width", rectLineWidth->value());
1217
1218     titleConfig.writeEntry("background_color", kcolorbutton->color());
1219     titleConfig.writeEntry("background_alpha", horizontalSlider->value());
1220
1221     titleConfig.writeEntry("crop_image", cropImage->isChecked());
1222     //! \todo Not sure if I should sync - it is probably safe to do it
1223     config->sync();
1224
1225 }
1226
1227 /** \brief Read the last stored choices into the dialog */
1228 void TitleWidget::readChoices()
1229 {
1230     // Get a pointer to a shared configuration instance, then get the TitleWidget group.
1231     KSharedConfigPtr config = KGlobal::config();
1232     KConfigGroup titleConfig(config, "TitleWidget");
1233     // read the entries
1234     font_family->setCurrentFont(titleConfig.readEntry("font_family", font_family->currentFont()));
1235     font_size->setValue(titleConfig.readEntry("font_pixel_size", font_size->value()));
1236     fontColorButton->setColor(titleConfig.readEntry("font_color", fontColorButton->color()));
1237     textAlpha->setValue(titleConfig.readEntry("font_alpha", textAlpha->value()));
1238     buttonBold->setChecked(titleConfig.readEntry("font_bold", buttonBold->isChecked()));
1239     buttonItalic->setChecked(titleConfig.readEntry("font_italic", buttonItalic->isChecked()));
1240     buttonUnder->setChecked(titleConfig.readEntry("font_underlined", buttonUnder->isChecked()));
1241
1242     rectFColor->setColor(titleConfig.readEntry("rect_foreground_color", rectFColor->color()));
1243     rectFAlpha->setValue(titleConfig.readEntry("rect_foreground_alpha", rectFAlpha->value()));
1244     rectBColor->setColor(titleConfig.readEntry("rect_background_color", rectBColor->color()));
1245     rectBAlpha->setValue(titleConfig.readEntry("rect_background_alpha", rectBAlpha->value()));
1246     rectLineWidth->setValue(titleConfig.readEntry("rect_line_width", rectLineWidth->value()));
1247
1248     kcolorbutton->setColor(titleConfig.readEntry("background_color", kcolorbutton->color()));
1249     horizontalSlider->setValue(titleConfig.readEntry("background_alpha", horizontalSlider->value()));
1250
1251     cropImage->setChecked(titleConfig.readEntry("crop_image", cropImage->isChecked()));
1252 }
1253