]> git.sesse.net Git - kdenlive/blob - src/addtransitioncommand.cpp
* internal rework: switch clip id's from integer to string
[kdenlive] / src / addtransitioncommand.cpp
1 /***************************************************************************
2                           addtransitioncommand.cpp  -  description
3                              -------------------
4     begin                : 2008
5     copyright            : (C) 2008 by Marco Gittler
6     email                : g.marco@freenet.de
7  ***************************************************************************/
8
9 /***************************************************************************
10  *                                                                         *
11  *   This program is free software; you can redistribute it and/or modify  *
12  *   it under the terms of the GNU General Public License as published by  *
13  *   the Free Software Foundation; either version 2 of the License, or     *
14  *   (at your option) any later version.                                   *
15  *                                                                         *
16  ***************************************************************************/
17 #include <KLocale>
18
19 #include "addtransitioncommand.h"
20 #include "customtrackview.h"
21
22 AddTransitionCommand::AddTransitionCommand(CustomTrackView *view, ItemInfo info, int transitiontrack, QDomElement params, bool remove, bool doIt, QUndoCommand * parent) : QUndoCommand(parent), m_view(view), m_info(info), m_track(transitiontrack), m_params(params), m_remove(remove), m_doIt(doIt) {
23     if (m_remove) setText(i18n("Delete transition from clip"));
24     else setText(i18n("Add transition to clip"));
25 }
26
27
28 // virtual
29 void AddTransitionCommand::undo() {
30     if (m_remove) m_view->addTransition(m_info, m_track, m_params);
31     else m_view->deleteTransition(m_info, m_track, m_params);
32 }
33 // virtual
34 void AddTransitionCommand::redo() {
35     if (m_doIt) {
36         if (m_remove) m_view->deleteTransition(m_info, m_track, m_params);
37         else m_view->addTransition(m_info, m_track, m_params);
38     }
39     m_doIt = true;
40 }
41
42