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 ***************************************************************************/
21 #include "subprojectitem.h"
23 #include "definitions.h"
24 #include "kdenlivesettings.h"
25 #include "docclipbase.h"
32 const int DurationRole = Qt::UserRole + 1;
33 const int itemHeight = 30;
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)
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());
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);
47 setData(0, Qt::DecorationRole, pix);
48 //setFlags(Qt::NoItemFlags);
49 //kDebug() << "Constructed with clipId: " << m_clipId;
53 SubProjectItem::~SubProjectItem()
57 int SubProjectItem::numReferences() const
63 int SubProjectItem::itemDefaultHeight()
68 QDomElement SubProjectItem::toXml() const
70 //return m_clip->toXML();
74 QPoint SubProjectItem::zone() const
76 QPoint z(m_in, m_out);
80 void SubProjectItem::setZone(const QPoint& p)
84 QString name = Timecode::getStringTimecode(m_in, KdenliveSettings::project_fps());
86 GenTime duration = GenTime(m_out - m_in, KdenliveSettings::project_fps());
87 if (duration != GenTime()) setData(0, DurationRole, Timecode::getEasyTimecode(duration, KdenliveSettings::project_fps()));
90 DocClipBase *SubProjectItem::referencedClip()
92 return NULL; //m_clip;
95 QString SubProjectItem::description() const
100 void SubProjectItem::setDescription(const QString &desc)
102 m_description = desc;
103 setText(1, m_description);