]> git.sesse.net Git - kdenlive/blob - src/commands/moveeffectcommand.cpp
ba394793b0ac2aefb9d047240fc0758d3fb6dcd8
[kdenlive] / src / commands / moveeffectcommand.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 "moveeffectcommand.h"
22 #include "customtrackview.h"
23
24 #include <KLocale>
25
26 MoveEffectCommand::MoveEffectCommand(CustomTrackView *view, const int track, const GenTime &pos, const QList<int> &oldPos, int newPos, QUndoCommand * parent) :
27         QUndoCommand(parent),
28         m_view(view),
29         m_track(track),
30         m_oldindex(oldPos),
31         m_pos(pos)
32 {
33     for (int i = 0; i < m_oldindex.count(); i++) {
34         m_newindex << newPos + i;
35     }
36     /*    QString effectName;
37         QDomElement namenode = effect.firstChildElement("name");
38         if (!namenode.isNull()) effectName = i18n(namenode.text().toUtf8().data());
39         else effectName = i18n("effect");
40         setText(i18n("Move effect %1", effectName));*/
41     setText(i18n("Move effect"));
42 }
43
44 // virtual
45 int MoveEffectCommand::id() const
46 {
47     return 2;
48 }
49
50 // virtual
51 bool MoveEffectCommand::mergeWith(const QUndoCommand * other)
52 {
53     return false;
54     if (other->id() != id()) return false;
55     if (m_track != static_cast<const MoveEffectCommand*>(other)->m_track) return false;
56     if (m_pos != static_cast<const MoveEffectCommand*>(other)->m_pos) return false;
57     m_oldindex = static_cast<const MoveEffectCommand*>(other)->m_oldindex;
58     m_newindex = static_cast<const MoveEffectCommand*>(other)->m_newindex;
59     return true;
60 }
61
62 // virtual
63 void MoveEffectCommand::undo()
64 {
65     kDebug() << "----  undoing action";
66     m_view->moveEffect(m_track, m_pos, m_newindex, m_oldindex);
67 }
68 // virtual
69 void MoveEffectCommand::redo()
70 {
71     kDebug() << "----  redoing action";
72     m_view->moveEffect(m_track, m_pos, m_oldindex, m_newindex);
73 }
74