1 /***************************************************************************
2 * Copyright (C) 2007 by Jean-Baptiste Mardelle (jb@kdenlive.org) *
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. *
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. *
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 ***************************************************************************/
24 #include <QScrollArea>
25 #include <QVBoxLayout>
28 #include <QGraphicsScene>
29 #include <QGraphicsLineItem>
30 #include <QDomElement>
34 #include "ui_timeline_ui.h"
38 class CustomTrackView;
42 class TrackView : public QWidget {
46 TrackView(KdenliveDoc *doc, QWidget *parent = 0);
48 const double zoomFactor() const;
49 const int mapLocalToValue(int x) const;
50 void setEditMode(const QString & editMode);
51 const QString & editMode() const;
52 QGraphicsScene *projectScene();
53 CustomTrackView *projectView();
55 int tracksNumber() const;
56 KdenliveDoc *document();
64 void slotDeleteClip(int clipId);
65 void slotChangeZoom(int factor);
66 void setDuration(int dur);
69 Ui::TimeLine_UI *view;
71 CustomTrackView *m_trackview;
75 QGraphicsScene *m_scene;
78 QVBoxLayout *m_tracksLayout;
79 QVBoxLayout *m_headersLayout;
80 QScrollArea *m_scrollArea;
82 QVBoxLayout *m_tracksAreaLayout;
83 void parseDocument(QDomDocument doc);
84 int slotAddProjectTrack(int ix, QDomElement xml, bool videotrack);
87 void setCursorPos(int pos);
88 void moveCursorPos(int pos);
89 void slotClipItemSelected(ClipItem*);
90 void slotTransitionItemSelected(Transition*);
91 void slotRebuildTrackHeaders();
95 void mousePosition(int);
97 void clipItemSelected(ClipItem*);
98 void transitionItemSelected(Transition*);