1 /***************************************************************************
2 addmarkercommand.h - description
5 copyright : (C) 2008 by Jean-Baptiste Mardelle
6 email : jb@kdenlive.org
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 MARKERCOMMAND_H
19 #define MARKERCOMMAND_H
21 #include <QUndoCommand>
22 #include <QGraphicsView>
24 #include <QDomElement>
28 #include "definitions.h"
29 class CustomTrackView;
32 class AddMarkerCommand : public QUndoCommand
35 AddMarkerCommand(CustomTrackView *view, const QString &oldcomment, const QString &comment, const QString &id, const GenTime &pos, QUndoCommand * parent = 0);
40 CustomTrackView *m_view;