]> git.sesse.net Git - kdenlive/blob - src/movetransitioncommand.h
Comment out names of unused parameters [PATCH by Ray Lehtiniemi]
[kdenlive] / src / movetransitioncommand.h
1 /***************************************************************************
2                           movetransitioncommand.h  -  description
3                              -------------------
4     begin                : Mar 15 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 #ifndef MOVETRANSITIONCOMMAND_H
19 #define MOVETRANSITIONCOMMAND_H
20
21 #include <QUndoCommand>
22 #include <QGraphicsView>
23 #include <QPointF>
24
25 #include <KDebug>
26
27 #include "definitions.h"
28
29 class CustomTrackView;
30
31 class MoveTransitionCommand : public QUndoCommand {
32 public:
33     MoveTransitionCommand(CustomTrackView *view, const ItemInfo start, const ItemInfo end, bool doIt, QUndoCommand * parent = 0);
34     virtual void undo();
35     virtual void redo();
36
37 private:
38     CustomTrackView *m_view;
39     ItemInfo m_startPos;
40     ItemInfo m_endPos;
41     bool m_doIt;
42 };
43
44 #endif
45