X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2Fprojectlistview.h;h=a30cb7e842e35790521485f404d235eba759453a;hb=c42a026234a44a2d766e57bc64a6ac7bbd094000;hp=17885b4f8636124bb95da553bdd6f6445e12355a;hpb=2a223cff6e45c560c28857b72c0cb7e584f9a4ef;p=kdenlive diff --git a/src/projectlistview.h b/src/projectlistview.h index 17885b4f..a30cb7e8 100644 --- a/src/projectlistview.h +++ b/src/projectlistview.h @@ -18,19 +18,24 @@ ***************************************************************************/ -#ifndef PRJECTLISTVIEW_H -#define PRJECTLISTVIEW_H +#ifndef PROJECTLISTVIEW_H +#define PROJECTLISTVIEW_H #include #include +#include -class ProjectListView : public QTreeWidget { +class DocClipBase; + +class KUrl; + +class ProjectListView : public QTreeWidget +{ Q_OBJECT public: ProjectListView(QWidget *parent = 0); virtual ~ProjectListView(); - void editItem(QTreeWidgetItem * item, int column = 0); protected: virtual void contextMenuEvent(QContextMenuEvent * event); @@ -51,12 +56,15 @@ private: QPoint m_DragStartPosition; private slots: - + void configureColumns(const QPoint& pos); signals: void requestMenu(const QPoint &, QTreeWidgetItem *); void addClip(); - void addClip(QUrl, const QString &); + void addClip(const QList , const QString &); + void showProperties(DocClipBase *); + void focusMonitor(); + void pauseMonitor(); }; #endif