1 /***************************************************************************
2 movetransitioncommand.h - description
5 copyright : (C) 2008 by Marco Gittler
6 email : g.marco@freenet.de
7 ***************************************************************************/
9 /***************************************************************************
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. *
16 ***************************************************************************/
18 #ifndef MOVETRANSITIONCOMMAND_H
19 #define MOVETRANSITIONCOMMAND_H
21 #include <QUndoCommand>
22 #include <QGraphicsView>
27 #include "definitions.h"
29 class CustomTrackView;
31 class MoveTransitionCommand : public QUndoCommand {
33 MoveTransitionCommand(CustomTrackView *view, const ItemInfo start, const ItemInfo end, bool doIt, QUndoCommand * parent = 0);
38 CustomTrackView *m_view;