]> git.sesse.net Git - kdenlive/blob - src/commands/razorgroupcommand.cpp
Reorganize and cleanup build structure
[kdenlive] / src / commands / razorgroupcommand.cpp
1 /***************************************************************************
2  *   Copyright (C) 2010 by Till Theato (root@ttill.de)                     *
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 "razorgroupcommand.h"
22 #include "customtrackview.h"
23
24 RazorGroupCommand::RazorGroupCommand(CustomTrackView *view, QList <ItemInfo> clips1, QList <ItemInfo> transitions1, QList <ItemInfo> clipsCut, QList <ItemInfo> transitionsCut, QList <ItemInfo> clips2, QList <ItemInfo> transitions2, GenTime cutPos, QUndoCommand * parent) :
25     QUndoCommand(parent),
26     m_view(view),
27     m_clips1(clips1),
28     m_transitions1(transitions1),
29     m_clipsCut(clipsCut),
30     m_transitionsCut(transitionsCut),
31     m_clips2(clips2),
32     m_transitions2(transitions2),
33     m_cutPos(cutPos)
34 {
35     setText(i18n("Cut Group"));
36 }
37
38 // virtual
39 void RazorGroupCommand::undo()
40 {
41     m_view->slotRazorGroup(m_clips1, m_transitions1, m_clipsCut, m_transitionsCut, m_clips2, m_transitions2, m_cutPos, false);
42 }
43
44 // virtual
45 void RazorGroupCommand::redo()
46 {
47     m_view->slotRazorGroup(m_clips1, m_transitions1, m_clipsCut, m_transitionsCut, m_clips2, m_transitions2, m_cutPos, true);
48 }