X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2Fprojectlist.h;h=9fa7cb1b1c9403efa72e4563eef7d6f432b17f93;hb=62d59d0733c09dbbb68bc1a785eadefc3db8ac77;hp=7d8b390baa28c66d36318afb2235c9231c5e1300;hpb=30e9003792e708f8ae163e4d1a58f49e3fbda649;p=kdenlive diff --git a/src/projectlist.h b/src/projectlist.h index 7d8b390b..9fa7cb1b 100644 --- a/src/projectlist.h +++ b/src/projectlist.h @@ -1,59 +1,173 @@ +/*************************************************************************** + * 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 #include #include +#include +#include +#include -#include #include +#include -#include "docclipbase.h" -#include "kdenlivedoc.h" -#include "renderer.h" +#include "definitions.h" #include "timecode.h" -class ProjectList : public QWidget -{ - Q_OBJECT - - public: - ProjectList(QWidget *parent=0); +namespace Mlt { +class Producer; +}; + +class ProjectItem; +class ProjectListView; +class Render; +class KdenliveDoc; +class DocClipBase; + +const int NameRole = Qt::UserRole; +const int DurationRole = NameRole + 1; +const int UsageRole = NameRole + 2; + +class ItemDelegate: public QItemDelegate { +public: + ItemDelegate(QAbstractItemView* parent = 0): QItemDelegate(parent) { + } + /* + static_cast( index.internalPointer() ); + + 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 slotUpdateClipProperties(const QString &id, QMap properties); + void updateAllClips(); - void addClip(const QStringList &name, const QDomElement &elem, const int clipId, const KUrl &url = KUrl()); - void deleteClip(const int clipId); - - public slots: +public slots: void setDocument(KdenliveDoc *doc); - void addProducer(QDomElement producer); - void slotReplyGetImage(int clipId, int pos, const QPixmap &pix, int w, int h); - void slotReplyGetFileProperties(int clipId, const QMap < QString, QString > &properties, const QMap < QString, QString > &metadata); - + 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 = true); + 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(); - private: - QTreeWidget *listView; +private: + ProjectListView *listView; KTreeWidgetSearchLine *searchView; Render *m_render; Timecode m_timecode; double m_fps; QToolBar *m_toolbar; - KUndoStack *m_commandStack; + QMenu *m_menu; + QUndoStack *m_commandStack; int m_clipIdCounter; - void selectItemById(const int clipId); + void selectItemById(const QString &clipId); + ProjectItem *getItemById(const QString &id); + QAction *m_editAction; + QAction *m_deleteAction; + KdenliveDoc *m_doc; + ItemDelegate *m_listViewDelegate; + ProjectItem *m_selectedItem; + QMap m_infoQueue; + void requestClipInfo(const QDomElement xml, const QString id); + QList m_thumbnailQueue; + void requestClipThumbnail(const QString &id); - private slots: - void slotAddClip(); - void slotRemoveClip(); +private slots: + void slotAddClip(QUrl givenUrl = QUrl(), QString group = QString()); void slotEditClip(); void slotClipSelected(); void slotAddColorClip(); + void slotAddSlideshowClip(); + void slotAddTitleClip(); + void slotContextMenu(const QPoint &pos, QTreeWidgetItem *); + void slotAddFolder(); + void slotAddFolder(const QString foldername, const QString &clipId, bool remove, bool edit); + /** This is triggered when a clip description has been modified */ + void slotItemEdited(QTreeWidgetItem *item, int column); + void slotUpdateClipProperties(ProjectItem *item, QMap properties); + void slotProcessNextClipInQueue(); + void slotProcessNextThumbnail(); + //void slotShowMenu(const QPoint &pos); - signals: - void clipSelected(const QDomElement &); - void getFileProperties(const QDomElement&, int); +signals: + void clipSelected(DocClipBase *); + void getFileProperties(const QDomElement&, const QString &); + void receivedClipDuration(const QString &, int); + void showClipProperties(DocClipBase *); + void projectModified(); }; #endif