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