]> git.sesse.net Git - kdenlive/blob - src/documentvideotrack.h
0168553e3401a8b160274398940be28d511ca964
[kdenlive] / src / documentvideotrack.h
1 #ifndef DOCUMENTVIDEOTRACK_H
2 #define DOCUMENTVIDEOTRACK_H
3
4
5 #include "documenttrack.h"
6 #include "trackview.h"
7
8 class DocumentVideoTrack : public DocumentTrack
9 {
10   Q_OBJECT
11   
12   public:
13     DocumentVideoTrack(QDomElement xml, TrackView * view, QWidget *parent=0);
14
15   protected:
16     virtual void paintEvent(QPaintEvent * /*e*/);
17
18   private:
19     TrackView *m_trackView;
20   public slots:
21
22 };
23
24 #endif