]> git.sesse.net Git - kdenlive/blob - src/addtimelineclipcommand.cpp
f1d9d78fa4a160eaaca79e61e2e4797e06d2cb88
[kdenlive] / src / addtimelineclipcommand.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 #include <KLocale>
21
22 #include "addtimelineclipcommand.h"
23 #include "customtrackview.h"
24
25 AddTimelineClipCommand::AddTimelineClipCommand(CustomTrackView *view, QDomElement xml, int clipId, ItemInfo info, EffectsList effects, bool doIt, bool doRemove, QUndoCommand * parent) : QUndoCommand(parent), m_view(view), m_xml(xml), m_clipId(clipId), m_clipInfo(info), m_effects(effects),  m_doIt(doIt), m_remove(doRemove) {
26     if (!m_remove) setText(i18n("Add timeline clip"));
27     else setText(i18n("Delete timeline clip"));
28 }
29
30
31 // virtual
32 void AddTimelineClipCommand::undo() {
33     if (!m_remove) m_view->deleteClip(m_clipInfo);
34     else m_view->addClip(m_xml, m_clipId, m_clipInfo);
35 }
36 // virtual
37 void AddTimelineClipCommand::redo() {
38     if (m_doIt) {
39         if (!m_remove) m_view->addClip(m_xml, m_clipId, m_clipInfo, m_effects);
40         else m_view->deleteClip(m_clipInfo);
41     }
42     m_doIt = true;
43 }
44
45 #include "addtimelineclipcommand.moc"