]> git.sesse.net Git - kdenlive/blob - src/editguidecommand.cpp
0b476569c49323d12aa62171e3032808e530b59a
[kdenlive] / src / editguidecommand.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
18
19 #include "editguidecommand.h"
20 #include "customtrackview.h"
21
22 #include <KLocale>
23
24 EditGuideCommand::EditGuideCommand(CustomTrackView *view, const GenTime oldPos, const QString &oldcomment, const GenTime pos, const QString &comment, bool doIt, QUndoCommand * parent) : QUndoCommand(parent), m_view(view), m_oldPos(oldPos), m_oldcomment(oldcomment), m_pos(pos), m_comment(comment), m_doIt(doIt)
25 {
26     if (m_oldcomment.isEmpty()) setText(i18n("Add guide"));
27     else if (m_oldPos == m_pos) setText(i18n("Edit guide"));
28     else if (m_pos <= GenTime()) setText(i18n("Delete guide"));
29     else setText(i18n("Move guide"));
30 }
31
32
33 // virtual
34 void EditGuideCommand::undo()
35 {
36     m_view->editGuide(m_pos, m_oldPos, m_oldcomment);
37 }
38 // virtual
39 void EditGuideCommand::redo()
40 {
41     if (m_doIt) {
42         m_view->editGuide(m_oldPos, m_pos, m_comment);
43     }
44     m_doIt = true;
45 }
46