]> git.sesse.net Git - kdenlive/blob - src/subprojectitem.cpp
Add subclips (dragging a zone from clip monitor to project tree)
[kdenlive] / src / subprojectitem.cpp
1 /***************************************************************************
2  *   Copyright (C) 2007 by Jean-Baptiste Mardelle (jb@kdenlive.org)        *
3  *                                                                         *
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.                                   *
8  *                                                                         *
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.                          *
13  *                                                                         *
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  ***************************************************************************/
19
20
21 #include "subprojectitem.h"
22 #include "timecode.h"
23 #include "kdenlivesettings.h"
24 #include "docclipbase.h"
25
26 #include <KDebug>
27 #include <KLocale>
28 #include <KIcon>
29
30 const int DurationRole = Qt::UserRole + 1;
31
32 SubProjectItem::SubProjectItem(QTreeWidgetItem * parent, int in, int out) :
33         QTreeWidgetItem(parent, QTreeWidgetItem::UserType + 1), m_in(in), m_out(out)
34 {
35     setSizeHint(0, QSize(65, 30));
36     setFlags(Qt::ItemIsSelectable | Qt::ItemIsDragEnabled | Qt::ItemIsEnabled | Qt::ItemIsEditable);
37     QString name = Timecode::getStringTimecode(in, KdenliveSettings::project_fps());
38     setText(1, name);
39     GenTime duration = GenTime(out - in, KdenliveSettings::project_fps());
40     if (duration != GenTime()) setData(1, DurationRole, Timecode::getEasyTimecode(duration, KdenliveSettings::project_fps()));
41     //setFlags(Qt::NoItemFlags);
42     //kDebug() << "Constructed with clipId: " << m_clipId;
43 }
44
45
46 SubProjectItem::~SubProjectItem()
47 {
48 }
49
50 int SubProjectItem::numReferences() const
51 {
52     return 0;
53 }
54
55 QDomElement SubProjectItem::toXml() const
56 {
57     //return m_clip->toXML();
58     return QDomElement();
59 }
60
61 QPoint SubProjectItem::zone() const
62 {
63     QPoint z(m_in, m_out);
64     return z;
65 }
66
67 DocClipBase *SubProjectItem::referencedClip()
68 {
69     return NULL; //m_clip;
70 }
71
72