]> git.sesse.net Git - kdenlive/blob - src/commands/addtimelineclipcommand.cpp
5cc0fe70b096fabee11aba00a7ddaf955e19ae01
[kdenlive] / src / commands / 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
21 #include "addtimelineclipcommand.h"
22 #include "customtrackview.h"
23
24 #include <KLocale>
25
26 AddTimelineClipCommand::AddTimelineClipCommand(CustomTrackView *view, const QDomElement &xml, const QString &clipId, const ItemInfo &info, const EffectsList &effects, bool overwrite, bool push, bool doIt, bool doRemove, QUndoCommand * parent) :
27         QUndoCommand(parent),
28         m_view(view),
29         m_clipInfo(info),
30         m_effects(effects),
31         m_clipId(clipId),
32         m_xml(xml),
33         m_doIt(doIt),
34         m_remove(doRemove),
35         m_overwrite(overwrite),
36         m_push(push)
37 {
38     if (!m_remove) setText(i18n("Add timeline clip"));
39     else setText(i18n("Delete timeline clip"));
40 }
41
42
43 // virtual
44 void AddTimelineClipCommand::undo()
45 {
46     if (!m_remove)
47         m_view->deleteClip(m_clipInfo);
48     else
49         m_view->addClip(m_xml, m_clipId, m_clipInfo, m_effects, m_overwrite, m_push);
50 }
51 // virtual
52 void AddTimelineClipCommand::redo()
53 {
54     if (m_doIt) {
55         if (!m_remove)
56             m_view->addClip(m_xml, m_clipId, m_clipInfo, m_effects, m_overwrite, m_push);
57         else
58             m_view->deleteClip(m_clipInfo);
59     }
60     m_doIt = true;
61 }
62
63