]> git.sesse.net Git - kdenlive/blob - src/projectlist.h
a23dd8722dd7ea66122ef103a8a80271f42332f0
[kdenlive] / src / projectlist.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 PROJECTLIST_H
22 #define PROJECTLIST_H
23
24 #include <QDomNodeList>
25 #include <QToolBar>
26 #include <QToolButton>
27 #include <QTreeWidget>
28 #include <QPainter>
29 #include <QItemDelegate>
30 #include <QUndoStack>
31
32
33 #include <KTreeWidgetSearchLine>
34 #include <KUrl>
35 #include <nepomuk/kratingpainter.h>
36 #include <nepomuk/resource.h>
37
38 #include "definitions.h"
39 #include "timecode.h"
40 #include "kdenlivesettings.h"
41
42 namespace Mlt
43 {
44 class Producer;
45 };
46
47 class ProjectItem;
48 class ProjectListView;
49 class Render;
50 class KdenliveDoc;
51 class DocClipBase;
52
53 const int NameRole = Qt::UserRole;
54 const int DurationRole = NameRole + 1;
55 const int UsageRole = NameRole + 2;
56
57 class ItemDelegate: public QItemDelegate
58 {
59 public:
60     ItemDelegate(QAbstractItemView* parent = 0): QItemDelegate(parent) {
61     }
62     /*
63     static_cast<ProjectItem *>( index.internalPointer() );
64
65     void expand()
66     {
67       QWidget *w = new QWidget;
68       QVBoxLayout *layout = new QVBoxLayout;
69       layout->addWidget( new KColorButton(w));
70       w->setLayout( layout );
71       extendItem(w,
72     }
73     */
74     void paint(QPainter* painter, const QStyleOptionViewItem& option, const QModelIndex& index) const {
75         if (index.column() == 1) {
76             QRect r1 = option.rect;
77             painter->save();
78             if (option.state & (QStyle::State_Selected)) {
79                 painter->setPen(option.palette.color(QPalette::HighlightedText));
80                 painter->fillRect(r1, option.palette.highlight());
81             }
82             QFont font = painter->font();
83             font.setBold(true);
84             painter->setFont(font);
85             int mid = (int)((r1.height() / 2));
86             r1.setBottom(r1.y() + mid);
87             QRect r2 = option.rect;
88             r2.setTop(r2.y() + mid);
89             painter->drawText(r1, Qt::AlignLeft | Qt::AlignBottom , index.data().toString());
90             //painter->setPen(Qt::green);
91             font.setBold(false);
92             painter->setFont(font);
93             QString subText = index.data(DurationRole).toString();
94             int usage = index.data(UsageRole).toInt();
95             if (usage != 0) subText.append(QString(" (%1)").arg(usage));
96             painter->setPen(option.palette.color(QPalette::Mid));
97             painter->drawText(r2, Qt::AlignLeft | Qt::AlignVCenter , subText);
98             painter->restore();
99         } else if (index.column() == 3 && KdenliveSettings::activate_nepomuk()) {
100             if (index.data().toString().isEmpty()) {
101                 QItemDelegate::paint(painter, option, index);
102                 return;
103             }
104             QRect r1 = option.rect;
105             if (option.state & (QStyle::State_Selected)) {
106                 painter->fillRect(r1, option.palette.highlight());
107             }
108             KRatingPainter::paintRating(painter, r1, Qt::AlignCenter, index.data().toInt());
109         } else {
110             QItemDelegate::paint(painter, option, index);
111         }
112     }
113 };
114
115 class ProjectList : public QWidget
116 {
117     Q_OBJECT
118
119 public:
120     ProjectList(QWidget *parent = 0);
121     virtual ~ProjectList();
122
123     QDomElement producersList();
124     void setRenderer(Render *projectRender);
125     void slotUpdateClipProperties(const QString &id, QMap <QString, QString> properties);
126     void updateAllClips();
127     QByteArray headerInfo();
128     void setHeaderInfo(const QByteArray &state);
129     void setupMenu(QMenu *addMenu, QAction *defaultAction);
130     void setupGeneratorMenu(QMenu *addMenu);
131
132 public slots:
133     void setDocument(KdenliveDoc *doc);
134     void slotReplyGetImage(const QString &clipId, const QPixmap &pix);
135     void slotReplyGetFileProperties(const QString &clipId, Mlt::Producer *producer, const QMap < QString, QString > &properties, const QMap < QString, QString > &metadata, bool replace);
136     void slotAddClip(DocClipBase *clip, bool getProperties);
137     void slotDeleteClip(const QString &clipId);
138     void slotUpdateClip(const QString &id);
139     void slotRefreshClipThumbnail(const QString &clipId, bool update = true);
140     void slotRefreshClipThumbnail(ProjectItem *item, bool update = true);
141     void slotRemoveInvalidClip(const QString &id);
142     void slotSelectClip(const QString &ix);
143     void slotRemoveClip();
144     void slotAddClip(const QList <QUrl> givenList = QList <QUrl> (), QString group = QString());
145     void slotAddFolder(const QString foldername, const QString &clipId, bool remove, bool edit = false);
146     void slotResetProjectList();
147     void slotOpenClip();
148     void slotEditClip();
149     void slotReloadClip();
150
151 private:
152     ProjectListView *m_listView;
153     Render *m_render;
154     Timecode m_timecode;
155     double m_fps;
156     QToolBar *m_toolbar;
157     QMenu *m_menu;
158     QUndoStack *m_commandStack;
159     void selectItemById(const QString &clipId);
160     ProjectItem *getItemById(const QString &id);
161     ProjectItem *getFolderItemById(const QString &id);
162     QAction *m_editAction;
163     QAction *m_deleteAction;
164     QAction *m_openAction;
165     QAction *m_reloadAction;
166     KdenliveDoc *m_doc;
167     ProjectItem *m_selectedItem;
168     bool m_refreshed;
169     QToolButton *m_addButton;
170     QMap <QString, QDomElement> m_infoQueue;
171     void requestClipInfo(const QDomElement xml, const QString id);
172     QList <QString> m_thumbnailQueue;
173     void requestClipThumbnail(const QString &id);
174     void deleteProjectFolder(QMap <QString, QString> map);
175     void editFolder(const QString folderName, const QString oldfolderName, const QString &clipId);
176
177 private slots:
178     void slotClipSelected();
179     void slotAddColorClip();
180     void slotAddSlideshowClip();
181     void slotAddTitleClip();
182     void slotContextMenu(const QPoint &pos, QTreeWidgetItem *);
183     void slotAddFolder();
184     /** This is triggered when a clip description has been modified */
185     void slotItemEdited(QTreeWidgetItem *item, int column);
186     void slotUpdateClipProperties(ProjectItem *item, QMap <QString, QString> properties);
187     void slotProcessNextClipInQueue();
188     void slotProcessNextThumbnail();
189     void slotCheckForEmptyQueue();
190     void slotPauseMonitor();
191     //void slotShowMenu(const QPoint &pos);
192
193 signals:
194     void clipSelected(DocClipBase *);
195     void getFileProperties(const QDomElement&, const QString &, bool);
196     void receivedClipDuration(const QString &, int);
197     void showClipProperties(DocClipBase *);
198     void projectModified();
199     void loadingIsOver();
200     void clipNameChanged(const QString, const QString);
201 };
202
203 #endif