]> git.sesse.net Git - kdenlive/blob - src/commands/editeffectcommand.cpp
e6ab0a35fcbae8ff0bb21549f81900063635d5fc
[kdenlive] / src / commands / editeffectcommand.cpp
1 /***************************************************************************
2  *   Copyright (C) 2007 by Jean-Baptiste Mardelle (jb@kdenlive.org)        *
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 "editeffectcommand.h"
22 #include "customtrackview.h"
23 #include <KDebug>
24 #include <KLocalizedString>
25
26 EditEffectCommand::EditEffectCommand(CustomTrackView *view, const int track, const GenTime &pos, const QDomElement &oldeffect, const QDomElement &effect, int stackPos, bool refreshEffectStack, bool doIt, QUndoCommand *parent) :
27     QUndoCommand(parent),
28     m_view(view),
29     m_track(track),
30     m_oldeffect(oldeffect),
31     m_effect(effect),
32     m_pos(pos),
33     m_stackPos(stackPos),
34     m_doIt(doIt),
35     m_refreshEffectStack(refreshEffectStack)
36 {
37     QString effectName;
38     QDomElement namenode = effect.firstChildElement("name");
39     if (!namenode.isNull())
40         effectName = i18n(namenode.text().toUtf8().data());
41     else
42         effectName = i18n("effect");
43     setText(i18n("Edit effect %1", effectName));
44 }
45
46 // virtual
47 int EditEffectCommand::id() const
48 {
49     return 1;
50 }
51
52 // virtual
53 bool EditEffectCommand::mergeWith(const QUndoCommand * other)
54 {
55     if (other->id() != id())
56         return false;
57     if (m_track != static_cast<const EditEffectCommand*>(other)->m_track)
58         return false;
59     if (m_stackPos != static_cast<const EditEffectCommand*>(other)->m_stackPos)
60         return false;
61     if (m_pos != static_cast<const EditEffectCommand*>(other)->m_pos)
62         return false;
63     m_effect = static_cast<const EditEffectCommand*>(other)->m_effect.cloneNode().toElement();
64     return true;
65 }
66
67 // virtual
68 void EditEffectCommand::undo()
69 {
70     m_view->updateEffect(m_track, m_pos, m_oldeffect, true);
71 }
72 // virtual
73 void EditEffectCommand::redo()
74 {
75     if (m_doIt) {
76         m_view->updateEffect(m_track, m_pos, m_effect, m_refreshEffectStack);
77     }
78     m_doIt = true;
79     m_refreshEffectStack = true;
80 }
81
82