]> git.sesse.net Git - kdenlive/blob - src/subprojectitem.cpp
Fix scrolling while dragging clips in 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 "definitions.h"
24 #include "kdenlivesettings.h"
25 #include "docclipbase.h"
26
27 #include <KDebug>
28 #include <KLocale>
29 #include <KIcon>
30
31 const int DurationRole = Qt::UserRole + 1;
32
33 SubProjectItem::SubProjectItem(QTreeWidgetItem * parent, int in, int out, QString description) :
34         QTreeWidgetItem(parent, PROJECTSUBCLIPTYPE), m_in(in), m_out(out), m_description(description)
35 {
36     setSizeHint(0, QSize(65, 30));
37     setFlags(Qt::ItemIsSelectable | Qt::ItemIsDragEnabled | Qt::ItemIsEnabled | Qt::ItemIsEditable | Qt::ItemIsDropEnabled);
38     QString name = Timecode::getStringTimecode(in, KdenliveSettings::project_fps());
39     setText(0, name);
40     setText(1, description);
41     GenTime duration = GenTime(out - in, KdenliveSettings::project_fps());
42     if (duration != GenTime()) setData(0, DurationRole, Timecode::getEasyTimecode(duration, KdenliveSettings::project_fps()));
43     //setFlags(Qt::NoItemFlags);
44     //kDebug() << "Constructed with clipId: " << m_clipId;
45 }
46
47
48 SubProjectItem::~SubProjectItem()
49 {
50 }
51
52 int SubProjectItem::numReferences() const
53 {
54     return 0;
55 }
56
57 QDomElement SubProjectItem::toXml() const
58 {
59     //return m_clip->toXML();
60     return QDomElement();
61 }
62
63 QPoint SubProjectItem::zone() const
64 {
65     QPoint z(m_in, m_out);
66     return z;
67 }
68
69 void SubProjectItem::setZone(QPoint p)
70 {
71     m_in = p.x();
72     m_out = p.y();
73     QString name = Timecode::getStringTimecode(m_in, KdenliveSettings::project_fps());
74     setText(0, name);
75     GenTime duration = GenTime(m_out - m_in, KdenliveSettings::project_fps());
76     if (duration != GenTime()) setData(0, DurationRole, Timecode::getEasyTimecode(duration, KdenliveSettings::project_fps()));
77 }
78
79 DocClipBase *SubProjectItem::referencedClip()
80 {
81     return NULL; //m_clip;
82 }
83
84 QString SubProjectItem::description() const
85 {
86     return m_description;
87 }
88
89 void SubProjectItem::setDescription(QString desc)
90 {
91     m_description = desc;
92     setText(1, m_description);
93 }