]> git.sesse.net Git - kdenlive/blob - src/edittransitioncommand.cpp
[PATCH by Ray Lehtiniemi] Fix up &&/& confusion
[kdenlive] / src / edittransitioncommand.cpp
1 /***************************************************************************
2                           edittransitioncommand.cpp  -  description
3                              -------------------
4     begin                : 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 "edittransitioncommand.h"
19 #include "customtrackview.h"
20
21 #include <KLocale>
22
23 EditTransitionCommand::EditTransitionCommand(CustomTrackView *view, const int track, GenTime pos, QDomElement oldeffect, QDomElement effect, bool doIt)
24         : m_view(view), m_track(track), m_pos(pos), m_oldeffect(oldeffect), m_doIt(doIt) {
25     m_effect = effect.cloneNode().toElement();
26     QString effectName;
27     QDomNode namenode = effect.elementsByTagName("name").item(0);
28     if (!namenode.isNull()) effectName = i18n(namenode.toElement().text().toUtf8().data());
29     else effectName = i18n("effect");
30     setText(i18n("Edit transition %1", effectName));
31 }
32
33 // virtual
34 int EditTransitionCommand::id() const {
35     return 2;
36 }
37
38 // virtual
39 bool EditTransitionCommand::mergeWith(const QUndoCommand * other) {
40     if (other->id() != id()) return false;
41     if (m_track != static_cast<const EditTransitionCommand*>(other)->m_track) return false;
42     if (m_pos != static_cast<const EditTransitionCommand*>(other)->m_pos) return false;
43     m_effect = static_cast<const EditTransitionCommand*>(other)->m_effect;
44     return true;
45 }
46
47 // virtual
48 void EditTransitionCommand::undo() {
49     m_view->updateTransition(m_track, m_pos, m_effect, m_oldeffect, m_doIt);
50 }
51 // virtual
52 void EditTransitionCommand::redo() {
53     m_view->updateTransition(m_track, m_pos, m_oldeffect, m_effect, m_doIt);
54     m_doIt = true;
55 }
56