]> git.sesse.net Git - kdenlive/blob - src/projectlistview.h
b43aa26c25cea94a5a6034c68a86fcf9538c17af
[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
28 class DocClipBase;
29
30
31 class ProjectListView : public QTreeWidget
32 {
33     Q_OBJECT
34
35 public:
36     ProjectListView(QWidget *parent = 0);
37     ~ProjectListView();
38     void processLayout();
39     void updateStyleSheet();
40
41 protected:
42     void contextMenuEvent(QContextMenuEvent * event);
43     void mouseDoubleClickEvent(QMouseEvent * event);
44     void mousePressEvent(QMouseEvent *event);
45     void mouseReleaseEvent(QMouseEvent *event);
46     void mouseMoveEvent(QMouseEvent *event);
47     void dropEvent(QDropEvent *event);
48     QStringList mimeTypes() const;
49     Qt::DropActions supportedDropActions() const;
50     void dragLeaveEvent(QDragLeaveEvent *);
51
52     /** @brief Filters key events to make sure user can expand items with + / -. */
53     bool eventFilter(QObject *obj, QEvent *ev);
54
55 private:
56     bool m_dragStarted;
57     QPoint m_DragStartPosition;
58
59 private slots:
60     void configureColumns(const QPoint& pos);
61     void slotCollapsed(QTreeWidgetItem *item);
62     void slotExpanded(QTreeWidgetItem *item);
63
64 signals:
65     void requestMenu(const QPoint &, QTreeWidgetItem *);
66     void addClip();
67     void addClip(const QList <QUrl> &, const QString &, const QString &);
68     void showProperties(DocClipBase *);
69     void focusMonitor(bool forceRefresh);
70     void pauseMonitor();
71     void addClipCut(const QString&, int, int);
72     void projectModified();
73 };
74
75 #endif