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