]> git.sesse.net Git - kdenlive/blob - src/projectlist.h
Various changes for getting an OpenGL context (almost) everywhere it is needed.
[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 <QHash>
26 #include <QToolBar>
27 #include <QToolButton>
28 #include <QTreeWidget>
29 #include <QPainter>
30 #include <QUndoStack>
31 #include <QTimer>
32 #include <QApplication>
33 #include <QFuture>
34 #include <QFutureSynchronizer>
35 #include <QListWidget>
36 #include <QTimeLine>
37 #include <QPushButton>
38
39 #include <KTreeWidgetSearchLine>
40 #include <KUrl>
41 #include <KIcon>
42 #include <kdeversion.h>
43
44 #ifdef NEPOMUK
45 #include <nepomuk/kratingpainter.h>
46 #include <nepomuk/resource.h>
47 #endif
48
49 #ifdef NEPOMUKCORE
50 #include <nepomuk2/kratingpainter.h>
51 #include <nepomuk2/resource.h>
52 #endif
53
54 #include "definitions.h"
55 #include "timecode.h"
56 #include "kdenlivesettings.h"
57 #include "folderprojectitem.h"
58 #include "subprojectitem.h"
59 #include "projecttree/abstractclipjob.h"
60 #include "widgets/invaliddialog.h"
61
62 #if KDE_IS_VERSION(4,7,0)
63 #include <KMessageWidget>
64 #else
65 // Dummy KMessageWidget to allow compilation of MyMessageWidget class since Qt's moc doesn work inside #ifdef
66 #include <QLabel>
67
68 class KMessageWidget: public QLabel
69 {
70 public:
71     KMessageWidget(QWidget * = 0) {};
72     KMessageWidget(const QString &, QWidget * = 0) {};
73     virtual ~KMessageWidget(){};
74 };
75 #endif
76
77 class MyMessageWidget: public KMessageWidget
78 {
79     Q_OBJECT
80 public:
81     MyMessageWidget(QWidget *parent = 0);
82     MyMessageWidget(const QString &text, QWidget *parent = 0);
83
84 protected:
85     bool event(QEvent* ev);
86
87 signals:
88     void messageClosing();
89 };
90
91 namespace Mlt
92 {
93 class Producer;
94 }
95
96 class ProjectItem;
97 class ProjectListView;
98 class Render;
99 class KdenliveDoc;
100 class DocClipBase;
101 class AbstractClipJob;
102 class ItemDelegate;
103 class QGLWidget;
104
105 class SmallInfoLabel: public QPushButton
106 {
107     Q_OBJECT
108 public:
109     SmallInfoLabel(QWidget *parent = 0);
110     static const QString getStyleSheet(const QPalette &p);
111 private:
112     enum ItemRole {
113         NameRole = Qt::UserRole,
114         DurationRole,
115         UsageRole
116     };
117
118     QTimeLine* m_timeLine;
119
120 public slots:
121     void slotSetJobCount(int jobCount);
122
123 private slots:
124     void slotTimeLineChanged(qreal value);
125     void slotTimeLineFinished();
126 };
127
128 class ProjectList : public QWidget
129 {
130     Q_OBJECT
131
132 public:
133     ProjectList(QGLWidget *glContext, QWidget *parent = 0);
134     virtual ~ProjectList();
135
136     QDomElement producersList();
137     void setRenderer(Render *projectRender);
138     void slotUpdateClipProperties(const QString &id, QMap <QString, QString> properties);
139     QByteArray headerInfo() const;
140     void setHeaderInfo(const QByteArray &state);
141     void updateProjectFormat(Timecode t);
142     void setupMenu(QMenu *addMenu, QAction *defaultAction);
143     void setupGeneratorMenu(const QHash<QString,QMenu*>& menus);
144     QString currentClipUrl() const;
145     KUrl::List getConditionalUrls(const QString &condition) const;
146     /** @brief Get a list of selected clip Id's and url's that match a condition. */
147     QMap <QString, QString> getConditionalIds(const QString &condition) const;
148     QDomDocument generateTemplateXml(QString data, const QString &replaceString);
149     void cleanup();
150     void trashUnusedClips();
151     QList <DocClipBase*> documentClipList() const;
152     void addClipCut(const QString &id, int in, int out, const QString desc, bool newItem);
153     void removeClipCut(const QString &id, int in, int out);
154     void focusTree() const;
155     SubProjectItem *getSubItem(ProjectItem *clip, const QPoint &zone);
156     void doUpdateClipCut(const QString &id, const QPoint &oldzone, const QPoint &zone, const QString &comment);
157     bool hasMissingClips();
158     void deleteProjectFolder(QMap <QString, QString> map);
159     void selectItemById(const QString &clipId);
160
161     /** @brief Returns a string list of all supported mime extensions. */
162     static QString getExtensions();
163     /** @brief Returns a list of urls containing original and proxy urls. */
164     QMap <QString, QString> getProxies();
165     /** @brief Enable / disable proxies. */
166     void updateProxyConfig();
167     /** @brief Get a property from the document. */
168     QString getDocumentProperty(const QString &key) const;
169     
170     /** @brief Does this project allow proxies. */
171     bool useProxy() const;
172     /** @brief Should we automatically create proxy clips for newly added clips. */
173     bool generateProxy() const;
174     /** @brief Should we automatically create proxy clips for newly added clips. */
175     bool generateImageProxy() const;
176     /** @brief Returns a list of the expanded folder ids. */
177     QStringList expandedFolders() const;
178     /** @brief Deselect all clips in project tree. */
179     void clearSelection();
180     /** @brief Print required overlays over clip thumb (proxy, stabilized,...). */
181     void processThumbOverlays(ProjectItem *item, QPixmap &pix);
182     /** @brief Start an MLT process job. */
183     void startClipFilterJob(const QString &filterName, const QString &condition);
184     /** @brief Set current document for the project tree. */
185     void setDocument(KdenliveDoc *doc);
186     
187     /** @brief Palette was changed, update style. */
188     void updatePalette();
189
190 public slots:
191     void updateAllClips(bool displayRatioChanged, bool fpsChanged, const QStringList &brokenClips);
192     void slotReplyGetImage(const QString &clipId, const QImage &img);
193     void slotReplyGetImage(const QString &clipId, const QString &name, int width, int height);
194     void slotReplyGetFileProperties(const QString &clipId, Mlt::Producer *producer, const stringMap &properties, const stringMap &metadata, bool replace);
195     void slotAddClip(DocClipBase *clip, bool getProperties);
196     void slotDeleteClip(const QString &clipId);
197     void slotUpdateClip(const QString &id);
198     void slotRefreshClipThumbnail(const QString &clipId, bool update = true);
199     void slotRefreshClipThumbnail(QTreeWidgetItem *item, bool update = true);
200     void slotRemoveInvalidClip(const QString &id, bool replace);
201     void slotRemoveInvalidProxy(const QString &id, bool durationError);
202     void slotSelectClip(const QString &ix);
203
204     /** @brief Prepares removing the selected items. */
205     void slotRemoveClip();
206     void slotAddClip(const QString &url, const QString &groupName, const QString &groupId);
207     void slotAddClip(const QList <QUrl> &givenList = QList <QUrl> (), const QString &groupName = QString(), const QString &groupId = QString());
208
209     /** @brief Adds, edits or deletes a folder item.
210     *
211     * This is triggered by AddFolderCommand and EditFolderCommand. */
212     void slotAddFolder(const QString &foldername, const QString &clipId, bool remove, bool edit = false);
213     void slotResetProjectList();
214     void slotOpenClip();
215     void slotEditClip();
216     void slotReloadClip(const QString &id = QString());
217
218     /** @brief Shows dialog for setting up a color clip. */
219     void slotAddColorClip();
220     void regenerateTemplate(const QString &id);
221     void slotUpdateClipCut(QPoint p);
222     void slotAddClipCut(const QString &id, int in, int out);
223     void slotForceProcessing(const QString &id);
224     /** @brief Remove all instances of a proxy and delete the file. */
225     void slotDeleteProxy(const QString proxyPath);
226     /** @brief Start a hard cut clip job. */
227     void slotCutClipJob(const QString &id, QPoint zone);
228     /** @brief Start transcoding selected clips. */
229     void slotTranscodeClipJob(const QString &condition, QString params, QString desc);
230     /** @brief Start an MLT process job. */
231     void slotStartFilterJob(ItemInfo, const QString&,const QString&,const QString&,const QString&,const QString&,const QMap <QString, QString>&);
232     void slotSetThumbnail(const QString &id, int framePos, QImage img);
233     
234
235 private:
236     ProjectListView *m_listView;
237     Render *m_render;
238     Timecode m_timecode;
239     double m_fps;
240     QMenu *m_menu;
241     QFuture<void> m_queueRunner;
242     QUndoStack *m_commandStack;
243     ProjectItem *getItemById(const QString &id);
244     QTreeWidgetItem *getAnyItemById(const QString &id);
245     FolderProjectItem *getFolderItemById(const QString &id);
246     FolderProjectItem *getFolderItemByName(const QString &name);
247     QAction *m_openAction;
248     QAction *m_reloadAction;
249     QAction *m_discardCurrentClipJobs;
250     QMenu *m_extractAudioAction;
251     QMenu *m_transcodeAction;
252     QMenu *m_clipsActionsMenu;
253     KdenliveDoc *m_doc;
254     ItemDelegate *m_listViewDelegate;
255     /** @brief False if we have not yet finished opening the document. */
256     bool m_refreshed;
257     /** @brief False if we have not yet finished checking all project tree thumbs. */
258     bool m_allClipsProcessed;
259     QToolButton *m_addButton;
260     QToolButton *m_deleteButton;
261     QToolButton *m_editButton;
262     //QMap <QString, QDomElement> m_infoQueue;
263     QMap <QString, QDomElement> m_producerQueue;
264     QList <QString> m_thumbnailQueue;
265     QAction *m_proxyAction;
266     QMutex m_jobMutex;
267     QMutex m_processMutex;
268     bool m_abortAllJobs;
269     /** @brief We are cleaning up the project list, so stop processing signals. */
270     bool m_closing;
271     QList <AbstractClipJob *> m_jobList;
272     QFutureSynchronizer<void> m_jobThreads;
273     InvalidDialog *m_invalidClipDialog;
274     QMenu *m_jobsMenu;
275     SmallInfoLabel *m_infoLabel;
276     /** @brief A list of strings containing the last error logs for clip jobs. */
277     QStringList m_errorLog;
278
279 #if KDE_IS_VERSION(4,7,0)
280     MyMessageWidget *m_infoMessage;
281     /** @brief The action that will trigger the log dialog. */
282     QAction *m_logAction;
283 #endif
284     QGLWidget *m_mainGLContext;
285     
286     void requestClipThumbnail(const QString &id);
287
288     /** @brief Creates an EditFolderCommand to change the name of an folder item. */
289     void editFolder(const QString folderName, const QString oldfolderName, const QString &clipId);
290
291     /** @brief Gets the selected folder (or the folder of the selected item). */
292     QStringList getGroup() const;
293     void regenerateTemplate(ProjectItem *clip);
294     void editClipSelection(QList<QTreeWidgetItem *> list);
295
296     /** @brief Enables and disables transcode actions based on the selected clip's type. */
297     void adjustTranscodeActions(ProjectItem *clip) const;
298     /** @brief Enables and disables stabilize actions based on the selected clip's type. */
299     void adjustStabilizeActions(ProjectItem *clip) const;
300     /** @brief Enables and disables proxy action based on the selected clip. */
301     void adjustProxyActions(ProjectItem *clip) const;
302
303     /** @brief Sets the buttons enabled/disabled according to selected item. */
304     void updateButtons() const;
305
306     /** @brief Set the Proxy status on a clip.
307      * @param item The clip item to set status
308      * @param jobType The job type
309      * @param status The job status (see definitions.h)
310      * @param progress The job progress (in percents)
311      * @param statusMessage The job info message */
312     void setJobStatus(ProjectItem *item, JOBTYPE jobType, ClipJobStatus status, int progress = 0, const QString &statusMessage = QString());
313     void monitorItemEditing(bool enable);
314     /** @brief Get cached thumbnail for a project's clip or create it if no cache. */
315     void getCachedThumbnail(ProjectItem *item);
316     void getCachedThumbnail(SubProjectItem *item);
317     /** @brief The clip is about to be reloaded, cancel thumbnail requests. */
318     void resetThumbsProducer(DocClipBase *clip);
319     /** @brief Check if a clip has a running or pending job process. */
320     bool hasPendingJob(ProjectItem *item, JOBTYPE type);
321     /** @brief Delete pending jobs for a clip. */
322     void deleteJobsForClip(const QString &clipId);
323     /** @brief Discard specific job type for a clip. */
324     void discardJobs(const QString &id, JOBTYPE type = NOJOBTYPE);
325     /** @brief Get the list of job names for current clip. */
326     QStringList getPendingJobs(const QString &id);
327     /** @brief Start an MLT process job. */
328     void processClipJob(QStringList ids, const QString&destination, bool autoAdd, QStringList jobParams, const QString &description, stringMap extraParams = stringMap());
329     /** @brief Create rounded shape pixmap for project tree thumb. */
330     QPixmap roundedPixmap(const QImage &img);
331     QPixmap roundedPixmap(const QPixmap &source);
332     /** @brief Extract a clip's metadata with the exiftool program. */
333     void extractMetadata(DocClipBase *clip);
334     /** @brief Add a special FFmpeg tag if clip matches some properties (for example set full_luma for Sony NEX camcorders. */
335     //void checkCamcorderFilters(DocClipBase *clip, QMap <QString, QString> meta);
336
337 private slots:
338     void slotClipSelected();
339     void slotAddSlideshowClip();
340     void slotAddTitleClip();
341     void slotAddTitleTemplateClip();
342
343     /** @brief Shows the context menu after enabling and disabling actions based on the item's type.
344     * @param pos The position where the menu should pop up
345     * @param item The item for which the checks should be done */
346     void slotContextMenu(const QPoint &pos, QTreeWidgetItem *item);
347
348     /** @brief Creates an AddFolderCommand. */
349     void slotAddFolder(const QString &name = QString());
350
351     /** @brief This is triggered when a clip description has been modified. */
352     void slotItemEdited(QTreeWidgetItem *item, int column);
353     void slotUpdateClipProperties(ProjectItem *item, QMap <QString, QString> properties);
354     void slotProcessNextThumbnail();
355     void slotCheckForEmptyQueue();
356     void slotPauseMonitor();
357     /** A clip was modified externally, change icon so that user knows it */
358     void slotModifiedClip(const QString &id);
359     void slotMissingClip(const QString &id);
360     void slotAvailableClip(const QString &id);
361     /** @brief Try to find a matching profile for given item. */
362     bool adjustProjectProfileToItem(ProjectItem *item = NULL);
363     /** @brief Add a sequence from the stopmotion widget. */
364     void slotAddOrUpdateSequence(const QString &frameName);
365     /** @brief A proxy clip was created, update display. */
366     void slotGotProxy(const QString &proxyPath);
367     void slotGotProxy(ProjectItem *item);
368     /** @brief Enable / disable proxy for current clip. */
369     void slotProxyCurrentItem(bool doProxy, ProjectItem *itemToProxy = NULL);
370     /** @brief Put clip in the proxy waiting list. */
371     void slotCreateProxy(const QString &id);
372     /** @brief Stop creation of this clip's proxy. */
373     void slotAbortProxy(const QString &id, const QString& path);
374     /** @brief Start creation of clip jobs. */
375     void slotProcessJobs();
376     /** @brief Discard running and pending clip jobs. */
377     void slotCancelJobs();
378     /** @brief Discard a running clip jobs. */
379     void slotCancelRunningJob(const QString id, stringMap);
380     /** @brief Update a clip's job status. */
381     void slotProcessLog(const QString&, int progress, int, const QString & tmp= QString());
382     /** @brief A clip job crashed, inform user. */
383     void slotUpdateJobStatus(const QString id, int type, int status, const QString label, const QString actionName, const QString details);
384     void slotUpdateJobStatus(ProjectItem *item, int type, int status, const QString &label, const QString &actionName = QString(), const QString details = QString());
385     /** @brief Display error log for last failed job. */
386     void slotShowJobLog();
387     /** @brief A proxy clip is ready. */
388     void slotGotProxyForId(const QString);
389     /** @brief Check if it is necessary to start a job thread. */
390     void slotCheckJobProcess();
391     /** @brief Fill the jobs menu with current clip's jobs. */
392     void slotPrepareJobsMenu();
393     /** @brief Discard all jobs for current clip. */
394     void slotDiscardClipJobs();
395     /** @brief Make sure current clip is visible in project tree. */
396     void slotCheckScrolling();
397     /** @brief Reset all text and log data from info message widget. */
398     void slotResetInfoMessage();
399     /** @brief close warning info passive popup. */
400     void slotClosePopup();
401     /** @brief process clip job result. */
402     void slotGotFilterJobResults(QString ,int , int, stringMap, stringMap);
403
404 signals:
405     void clipSelected(DocClipBase *, const QPoint &zone = QPoint(), bool forceUpdate = false);
406     void receivedClipDuration(const QString &);
407     void showClipProperties(DocClipBase *);
408     void showClipProperties(const QList <DocClipBase *>&, const QMap<QString, QString> &commonproperties);
409     void projectModified();
410     void loadingIsOver();
411     void displayMessage(const QString&, int progress, MessageType type = DefaultMessage);
412     void clipNameChanged(const QString&, const QString&);
413     void clipNeedsReload(const QString&);
414     /** @brief A property affecting display was changed, so we need to update monitors and thumbnails
415      *  @param id: The clip's id string
416      *  @param resetThumbs Should we recreate the timeline thumbnails. */
417     void refreshClip(const QString &id, bool resetThumbs);
418     void updateRenderStatus();
419     void deleteProjectClips(const QStringList &ids, const QMap <QString, QString> &folderids);
420     void findInTimeline(const QString &clipId);
421     /** @brief Request a profile change for current document. */
422     void updateProfile(const QString &);
423     void processNextThumbnail();
424     /** @brief Activate the clip monitor. */
425     void raiseClipMonitor(bool forceRefresh);
426     /** @brief Set number of running jobs. */
427     void jobCount(int);
428     void cancelRunningJob(const QString&, const stringMap&);
429     void processLog(const QString&, int , int, const QString & = QString());
430     void addClip(const QString, const QString &, const QString &);
431     void updateJobStatus(const QString&, int, int, const QString &label = QString(), const QString &actionName = QString(), const QString &details = QString());
432     void gotProxy(const QString&);
433     void checkJobProcess();
434     /** @brief A Filter Job produced results, send them back to the clip. */
435     void gotFilterJobResults(const QString &id, int startPos, int track, const stringMap &params, const stringMap &extra);
436     void pauseMonitor();
437     void updateAnalysisData(DocClipBase *);
438     void addMarkers(const QString &, const QList <CommentedTime>&);
439 };
440
441 #endif
442
443