]> git.sesse.net Git - kdenlive/blobdiff - src/projectlist.h
* Cleanup folder creation
[kdenlive] / src / projectlist.h
index 584add301f4819832cc9b9664bdbb7542028cfcd..9e4452bebb322791891a7d34be1603ad5f9d2a2c 100644 (file)
+/***************************************************************************
+ *   Copyright (C) 2007 by Jean-Baptiste Mardelle (jb@kdenlive.org)        *
+ *                                                                         *
+ *   This program is free software; you can redistribute it and/or modify  *
+ *   it under the terms of the GNU General Public License as published by  *
+ *   the Free Software Foundation; either version 2 of the License, or     *
+ *   (at your option) any later version.                                   *
+ *                                                                         *
+ *   This program is distributed in the hope that it will be useful,       *
+ *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
+ *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
+ *   GNU General Public License for more details.                          *
+ *                                                                         *
+ *   You should have received a copy of the GNU General Public License     *
+ *   along with this program; if not, write to the                         *
+ *   Free Software Foundation, Inc.,                                       *
+ *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA          *
+ ***************************************************************************/
+
+
 #ifndef PRJECTLIST_H
 #define PRJECTLIST_H
 
 #include <QDomNodeList>
+#include <QToolBar>
+#include <QToolButton>
 #include <QTreeWidget>
+#include <QPainter>
+#include <QItemDelegate>
+#include <QUndoStack>
+
+
 #include <KTreeWidgetSearchLine>
+#include <KUrl>
+
+#include "definitions.h"
+#include "timecode.h"
+
+namespace Mlt {
+class Producer;
+};
+
+class ProjectItem;
+class ProjectListView;
+class Render;
+class KdenliveDoc;
+class DocClipBase;
 
-#include "docclipbase.h"
-#include "renderer.h"
+const int NameRole = Qt::UserRole;
+const int DurationRole = NameRole + 1;
+const int UsageRole = NameRole + 2;
 
-class ProjectList : public QWidget
-{
-  Q_OBJECT
-  
-  public:
-    ProjectList(Render *projectRender, QWidget *parent=0);
+class ItemDelegate: public QItemDelegate {
+public:
+    ItemDelegate(QAbstractItemView* parent = 0): QItemDelegate(parent) {
+    }
+    /*
+    static_cast<ProjectItem *>( index.internalPointer() );
 
-  public slots:
-    void populate(QDomNodeList prods);
-    void addProducer(QDomElement producer);
+    void expand()
+    {
+      QWidget *w = new QWidget;
+      QVBoxLayout *layout = new QVBoxLayout;
+      layout->addWidget( new KColorButton(w));
+      w->setLayout( layout );
+      extendItem(w,
+    }
+    */
+    void paint(QPainter* painter, const QStyleOptionViewItem& option, const QModelIndex& index) const {
+        if (index.column() == 1) {
+            const bool hover = option.state & (QStyle::State_Selected);
+            QRect r1 = option.rect;
+            painter->save();
+            if (hover) {
+                painter->setPen(option.palette.color(QPalette::HighlightedText));
+                QColor backgroundColor = option.palette.color(QPalette::Highlight);
+                painter->setBrush(QBrush(backgroundColor));
+                painter->fillRect(r1, QBrush(backgroundColor));
+            }
+            QFont font = painter->font();
+            font.setBold(true);
+            painter->setFont(font);
+            int mid = (int)((r1.height() / 2));
+            r1.setBottom(r1.y() + mid);
+            QRect r2 = option.rect;
+            r2.setTop(r2.y() + mid);
+            painter->drawText(r1, Qt::AlignLeft | Qt::AlignBottom , index.data().toString());
+            //painter->setPen(Qt::green);
+            font.setBold(false);
+            painter->setFont(font);
+            QString subText = index.data(DurationRole).toString();
+            int usage = index.data(UsageRole).toInt();
+            if (usage != 0) subText.append(QString(" (%1)").arg(usage));
+            painter->setPen(option.palette.color(QPalette::Mid));
+            painter->drawText(r2, Qt::AlignLeft | Qt::AlignVCenter , subText);
+            painter->restore();
+        } else {
+            QItemDelegate::paint(painter, option, index);
+        }
+    }
+};
+
+class ProjectList : public QWidget {
+    Q_OBJECT
+
+public:
+    ProjectList(QWidget *parent = 0);
+    virtual ~ProjectList();
+
+    QDomElement producersList();
     void setRenderer(Render *projectRender);
-    void slotReplyGetImage(const KUrl &url, int pos, const QPixmap &pix, int w, int h);
-    void slotReplyGetFileProperties(const QMap < QString, QString > &properties, const QMap < QString, QString > &metadata);
+    void slotUpdateClipProperties(const QString &id, QMap <QString, QString> properties);
+    void updateAllClips();
+    QByteArray headerInfo();
+    void setHeaderInfo(const QByteArray &state);
+    void setupMenu(QMenu *addMenu, QAction *defaultAction);
+    void setupGeneratorMenu(QMenu *addMenu);
 
-  private:
-    QTreeWidget *listView;
+public slots:
+    void setDocument(KdenliveDoc *doc);
+    void slotReplyGetImage(const QString &clipId, int pos, const QPixmap &pix, int w, int h);
+    void slotReplyGetFileProperties(const QString &clipId, Mlt::Producer *producer, const QMap < QString, QString > &properties, const QMap < QString, QString > &metadata);
+    void slotAddClip(DocClipBase *clip, bool getProperties);
+    void slotDeleteClip(const QString &clipId);
+    void slotUpdateClip(const QString &id);
+    void slotRefreshClipThumbnail(const QString &clipId, bool update = true);
+    void slotRefreshClipThumbnail(ProjectItem *item, bool update = true);
+    void slotRemoveInvalidClip(const QString &id);
+    void slotSelectClip(const QString &ix);
+    void slotRemoveClip();
+    void slotAddClip(KUrl givenUrl = KUrl(), QString group = QString());
+    void slotAddFolder(const QString foldername, const QString &clipId, bool remove, bool edit = false);
+
+private:
+    ProjectListView *listView;
     KTreeWidgetSearchLine *searchView;
     Render *m_render;
+    Timecode m_timecode;
+    double m_fps;
+    QToolBar *m_toolbar;
+    QMenu *m_menu;
+    QUndoStack *m_commandStack;
+    int m_clipIdCounter;
+    void selectItemById(const QString &clipId);
+    ProjectItem *getItemById(const QString &id);
+    ProjectItem *getFolderItemById(const QString &id);
+    QAction *m_editAction;
+    QAction *m_deleteAction;
+    KdenliveDoc *m_doc;
+    ProjectItem *m_selectedItem;
+    bool m_refreshed;
+    QToolButton *m_addButton;
+    QMap <QString, QDomElement> m_infoQueue;
+    void requestClipInfo(const QDomElement xml, const QString id);
+    QList <QString> m_thumbnailQueue;
+    void requestClipThumbnail(const QString &id);
+    void deleteProjectFolder(QMap <QString, QString> map);
+    void editFolder(const QString folderName, const QString oldfolderName, const QString &clipId);
 
-  private slots:
-    void slotDoubleClicked(QListWidgetItem *, const QPoint &);
-    void slotAddClip();
-    void slotRemoveClip();
+private slots:
     void slotEditClip();
     void slotClipSelected();
     void slotAddColorClip();
+    void slotAddSlideshowClip();
+    void slotAddTitleClip();
+    void slotContextMenu(const QPoint &pos, QTreeWidgetItem *);
+    void slotAddFolder();
+    /** This is triggered when a clip description has been modified */
+    void slotItemEdited(QTreeWidgetItem *item, int column);
+    void slotUpdateClipProperties(ProjectItem *item, QMap <QString, QString> properties);
+    void slotProcessNextClipInQueue();
+    void slotProcessNextThumbnail();
+    void slotCheckForEmptyQueue();
+    void slotPauseMonitor();
+    //void slotShowMenu(const QPoint &pos);
 
-  signals:
-    void clipSelected(const QDomElement &);
-    void getFileProperties(const KUrl &, uint);
+signals:
+    void clipSelected(DocClipBase *);
+    void getFileProperties(const QDomElement&, const QString &);
+    void receivedClipDuration(const QString &, int);
+    void showClipProperties(DocClipBase *);
+    void projectModified();
+    void loadingIsOver();
+    void clipNameChanged(const QString, const QString);
 };
 
 #endif