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