]> git.sesse.net Git - kdenlive/blob - src/geometrywidget.cpp
Fix geomerty parsing of some effects to use the new separators, don't add a ";" after...
[kdenlive] / src / geometrywidget.cpp
1 /***************************************************************************
2  *   Copyright (C) 2010 by Till Theato (root@ttill.de)                     *
3  *                                                                         *
4  *   This program is free software; you can redistribute it and/or modify  *
5  *   it under the terms of the GNU General Public License as published by  *
6  *   the Free Software Foundation; either version 2 of the License, or     *
7  *   (at your option) any later version.                                   *
8  *                                                                         *
9  *   This program is distributed in the hope that it will be useful,       *
10  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
11  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
12  *   GNU General Public License for more details.                          *
13  *                                                                         *
14  *   You should have received a copy of the GNU General Public License     *
15  *   along with this program; if not, write to the                         *
16  *   Free Software Foundation, Inc.,                                       *
17  *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA          *
18  ***************************************************************************/
19
20
21 #include "geometrywidget.h"
22 #include "monitor.h"
23 #include "renderer.h"
24 #include "keyframehelper.h"
25 #include "timecodedisplay.h"
26 #include "monitorscene.h"
27 #include "monitoreditwidget.h"
28 #include "onmonitoritems/onmonitorrectitem.h"
29 #include "kdenlivesettings.h"
30 #include "dragvalue.h"
31
32 #include <QtCore>
33 #include <QGraphicsView>
34 #include <QVBoxLayout>
35 #include <QGridLayout>
36 #include <QMenu>
37
38
39
40 GeometryWidget::GeometryWidget(Monitor* monitor, Timecode timecode, int clipPos, bool isEffect, bool showRotation, QWidget* parent):
41     QWidget(parent),
42     m_monitor(monitor),
43     m_timePos(new TimecodeDisplay(timecode)),
44     m_clipPos(clipPos),
45     m_inPoint(0),
46     m_outPoint(1),
47     m_isEffect(isEffect),
48     m_rect(NULL),
49     m_previous(NULL),
50     m_geometry(NULL),
51     m_showScene(true),
52     m_showRotation(showRotation)
53 {
54     m_ui.setupUi(this);
55     setSizePolicy(QSizePolicy::MinimumExpanding, QSizePolicy::Maximum);
56     MonitorEditWidget *edit = monitor->getEffectEdit();
57     edit->removeCustomControls();
58     edit->addCustomButton(KIcon("transform-crop"), i18n("Show previous keyframe"), this, SLOT(slotShowPreviousKeyFrame(bool)), true, KdenliveSettings::onmonitoreffects_geometryshowprevious());
59     edit->showVisibilityButton(true);
60     m_scene = edit->getScene();
61
62
63     /*
64         Setup of timeline and keyframe controls
65     */
66
67     ((QGridLayout *)(m_ui.widgetTimeWrapper->layout()))->addWidget(m_timePos, 1, 6);
68
69     QVBoxLayout *layout = new QVBoxLayout(m_ui.frameTimeline);
70     m_timeline = new KeyframeHelper(m_ui.frameTimeline);
71     layout->addWidget(m_timeline);
72     layout->setContentsMargins(0, 0, 0, 0);
73
74     m_ui.buttonPrevious->setIcon(KIcon("media-skip-backward"));
75     m_ui.buttonPrevious->setToolTip(i18n("Go to previous keyframe"));
76     m_ui.buttonNext->setIcon(KIcon("media-skip-forward"));
77     m_ui.buttonNext->setToolTip(i18n("Go to next keyframe"));
78     m_ui.buttonAddDelete->setIcon(KIcon("document-new"));
79     m_ui.buttonAddDelete->setToolTip(i18n("Add keyframe"));
80
81     m_ui.buttonSync->setIcon(KIcon("insert-link"));
82     m_ui.buttonSync->setToolTip(i18n("Synchronize with timeline cursor"));
83     m_ui.buttonSync->setChecked(KdenliveSettings::transitionfollowcursor());
84
85     connect(m_timeline, SIGNAL(positionChanged(int)), this, SLOT(slotPositionChanged(int)));
86     connect(m_timeline, SIGNAL(keyframeMoved(int)),   this, SLOT(slotKeyframeMoved(int)));
87     connect(m_timeline, SIGNAL(addKeyframe(int)),     this, SLOT(slotAddKeyframe(int)));
88     connect(m_timeline, SIGNAL(removeKeyframe(int)),  this, SLOT(slotDeleteKeyframe(int)));
89     connect(m_timePos, SIGNAL(editingFinished()), this, SLOT(slotPositionChanged()));
90     connect(m_ui.buttonPrevious,  SIGNAL(clicked()), this, SLOT(slotPreviousKeyframe()));
91     connect(m_ui.buttonNext,      SIGNAL(clicked()), this, SLOT(slotNextKeyframe()));
92     connect(m_ui.buttonAddDelete, SIGNAL(clicked()), this, SLOT(slotAddDeleteKeyframe()));
93     connect(m_ui.buttonSync,      SIGNAL(toggled(bool)), this, SLOT(slotSetSynchronize(bool)));
94
95     m_spinX = new DragValue(i18nc("x axis position", "X"), 0, 0, -99000, 99000, -1, QString(), false, this);
96     m_ui.horizontalLayout->addWidget(m_spinX);
97     
98     m_spinY = new DragValue(i18nc("y axis position", "Y"), 0, 0, -99000, 99000, -1, QString(), false, this);
99     m_ui.horizontalLayout->addWidget(m_spinY);
100     
101     m_spinWidth = new DragValue(i18nc("Frame width", "W"), m_monitor->render->frameRenderWidth(), 0, 1, 99000, -1, QString(), false, this);
102     m_ui.horizontalLayout->addWidget(m_spinWidth);
103     
104     m_spinHeight = new DragValue(i18nc("Frame height", "H"), m_monitor->render->renderHeight(), 0, 1, 99000, -1, QString(), false, this);
105     m_ui.horizontalLayout->addWidget(m_spinHeight);
106
107     QMenu *menu = new QMenu(this);
108     QAction *adjustSize = new QAction(i18n("Adjust to original size"), this);
109     connect(adjustSize, SIGNAL(triggered()), this, SLOT(slotAdjustToFrameSize()));
110     menu->addAction(adjustSize);
111     QAction *fitToWidth = new QAction(i18n("Fit to width"), this);
112     connect(fitToWidth, SIGNAL(triggered()), this, SLOT(slotFitToWidth()));
113     menu->addAction(fitToWidth);
114     QAction *fitToHeight = new QAction(i18n("Fit to height"), this);
115     connect(fitToHeight, SIGNAL(triggered()), this, SLOT(slotFitToHeight()));
116     menu->addAction(fitToHeight);
117     menu->addSeparator();
118
119     QAction *alignleft = new QAction(KIcon("kdenlive-align-left"), i18n("Align left"), this);
120     connect(alignleft, SIGNAL(triggered()), this, SLOT(slotMoveLeft()));
121     menu->addAction(alignleft);
122     QAction *alignhcenter = new QAction(KIcon("kdenlive-align-hor"), i18n("Center horizontally"), this);
123     connect(alignhcenter, SIGNAL(triggered()), this, SLOT(slotCenterH()));
124     menu->addAction(alignhcenter);
125     QAction *alignright = new QAction(KIcon("kdenlive-align-right"), i18n("Align right"), this);
126     connect(alignright, SIGNAL(triggered()), this, SLOT(slotMoveRight()));
127     menu->addAction(alignright);
128     QAction *aligntop = new QAction(KIcon("kdenlive-align-top"), i18n("Align top"), this);
129     connect(aligntop, SIGNAL(triggered()), this, SLOT(slotMoveTop()));
130     menu->addAction(aligntop);
131     QAction *alignvcenter = new QAction(KIcon("kdenlive-align-vert"), i18n("Center vertically"), this);
132     connect(alignvcenter, SIGNAL(triggered()), this, SLOT(slotCenterV()));
133     menu->addAction(alignvcenter);
134     QAction *alignbottom = new QAction(KIcon("kdenlive-align-bottom"), i18n("Align bottom"), this);
135     connect(alignbottom, SIGNAL(triggered()), this, SLOT(slotMoveBottom()));
136     menu->addAction(alignbottom);
137     m_ui.buttonOptions->setMenu(menu);
138
139     QHBoxLayout *alignLayout = new QHBoxLayout;
140     alignLayout->setSpacing(0);
141     QToolButton *alignButton = new QToolButton;
142     alignButton->setDefaultAction(alignleft);
143     alignButton->setAutoRaise(true);
144     alignLayout->addWidget(alignButton);
145
146     alignButton = new QToolButton;
147     alignButton->setDefaultAction(alignhcenter);
148     alignButton->setAutoRaise(true);
149     alignLayout->addWidget(alignButton);
150
151     alignButton = new QToolButton;
152     alignButton->setDefaultAction(alignright);
153     alignButton->setAutoRaise(true);
154     alignLayout->addWidget(alignButton);
155
156     alignButton = new QToolButton;
157     alignButton->setDefaultAction(aligntop);
158     alignButton->setAutoRaise(true);
159     alignLayout->addWidget(alignButton);
160
161     alignButton = new QToolButton;
162     alignButton->setDefaultAction(alignvcenter);
163     alignButton->setAutoRaise(true);
164     alignLayout->addWidget(alignButton);
165
166     alignButton = new QToolButton;
167     alignButton->setDefaultAction(alignbottom);
168     alignButton->setAutoRaise(true);
169     alignLayout->addWidget(alignButton);
170
171     m_ui.horizontalLayout->addLayout(alignLayout);
172     m_ui.horizontalLayout->addStretch(10);
173     
174     m_spinSize = new DragValue(i18n("Size"), 100, 2, 1, 99000, -1, i18n("%"), false, this);
175     m_ui.horizontalLayout2->addWidget(m_spinSize);
176     
177     m_opacity = new DragValue(i18n("Opacity"), 100, 0, 0, 100, -1, i18n("%"), true, this);
178     m_ui.horizontalLayout2->addWidget(m_opacity);
179
180
181     if (showRotation) {
182         m_rotateX = new DragValue(i18n("Rotate X"), 0, 0, -1800, 1800, -1, QString(), true, this);
183         m_rotateX->setObjectName("rotate_x");
184         m_ui.horizontalLayout3->addWidget(m_rotateX);
185         m_rotateY = new DragValue(i18n("Rotate Y"), 0, 0, -1800, 1800,  -1, QString(), true, this);
186         m_rotateY->setObjectName("rotate_y");
187         m_ui.horizontalLayout3->addWidget(m_rotateY);
188         m_rotateZ = new DragValue(i18n("Rotate Z"), 0, 0, -1800, 1800,  -1, QString(), true, this);
189         m_rotateZ->setObjectName("rotate_z");
190         m_ui.horizontalLayout3->addWidget(m_rotateZ);
191         connect(m_rotateX,            SIGNAL(valueChanged(double)), this, SLOT(slotUpdateGeometry()));
192         connect(m_rotateY,            SIGNAL(valueChanged(double)), this, SLOT(slotUpdateGeometry()));
193         connect(m_rotateZ,            SIGNAL(valueChanged(double)), this, SLOT(slotUpdateGeometry()));
194     }
195     
196     /*
197         Setup of geometry controls
198     */
199
200     connect(m_spinX,            SIGNAL(valueChanged(double)), this, SLOT(slotSetX(double)));
201     connect(m_spinY,            SIGNAL(valueChanged(double)), this, SLOT(slotSetY(double)));
202     connect(m_spinWidth,        SIGNAL(valueChanged(double)), this, SLOT(slotSetWidth(double)));
203     connect(m_spinHeight,       SIGNAL(valueChanged(double)), this, SLOT(slotSetHeight(double)));
204
205     connect(m_spinSize,         SIGNAL(valueChanged(double)), this, SLOT(slotResize(double)));
206
207     connect(m_opacity, SIGNAL(valueChanged(double)), this, SLOT(slotSetOpacity(double)));
208     
209     /*connect(m_ui.buttonMoveLeft,   SIGNAL(clicked()), this, SLOT(slotMoveLeft()));
210     connect(m_ui.buttonCenterH,    SIGNAL(clicked()), this, SLOT(slotCenterH()));
211     connect(m_ui.buttonMoveRight,  SIGNAL(clicked()), this, SLOT(slotMoveRight()));
212     connect(m_ui.buttonMoveTop,    SIGNAL(clicked()), this, SLOT(slotMoveTop()));
213     connect(m_ui.buttonCenterV,    SIGNAL(clicked()), this, SLOT(slotCenterV()));
214     connect(m_ui.buttonMoveBottom, SIGNAL(clicked()), this, SLOT(slotMoveBottom()));*/
215
216
217     /*
218         Setup of configuration controls
219     */
220
221     connect(edit, SIGNAL(showEdit(bool)), this, SLOT(slotShowScene(bool)));
222
223     connect(m_scene, SIGNAL(addKeyframe()),    this, SLOT(slotAddKeyframe()));
224     connect(m_monitor, SIGNAL(renderPosition(int)), this, SLOT(slotCheckMonitorPosition(int)));
225     connect(this, SIGNAL(parameterChanged()), this, SLOT(slotUpdateProperties()));
226 }
227
228 GeometryWidget::~GeometryWidget()
229 {
230     m_scene->setEnabled(true);
231     delete m_timePos;
232     delete m_timeline;
233     delete m_spinX;
234     delete m_spinY;
235     delete m_spinWidth;
236     delete m_spinHeight;
237     delete m_opacity;
238     m_scene->removeItem(m_rect);
239     if (m_rect) delete m_rect;
240     if (m_previous) delete m_previous;
241     delete m_geometry;
242     m_extraGeometryNames.clear();
243     m_extraFactors.clear();
244     while (!m_extraGeometries.isEmpty()) {
245         Mlt::Geometry *g = m_extraGeometries.takeFirst();
246         delete g;
247     }
248     if (m_monitor) {
249         m_monitor->getEffectEdit()->showVisibilityButton(false);
250         m_monitor->slotEffectScene(false);
251     }
252 }
253
254 void GeometryWidget::slotShowPreviousKeyFrame(bool show)
255 {
256     KdenliveSettings::setOnmonitoreffects_geometryshowprevious(show);
257     slotPositionChanged(-1, false);
258 }
259
260 void GeometryWidget::updateTimecodeFormat()
261 {
262     m_timePos->slotUpdateTimeCodeFormat();
263 }
264
265 QString GeometryWidget::getValue() const
266 {
267     return m_geometry->serialise();
268 }
269
270 QString GeometryWidget::getExtraValue(const QString &name) const
271 {
272     int ix = m_extraGeometryNames.indexOf(name);
273     QString val = m_extraGeometries.at(ix)->serialise();
274     if (!val.contains("=")) val = val.section('/', 0, 0);
275     else {
276         QStringList list = val.split(';', QString::SkipEmptyParts);
277         val.clear();
278         val.append(list.takeFirst().section('/', 0, 0));
279         foreach (const QString value, list) {
280             val.append(';' + value.section('/', 0, 0));
281         }
282     }
283     return val;
284 }
285
286 void GeometryWidget::setupParam(const QDomElement elem, int minframe, int maxframe)
287 {
288     m_inPoint = minframe;
289     m_outPoint = maxframe;
290
291     if (m_geometry)
292         m_geometry->parse(elem.attribute("value").toUtf8().data(), maxframe - minframe, m_monitor->render->frameRenderWidth(), m_monitor->render->renderHeight());
293     else
294         m_geometry = new Mlt::Geometry(elem.attribute("value").toUtf8().data(), maxframe - minframe, m_monitor->render->frameRenderWidth(), m_monitor->render->renderHeight());
295
296     if (elem.attribute("fixed") == "1" || maxframe < minframe) {
297         // Keyframes are disabled
298         m_ui.widgetTimeWrapper->setHidden(true);
299     } else {
300         m_ui.widgetTimeWrapper->setHidden(false);
301         m_timeline->setKeyGeometry(m_geometry, m_outPoint - m_inPoint);
302         m_timeline->update();
303         m_timePos->setRange(0, m_outPoint - m_inPoint);
304     }
305
306     // no opacity
307     if (elem.attribute("opacity") == "false") {
308         m_opacity->setHidden(true);
309         m_ui.horizontalLayout2->addStretch(2);
310     }
311
312     Mlt::GeometryItem item;
313
314     m_geometry->fetch(&item, 0);
315     delete m_rect;
316     m_rect = new OnMonitorRectItem(QRectF(0, 0, item.w(), item.h()), m_monitor->render->dar());
317     m_rect->setPos(item.x(), item.y());
318     m_rect->setZValue(0);
319     m_scene->addItem(m_rect);
320     connect(m_rect, SIGNAL(changed()), this, SLOT(slotUpdateGeometry()));
321
322     slotPositionChanged(0, false);
323     slotCheckMonitorPosition(m_monitor->render->seekFramePosition());
324 }
325
326 void GeometryWidget::addParameter(const QDomElement elem)
327 {
328     Mlt::Geometry *geometry = new Mlt::Geometry(elem.attribute("value").toUtf8().data(), m_outPoint - m_inPoint, m_monitor->render->frameRenderWidth(), m_monitor->render->renderHeight());
329     m_extraGeometries.append(geometry);
330     m_timeline->addGeometry(geometry);
331     m_extraFactors.append(elem.attribute("factor", "1"));
332     m_extraGeometryNames.append(elem.attribute("name"));
333     //kDebug()<<"ADDED PARAM: "<<elem.attribute("value");
334 }
335
336 void GeometryWidget::slotSyncPosition(int relTimelinePos)
337 {
338     // do only sync if this effect is keyframable
339     if (m_timePos->maximum() > 0 && KdenliveSettings::transitionfollowcursor()) {
340         relTimelinePos = qBound(0, relTimelinePos, m_timePos->maximum());
341         if (relTimelinePos != m_timePos->getValue())
342             slotPositionChanged(relTimelinePos, false);
343     }
344 }
345
346
347 void GeometryWidget::slotPositionChanged(int pos, bool seek)
348 {
349     if (pos == -1)
350         pos = m_timePos->getValue();
351     else
352         m_timePos->setValue(pos);
353
354     m_timeline->blockSignals(true);
355     m_timeline->setValue(pos);
356     m_timeline->blockSignals(false);
357
358     Mlt::GeometryItem item;
359     Mlt::GeometryItem previousItem;
360     if (m_geometry->fetch(&item, pos) || item.key() == false) {
361         // no keyframe
362         m_rect->setEnabled(false);
363         m_scene->setEnabled(false);
364         m_ui.widgetGeometry->setEnabled(false);
365         m_ui.buttonAddDelete->setIcon(KIcon("document-new"));
366         m_ui.buttonAddDelete->setToolTip(i18n("Add keyframe"));
367     } else {
368         // keyframe
369         m_rect->setEnabled(true);
370         m_scene->setEnabled(true);
371         m_ui.widgetGeometry->setEnabled(true);
372         m_ui.buttonAddDelete->setIcon(KIcon("edit-delete"));
373         m_ui.buttonAddDelete->setToolTip(i18n("Delete keyframe"));
374     }
375     
376     if (KdenliveSettings::onmonitoreffects_geometryshowprevious() == false || m_geometry->prev_key(&previousItem, pos - 1) || previousItem.frame() == item.frame()) {
377         if (m_previous) {
378             m_scene->removeItem(m_previous);
379         }
380     }
381     else if (m_previous && m_previous->scene() && m_previous->data(Qt::UserRole).toInt() == previousItem.frame()) {
382         // previous frame already here, do nothing
383     }
384     else {
385         if (m_previous == NULL) {
386             m_previous = new QGraphicsRectItem(0, 0, previousItem.w(), previousItem.h());
387             m_previous->setBrush(QColor(200, 200, 0, 20));
388             m_previous->setPen(QPen(Qt::white, 0, Qt::DotLine));
389             m_previous->setPos(previousItem.x(), previousItem.y());
390             m_previous->setZValue(-1);
391             m_previous->setEnabled(false);
392         }
393         else {
394             m_previous->setPos(previousItem.x(), previousItem.y());
395             m_previous->setRect(0, 0, previousItem.w(), previousItem.h());
396         }
397         m_previous->setData(Qt::UserRole, previousItem.frame());
398         if (m_previous->scene() == 0) m_scene->addItem(m_previous);
399     }
400
401     m_rect->setPos(item.x(), item.y());
402     m_rect->setRect(0, 0, item.w(), item.h());
403
404     m_opacity->blockSignals(true);
405     m_opacity->setValue(item.mix());
406     m_opacity->blockSignals(false);
407
408     for (int i = 0; i < m_extraGeometries.count(); i++) {
409         Mlt::Geometry *geom = m_extraGeometries.at(i);
410         QString name = m_extraGeometryNames.at(i);
411         if (!geom->fetch(&item, pos)) {
412             DragValue *widget = findChild<DragValue *>(name);
413             if (widget) {
414                 widget->blockSignals(true);
415                 widget->setValue(item.x() * m_extraFactors.at(i).toInt());
416                 widget->blockSignals(false);
417             }
418         }
419     }
420
421     slotUpdateProperties();
422
423     if (seek && KdenliveSettings::transitionfollowcursor())
424         emit seekToPos(m_clipPos + pos);
425 }
426
427 void GeometryWidget::slotKeyframeMoved(int pos)
428 {
429     slotPositionChanged(pos);
430     slotUpdateGeometry();
431     QTimer::singleShot(100, this, SIGNAL(parameterChanged()));
432 }
433
434 void GeometryWidget::slotAddKeyframe(int pos)
435 {
436     Mlt::GeometryItem item;
437     if (pos == -1)
438         pos = m_timePos->getValue();
439     item.frame(pos);
440     QRectF r = m_rect->rect().normalized();
441     QPointF rectpos = m_rect->pos();
442     item.x(rectpos.x());
443     item.y(rectpos.y());
444     item.w(r.width());
445     item.h(r.height());
446     item.mix(m_opacity->value());
447     m_geometry->insert(item);
448
449     for (int i = 0; i < m_extraGeometries.count(); i++) {
450         Mlt::Geometry *geom = m_extraGeometries.at(i);
451         QString name = m_extraGeometryNames.at(i);
452         DragValue *widget = findChild<DragValue *>(name);
453         if (widget) {
454             Mlt::GeometryItem item2;
455             item2.frame(pos);
456             item2.x((double) widget->value() / m_extraFactors.at(i).toInt());
457             geom->insert(item2);
458         }
459     }
460     
461     m_timeline->update();
462     slotPositionChanged(pos, false);
463     emit parameterChanged();
464 }
465
466 void GeometryWidget::slotDeleteKeyframe(int pos)
467 {
468     Mlt::GeometryItem item;
469     if (pos == -1)
470         pos = m_timePos->getValue();
471     // check there is more than one keyframe, do not allow to delete last one
472     if (m_geometry->next_key(&item, pos + 1)) {
473         if (m_geometry->prev_key(&item, pos - 1) || item.frame() == pos)
474             return;
475     }
476     m_geometry->remove(pos);
477
478     for (int i = 0; i < m_extraGeometries.count(); i++) {
479         Mlt::Geometry *geom = m_extraGeometries.at(i);
480         geom->remove(pos);
481     }
482
483     m_timeline->update();
484     slotPositionChanged(pos, false);
485     emit parameterChanged();
486 }
487
488 void GeometryWidget::slotPreviousKeyframe()
489 {
490     Mlt::GeometryItem item;
491     // Go to start if no keyframe is found
492     int currentPos = m_timePos->getValue();
493     int pos = 0;
494     if (!m_geometry->prev_key(&item, currentPos - 1) && item.frame() < currentPos)
495         pos = item.frame();
496
497     slotPositionChanged(pos);
498 }
499
500 void GeometryWidget::slotNextKeyframe()
501 {
502     Mlt::GeometryItem item;
503     // Go to end if no keyframe is found
504     int pos = m_timeline->frameLength;
505     if (!m_geometry->next_key(&item, m_timeline->value() + 1))
506         pos = item.frame();
507
508     slotPositionChanged(pos);
509 }
510
511 void GeometryWidget::slotAddDeleteKeyframe()
512 {
513     Mlt::GeometryItem item;
514     if (m_geometry->fetch(&item, m_timePos->getValue()) || item.key() == false)
515         slotAddKeyframe();
516     else
517         slotDeleteKeyframe();
518 }
519
520
521 void GeometryWidget::slotCheckMonitorPosition(int renderPos)
522 {
523     if (m_showScene) {
524         /*
525             We do only get the position in timeline if this geometry belongs to a transition,
526             therefore we need two ways here.
527         */
528         if (m_isEffect) {
529             emit checkMonitorPosition(renderPos);
530         } else {
531             if (renderPos >= m_clipPos && renderPos <= m_clipPos + m_outPoint - m_inPoint) {
532                 if (!m_scene->views().at(0)->isVisible())
533                     m_monitor->slotEffectScene(true);
534             } else {
535                 m_monitor->slotEffectScene(false);
536             }
537         }
538     }
539 }
540
541
542 void GeometryWidget::slotUpdateGeometry()
543 {
544     Mlt::GeometryItem item;
545     int pos = m_timePos->getValue();
546
547     // get keyframe and make sure it is the correct one
548     if (m_geometry->next_key(&item, pos) || item.frame() != pos)
549         return;
550
551     QRectF rectSize = m_rect->rect().normalized();
552     QPointF rectPos = m_rect->pos();
553     item.x(rectPos.x());
554     item.y(rectPos.y());
555     item.w(rectSize.width());
556     item.h(rectSize.height());
557     m_geometry->insert(item);
558
559     for (int i = 0; i < m_extraGeometries.count(); i++) {
560         Mlt::Geometry *geom = m_extraGeometries.at(i);
561         QString name = m_extraGeometryNames.at(i);
562         Mlt::GeometryItem item2;
563         DragValue *widget = findChild<DragValue *>(name);
564         if (widget && !geom->next_key(&item2, pos) && item2.frame() == pos) {
565             item2.x((double) widget->value() / m_extraFactors.at(i).toInt());
566             geom->insert(item2);
567         }
568     }
569     
570     emit parameterChanged();
571 }
572
573 void GeometryWidget::slotUpdateProperties()
574 {
575     QRectF rectSize = m_rect->rect().normalized();
576     QPointF rectPos = m_rect->pos();
577     double size;
578     if (rectSize.width() / m_monitor->render->dar() > rectSize.height())
579         size = rectSize.width() * 100.0 / m_monitor->render->frameRenderWidth();
580     else
581         size = rectSize.height() * 100.0 / m_monitor->render->renderHeight();
582
583     m_spinX->blockSignals(true);
584     m_spinY->blockSignals(true);
585     m_spinWidth->blockSignals(true);
586     m_spinHeight->blockSignals(true);
587     m_spinSize->blockSignals(true);
588
589     m_spinX->setValue(rectPos.x());
590     m_spinY->setValue(rectPos.y());
591     m_spinWidth->setValue(rectSize.width());
592     m_spinHeight->setValue(rectSize.height());
593     m_spinSize->setValue(size);
594
595     m_spinX->blockSignals(false);
596     m_spinY->blockSignals(false);
597     m_spinWidth->blockSignals(false);
598     m_spinHeight->blockSignals(false);
599     m_spinSize->blockSignals(false);
600 }
601
602
603 void GeometryWidget::slotSetX(double value)
604 {
605     m_rect->setPos(value, m_spinY->value());
606     slotUpdateGeometry();
607 }
608
609 void GeometryWidget::slotSetY(double value)
610 {
611     m_rect->setPos(m_spinX->value(), value);
612     slotUpdateGeometry();
613 }
614
615 void GeometryWidget::slotSetWidth(double value)
616 {
617     m_rect->setRect(0, 0, value, m_spinHeight->value());
618     slotUpdateGeometry();
619 }
620
621 void GeometryWidget::slotSetHeight(double value)
622 {
623     m_rect->setRect(0, 0, m_spinWidth->value(), value);
624     slotUpdateGeometry();
625 }
626
627 void GeometryWidget::updateMonitorGeometry()
628 {
629     m_rect->setRect(0, 0, m_spinWidth->value(), m_spinHeight->value());
630     slotUpdateGeometry();
631 }
632
633
634 void GeometryWidget::slotResize(double value)
635 {
636     m_rect->setRect(0, 0,
637                     (int)((m_monitor->render->frameRenderWidth() * value / 100.0) + 0.5),
638                     (int)((m_monitor->render->renderHeight() * value / 100.0) + 0.5));
639     slotUpdateGeometry();
640 }
641
642
643 void GeometryWidget::slotSetOpacity(double value)
644 {
645     int pos = m_timePos->getValue();
646     Mlt::GeometryItem item;
647     if (m_geometry->fetch(&item, pos) || item.key() == false)
648         return;
649     item.mix(value);
650     m_geometry->insert(item);
651     emit parameterChanged();
652 }
653
654
655 void GeometryWidget::slotMoveLeft()
656 {
657     m_rect->setPos(0, m_rect->pos().y());
658     slotUpdateGeometry();
659 }
660
661 void GeometryWidget::slotCenterH()
662 {
663     m_rect->setPos((m_monitor->render->frameRenderWidth() - m_rect->rect().width()) / 2, m_rect->pos().y());
664     slotUpdateGeometry();
665 }
666
667 void GeometryWidget::slotMoveRight()
668 {
669     m_rect->setPos(m_monitor->render->frameRenderWidth() - m_rect->rect().width(), m_rect->pos().y());
670     slotUpdateGeometry();
671 }
672
673 void GeometryWidget::slotMoveTop()
674 {
675     m_rect->setPos(m_rect->pos().x(), 0);
676     slotUpdateGeometry();
677 }
678
679 void GeometryWidget::slotCenterV()
680 {
681     m_rect->setPos(m_rect->pos().x(), (m_monitor->render->renderHeight() - m_rect->rect().height()) / 2);
682     slotUpdateGeometry();
683 }
684
685 void GeometryWidget::slotMoveBottom()
686 {
687     m_rect->setPos(m_rect->pos().x(), m_monitor->render->renderHeight() - m_rect->rect().height());
688     slotUpdateGeometry();
689 }
690
691
692 void GeometryWidget::slotSetSynchronize(bool sync)
693 {
694     KdenliveSettings::setTransitionfollowcursor(sync);
695     if (sync)
696         emit seekToPos(m_clipPos + m_timePos->getValue());
697 }
698
699 void GeometryWidget::slotShowScene(bool show)
700 {
701     m_showScene = show;
702     if (!m_showScene)
703         m_monitor->slotEffectScene(false);
704     else
705         slotCheckMonitorPosition(m_monitor->render->seekFramePosition());
706 }
707
708 void GeometryWidget::setFrameSize(QPoint size)
709 {
710     m_frameSize = size;
711 }
712
713 void GeometryWidget::slotAdjustToFrameSize()
714 {
715     if (m_frameSize == QPoint() || m_frameSize.x() == 0 || m_frameSize.y() == 0) {
716         m_frameSize = QPoint(m_monitor->render->frameRenderWidth(), m_monitor->render->renderHeight());
717     }
718     m_spinWidth->blockSignals(true);
719     m_spinHeight->blockSignals(true);
720     m_spinWidth->setValue((int) (m_frameSize.x() / m_monitor->render->sar() + 0.5));
721     m_spinHeight->setValue(m_frameSize.y());
722     m_spinWidth->blockSignals(false);
723     m_spinHeight->blockSignals(false);
724     updateMonitorGeometry();
725 }
726
727 void GeometryWidget::slotFitToWidth()
728 {
729     if (m_frameSize == QPoint() || m_frameSize.x() == 0 || m_frameSize.y() == 0) {
730         m_frameSize = QPoint(m_monitor->render->frameRenderWidth(), m_monitor->render->renderHeight());
731     }
732     double factor = (double) m_monitor->render->frameRenderWidth() / m_frameSize.x() * m_monitor->render->sar();
733     m_spinWidth->blockSignals(true);
734     m_spinHeight->blockSignals(true);
735     m_spinHeight->setValue((int) (m_frameSize.y() * factor + 0.5));
736     m_spinWidth->setValue(m_monitor->render->frameRenderWidth());
737     m_spinWidth->blockSignals(false);
738     m_spinHeight->blockSignals(false);
739     updateMonitorGeometry();
740 }
741
742 void GeometryWidget::slotFitToHeight()
743 {
744     if (m_frameSize == QPoint() || m_frameSize.x() == 0 || m_frameSize.y() == 0) {
745         m_frameSize = QPoint(m_monitor->render->frameRenderWidth(), m_monitor->render->renderHeight());
746     }
747     double factor = (double) m_monitor->render->renderHeight() / m_frameSize.y();
748     m_spinWidth->blockSignals(true);
749     m_spinHeight->blockSignals(true);
750     m_spinHeight->setValue(m_monitor->render->renderHeight());
751     m_spinWidth->setValue((int) (m_frameSize.x() / m_monitor->render->sar() * factor + 0.5));
752     m_spinWidth->blockSignals(false);
753     m_spinHeight->blockSignals(false);
754     updateMonitorGeometry();
755 }
756
757 #include "geometrywidget.moc"