]> git.sesse.net Git - kdenlive/blob - src/commands/moveclipcommand.cpp
Add explicit keyword, const'ref, minor optimization
[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 m_refresh = true;
40 }
41
42
43 void MoveClipCommand::undo()
44 {
45     m_doIt = true;
46     // We can only undo what was done;
47     // if moveClip() failed in redo() the document does (or should) not change.
48     if (m_success) {
49         m_view->moveClip(m_endPos, m_startPos, m_refresh);
50     }
51 }
52 void MoveClipCommand::redo()
53 {
54     if (m_doIt) {
55 //        qDebug() << "Executing move clip command. End now:" << m_endPos;
56         m_success = m_view->moveClip(m_startPos, m_endPos, m_refresh, &m_endPos);
57 //        qDebug() << "Move clip command executed. End now: " << m_endPos;
58     }
59     m_doIt = true;
60 }
61