]> git.sesse.net Git - kdenlive/blob - src/clipproperties.h
Cleanup clip properties ui
[kdenlive] / src / clipproperties.h
1 /***************************************************************************
2  *   Copyright (C) 2008 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 CLIPPROPERTIES_H
22 #define CLIPPROPERTIES_H
23
24 #include "definitions.h"
25 #include "timecode.h"
26 #include "docclipbase.h"
27 #include "ui_clipproperties_ui.h"
28
29 #include <QStyledItemDelegate>
30
31 class PropertiesViewDelegate : public QStyledItemDelegate
32 {
33     Q_OBJECT
34 public:
35     PropertiesViewDelegate(QWidget *parent) : QStyledItemDelegate(parent) {
36         m_height = parent->fontMetrics().height() * 1.5;
37     }
38     virtual QSize sizeHint(const QStyleOptionViewItem & option, const QModelIndex & index) const {
39         return QSize(10, m_height);
40     }
41 private:
42     int m_height;
43 };
44
45 class ClipProperties : public QDialog
46 {
47     Q_OBJECT
48
49 public:
50     ClipProperties(DocClipBase *clip, Timecode tc, double fps, QWidget * parent = 0);
51     ClipProperties(QList <DocClipBase *>cliplist, Timecode tc, QMap <QString, QString> commonproperties, QWidget * parent);
52     virtual ~ClipProperties();
53     QMap <QString, QString> properties();
54     const QString &clipId() const;
55     bool needsTimelineRefresh() const;
56     bool needsTimelineReload() const;
57
58 private slots:
59     void parseFolder();
60     void slotAddMarker();
61     void slotEditMarker();
62     void slotDeleteMarker();
63     void slotFillMarkersList();
64     void slotCheckMaxLength();
65     void slotEnableLuma(int state);
66     void slotEnableLumaFile(int state);
67     void slotUpdateDurationFormat(int ix);
68
69 private:
70     Ui::ClipProperties_UI m_view;
71     QMap <QString, QString> m_old_props;
72     DocClipBase *m_clip;
73     Timecode m_tc;
74     double m_fps;
75     /** used to count images in slideshow clip */
76     int m_count;
77     /** some visual properties changed, reload thumbnails */
78     bool m_clipNeedsRefresh;
79     /** clip resource changed, reload it */
80     bool m_clipNeedsReLoad;
81     /** Used to draw video / audio properties */
82     PropertiesViewDelegate *m_propsDelegate;
83
84 signals:
85     void addMarker(const QString &, GenTime, QString);
86 };
87
88
89 #endif
90