]> git.sesse.net Git - kdenlive/blob - src/projectlistview.h
Integrate with the required MLT hooks for getting Movit to work.
[kdenlive] / src / projectlistview.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 PROJECTLISTVIEW_H
22 #define PROJECTLISTVIEW_H
23
24 #include <QTreeWidget>
25 #include <QContextMenuEvent>
26 #include <QPainter>
27 #include <QStyledItemDelegate>
28
29 class DocClipBase;
30
31
32 class ItemDelegate: public QStyledItemDelegate
33 {
34 public:
35     enum ItemRole {
36         NameRole = Qt::UserRole,
37         DurationRole,
38         UsageRole
39     };
40
41     ItemDelegate(QAbstractItemView* parent = 0)
42         : QStyledItemDelegate(parent)
43     {
44     }
45
46     /*void drawFocus(QPainter *, const QStyleOptionViewItem &, const QRect &) const {
47     }*/
48
49     void paint(QPainter* painter, const QStyleOptionViewItem& option, const QModelIndex& index) const;
50 };
51
52 class ProjectListView : public QTreeWidget
53 {
54     Q_OBJECT
55
56 public:
57     ProjectListView(QWidget *parent = 0);
58     ~ProjectListView();
59     void processLayout();
60     void updateStyleSheet();
61
62 protected:
63     void contextMenuEvent(QContextMenuEvent * event);
64     void mouseDoubleClickEvent(QMouseEvent * event);
65     void mousePressEvent(QMouseEvent *event);
66     void mouseReleaseEvent(QMouseEvent *event);
67     void mouseMoveEvent(QMouseEvent *event);
68     void dropEvent(QDropEvent *event);
69     QStringList mimeTypes() const;
70     Qt::DropActions supportedDropActions() const;
71     void dragLeaveEvent(QDragLeaveEvent *);
72
73     /** @brief Filters key events to make sure user can expand items with + / -. */
74     bool eventFilter(QObject *obj, QEvent *ev);
75
76 private:
77     bool m_dragStarted;
78     QPoint m_DragStartPosition;
79
80 private slots:
81     void configureColumns(const QPoint& pos);
82     void slotCollapsed(QTreeWidgetItem *item);
83     void slotExpanded(QTreeWidgetItem *item);
84
85 signals:
86     void requestMenu(const QPoint &, QTreeWidgetItem *);
87     void addClip();
88     void addClip(const QList <QUrl> &, const QString &, const QString &);
89     void showProperties(DocClipBase *);
90     void focusMonitor(bool forceRefresh);
91     void pauseMonitor();
92     void addClipCut(const QString&, int, int);
93     void projectModified();
94 };
95
96 #endif