]> git.sesse.net Git - kdenlive/blob - src/addtimelineclipcommand.cpp
Various fixes to improve general stability in Qt 4.5.2
[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
21 #include "addtimelineclipcommand.h"
22 #include "customtrackview.h"
23
24 #include <KLocale>
25
26 AddTimelineClipCommand::AddTimelineClipCommand(CustomTrackView *view, QDomElement xml, const QString &clipId, ItemInfo info, EffectsList effects, 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 {
36     if (!m_remove) setText(i18n("Add timeline clip"));
37     else setText(i18n("Delete timeline clip"));
38     if (parent) {
39         // command has a parent, so there are several operations ongoing, do not refresh monitor
40         m_refresh = false;
41     } else m_refresh = true;
42 }
43
44
45 // virtual
46 void AddTimelineClipCommand::undo()
47 {
48     if (!m_remove) m_view->deleteClip(m_clipInfo, m_refresh);
49     else m_view->addClip(m_xml, m_clipId, m_clipInfo, m_effects, m_refresh);
50 }
51 // virtual
52 void AddTimelineClipCommand::redo()
53 {
54     if (m_doIt) {
55         if (!m_remove) m_view->addClip(m_xml, m_clipId, m_clipInfo, m_effects, m_refresh);
56         else m_view->deleteClip(m_clipInfo, m_refresh);
57     }
58     m_doIt = true;
59 }
60
61