]> git.sesse.net Git - kdenlive/blob - src/folderprojectitem.cpp
Make folders appear on top of the project tree:
[kdenlive] / src / folderprojectitem.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 "folderprojectitem.h"
22
23 #include <KDebug>
24 #include <KLocale>
25 #include <KIcon>
26
27
28 FolderProjectItem::FolderProjectItem(QTreeWidget * parent, const QStringList & strings, const QString &clipId) :
29         QTreeWidgetItem(parent, strings, PROJECTFOLDERTYPE),
30         m_groupName(strings.at(1)),
31         m_clipId(clipId)
32 {
33     setSizeHint(0, QSize(65, QFontInfo(font(1)).pixelSize() * 2));
34     setFlags(Qt::ItemIsSelectable | Qt::ItemIsDragEnabled | Qt::ItemIsEnabled | Qt::ItemIsEditable);
35     setIcon(0, KIcon("folder").pixmap(sizeHint(0)));
36     setToolTip(1, "<b>" + i18n("Folder"));
37     //setFlags(Qt::NoItemFlags);
38     //kDebug() << "Constructed with clipId: " << m_clipId;
39 }
40
41
42 FolderProjectItem::~FolderProjectItem()
43 {
44 }
45
46 QString FolderProjectItem::clipId() const
47 {
48     return m_clipId;
49 }
50
51 const QString FolderProjectItem::groupName() const
52 {
53     return m_groupName;
54 }
55
56 void FolderProjectItem::setGroupName(const QString name)
57 {
58     m_groupName = name;
59     setText(1, name);
60 }
61
62
63