]> git.sesse.net Git - kdenlive/blob - src/commands/moveclipcommand.cpp
b41ebf8ca9380ac2fc9f539ffe05df5dda84dbdd
[kdenlive] / src / commands / moveclipcommand.cpp
1 /***************************************************************************
2  *   Copyright (C) 2007 by Jean-Baptiste Mardelle (jb@kdenlive.org)        *
3  *                 2012    Simon A. Eugster <simon.eu@gmail.com>           *
4  *                                                                         *
5  *   This program is free software; you can redistribute it and/or modify  *
6  *   it under the terms of the GNU General Public License as published by  *
7  *   the Free Software Foundation; either version 2 of the License, or     *
8  *   (at your option) any later version.                                   *
9  *                                                                         *
10  *   This program is distributed in the hope that it will be useful,       *
11  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
12  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
13  *   GNU General Public License for more details.                          *
14  *                                                                         *
15  *   You should have received a copy of the GNU General Public License     *
16  *   along with this program; if not, write to the                         *
17  *   Free Software Foundation, Inc.,                                       *
18  *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA          *
19  ***************************************************************************/
20
21
22 #include "moveclipcommand.h"
23 #include "customtrackview.h"
24
25 #include <KLocale>
26
27 MoveClipCommand::MoveClipCommand(CustomTrackView *view, const ItemInfo &start, const ItemInfo &end, bool doIt, QUndoCommand * parent)
28     : QUndoCommand(parent),
29       m_view(view),
30       m_startPos(start),
31       m_endPos(end),
32       m_doIt(doIt),
33       m_success(true)
34 {
35     setText(i18n("Move clip"));
36     if (parent) {
37         // command has a parent, so there are several operations ongoing, do not refresh monitor
38         m_refresh = false;
39     } else {
40         m_refresh = true;
41     }
42 }
43
44
45 void MoveClipCommand::undo()
46 {
47     m_doIt = true;
48     // We can only undo what was done;
49     // if moveClip() failed in redo() the document does (or should) not change.
50     if (m_success) {
51         m_view->moveClip(m_endPos, m_startPos, m_refresh);
52     }
53 }
54 void MoveClipCommand::redo()
55 {
56     if (m_doIt) {
57         //        qDebug() << "Executing move clip command. End now:" << m_endPos;
58         m_success = m_view->moveClip(m_startPos, m_endPos, m_refresh, &m_endPos);
59         //        qDebug() << "Move clip command executed. End now: " << m_endPos;
60     }
61     m_doIt = true;
62 }
63