]> git.sesse.net Git - kdenlive/blob - src/folderprojectitem.h
Cleaning code style of Definitions.
[kdenlive] / src / folderprojectitem.h
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 #ifndef FOLDERPROJECTITEM_H
22 #define FOLDERPROJECTITEM_H
23
24 #include <QTreeWidgetItem>
25 #include <QTreeWidget>
26
27 #include <KDebug>
28
29 #include "definitions.h"
30
31 /** \brief Represents a clip or a folder in the projecttree
32  *
33  * This class represents a clip or folder in the projecttree and in the document(?) */
34 class FolderProjectItem : public QTreeWidgetItem
35 {
36 public:
37     FolderProjectItem(QTreeWidget* parent, const QStringList & strings, const QString &clipId);
38     virtual ~FolderProjectItem();
39     QString clipId() const;
40     const QString groupName() const;
41     void setGroupName(const QString name);
42     void switchIcon();
43
44     /** Make sure folders appear on top of the tree widget */
45     virtual bool operator<(const QTreeWidgetItem &other)const {
46         int column = treeWidget()->sortColumn();
47         if (other.type() == ProjectFoldeType)
48             return text(column).toLower() < other.text(column).toLower();
49         else return true;
50     }
51
52 private:
53     QString m_groupName;
54     QString m_clipId;
55
56 };
57
58 #endif