]> git.sesse.net Git - kdenlive/blob - src/folderprojectitem.cpp
Cleaning code style of Definitions.
[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 <KLocalizedString>
25 #include <KIcon>
26
27
28 FolderProjectItem::FolderProjectItem(QTreeWidget * parent, const QStringList & strings, const QString &clipId) :
29         QTreeWidgetItem(parent, strings, ProjectFoldeType),
30         m_groupName(strings.at(0)),
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 | Qt::ItemIsDropEnabled);
35     setData(0, Qt::DecorationRole, KIcon("folder").pixmap(sizeHint(0)));
36     //setIcon(0, KIcon("folder").pixmap(sizeHint(0)));
37     setToolTip(0, "<b>" + i18n("Folder"));
38     //setFlags(Qt::NoItemFlags);
39     //kDebug() << "Constructed with clipId: " << m_clipId;
40 }
41
42
43 FolderProjectItem::~FolderProjectItem()
44 {
45 }
46
47 QString FolderProjectItem::clipId() const
48 {
49     return m_clipId;
50 }
51
52 const QString FolderProjectItem::groupName() const
53 {
54     return m_groupName;
55 }
56
57 void FolderProjectItem::setGroupName(const QString name)
58 {
59     m_groupName = name;
60     setText(0, name);
61 }
62
63 void FolderProjectItem::switchIcon()
64 {
65     setData(0, Qt::DecorationRole, isExpanded() ? KIcon("folder-open").pixmap(sizeHint(0)) : KIcon("folder").pixmap(sizeHint(0)));
66 }
67