]> git.sesse.net Git - kdenlive/blob - src/projectlist.h
Introducing template based title clips
[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() const;
128     void setHeaderInfo(const QByteArray &state);
129     void setupMenu(QMenu *addMenu, QAction *defaultAction);
130     void setupGeneratorMenu(QMenu *addMenu, QMenu *transcodeMenu);
131     QString currentClipUrl() const;
132     void reloadClipThumbnails();
133
134 public slots:
135     void setDocument(KdenliveDoc *doc);
136     void slotReplyGetImage(const QString &clipId, const QPixmap &pix);
137     void slotReplyGetFileProperties(const QString &clipId, Mlt::Producer *producer, const QMap < QString, QString > &properties, const QMap < QString, QString > &metadata, bool replace);
138     void slotAddClip(DocClipBase *clip, bool getProperties);
139     void slotDeleteClip(const QString &clipId);
140     void slotUpdateClip(const QString &id);
141     void slotRefreshClipThumbnail(const QString &clipId, bool update = true);
142     void slotRefreshClipThumbnail(ProjectItem *item, bool update = true);
143     void slotRemoveInvalidClip(const QString &id, bool replace);
144     void slotSelectClip(const QString &ix);
145     void slotRemoveClip();
146     void slotAddClip(const QList <QUrl> givenList = QList <QUrl> (), QString group = QString());
147     void slotAddFolder(const QString foldername, const QString &clipId, bool remove, bool edit = false);
148     void slotResetProjectList();
149     void slotOpenClip();
150     void slotEditClip();
151     void slotReloadClip();
152     void slotAddColorClip();
153     void regenerateTemplate(const QString &id);
154
155 private:
156     ProjectListView *m_listView;
157     Render *m_render;
158     Timecode m_timecode;
159     double m_fps;
160     QToolBar *m_toolbar;
161     QMenu *m_menu;
162     QUndoStack *m_commandStack;
163     void selectItemById(const QString &clipId);
164     ProjectItem *getItemById(const QString &id);
165     ProjectItem *getFolderItemById(const QString &id);
166     QAction *m_editAction;
167     QAction *m_deleteAction;
168     QAction *m_openAction;
169     QAction *m_reloadAction;
170     KdenliveDoc *m_doc;
171     ProjectItem *m_selectedItem;
172     bool m_refreshed;
173     QToolButton *m_addButton;
174     QMap <QString, QDomElement> m_infoQueue;
175     void requestClipInfo(const QDomElement xml, const QString id);
176     QList <QString> m_thumbnailQueue;
177     void requestClipThumbnail(const QString &id);
178     void deleteProjectFolder(QMap <QString, QString> map);
179     void editFolder(const QString folderName, const QString oldfolderName, const QString &clipId);
180     QStringList getGroup() const;
181     void regenerateTemplate(ProjectItem *clip);
182
183 private slots:
184     void slotClipSelected();
185     void slotAddSlideshowClip();
186     void slotAddTitleClip();
187     void slotAddTitleTemplateClip();
188     void slotContextMenu(const QPoint &pos, QTreeWidgetItem *);
189     void slotAddFolder();
190     /** This is triggered when a clip description has been modified */
191     void slotItemEdited(QTreeWidgetItem *item, int column);
192     void slotUpdateClipProperties(ProjectItem *item, QMap <QString, QString> properties);
193     void slotProcessNextClipInQueue();
194     void slotProcessNextThumbnail();
195     void slotCheckForEmptyQueue();
196     void slotPauseMonitor();
197     //void slotShowMenu(const QPoint &pos);
198
199 signals:
200     void clipSelected(DocClipBase *);
201     void getFileProperties(const QDomElement&, const QString &, bool);
202     void receivedClipDuration(const QString &);
203     void showClipProperties(DocClipBase *);
204     void projectModified();
205     void loadingIsOver();
206     void clipNameChanged(const QString, const QString);
207 };
208
209 #endif