]> git.sesse.net Git - kdenlive/blob - src/dvdwizardvob.h
Fix indent, use const'ref, use explicit when necessary
[kdenlive] / src / dvdwizardvob.h
1 /***************************************************************************
2  *   Copyright (C) 2009 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 DVDWIZARDVOB_H
22 #define DVDWIZARDVOB_H
23
24 #include "ui_dvdwizardvob_ui.h"
25
26 #include <kdeversion.h>
27 #include <kcapacitybar.h>
28 #include <KUrl>
29
30 #if KDE_IS_VERSION(4,7,0)
31 #include <KMessageWidget>
32 #endif
33
34 #include <QWizardPage>
35 #include <QStyledItemDelegate>
36 #include <QPainter>
37 #include <QTreeWidget>
38 #include <QDragEnterEvent>
39 #include <QDropEvent>
40
41 enum DVDFORMAT { PAL, PAL_WIDE, NTSC, NTSC_WIDE };
42
43 class DvdTreeWidget : public QTreeWidget
44 {
45     Q_OBJECT
46 public:
47     explicit DvdTreeWidget(QWidget *parent);
48
49 protected:
50     virtual void dragEnterEvent(QDragEnterEvent * event );
51     virtual void dropEvent(QDropEvent * event );
52     virtual void mouseDoubleClickEvent( QMouseEvent * );
53     virtual void dragMoveEvent(QDragMoveEvent * event);
54
55 signals:
56     void addNewClip();
57     void addClips(QList<QUrl>);
58 };
59
60 class DvdViewDelegate : public QStyledItemDelegate
61 {
62     Q_OBJECT
63 public:
64     DvdViewDelegate(QWidget *parent) : QStyledItemDelegate(parent) {}
65
66     void paint(QPainter *painter, const QStyleOptionViewItem &option,
67                const QModelIndex &index) const {
68         if (index.column() == 0) {
69             painter->save();
70             QStyleOptionViewItemV4 opt(option);
71             QRect r1 = option.rect;
72             QStyle *style = opt.widget ? opt.widget->style() : QApplication::style();
73             const int textMargin = style->pixelMetric(QStyle::PM_FocusFrameHMargin) + 1;
74             style->drawPrimitive(QStyle::PE_PanelItemViewItem, &opt, painter, opt.widget);
75
76             QPixmap pixmap = qVariantValue<QPixmap>(index.data(Qt::DecorationRole));
77             QPoint pixmapPoint(r1.left() + textMargin, r1.top() + (r1.height() - pixmap.height()) / 2);
78             painter->drawPixmap(pixmapPoint, pixmap);
79             int decoWidth = pixmap.width() + 2 * textMargin;
80
81             QFont font = painter->font();
82             font.setBold(true);
83             painter->setFont(font);
84             int mid = (int)((r1.height() / 2));
85             r1.adjust(decoWidth, 0, 0, -mid);
86             QRect r2 = option.rect;
87             r2.adjust(decoWidth, mid, 0, 0);
88             painter->drawText(r1, Qt::AlignLeft | Qt::AlignBottom, KUrl(index.data().toString()).fileName());
89             font.setBold(false);
90             painter->setFont(font);
91             QString subText = index.data(Qt::UserRole).toString();
92             QRectF bounding;
93             painter->drawText(r2, Qt::AlignLeft | Qt::AlignVCenter , subText, &bounding);
94             painter->restore();
95         } else QStyledItemDelegate::paint(painter, option, index);
96     }
97 };
98
99
100 class DvdWizardVob : public QWizardPage
101 {
102     Q_OBJECT
103
104 public:
105     explicit DvdWizardVob(QWidget * parent = 0);
106     virtual ~DvdWizardVob();
107     virtual bool isComplete() const;
108     QStringList selectedUrls() const;
109     void setUrl(const QString &url);
110     DVDFORMAT dvdFormat() const;
111     const QString dvdProfile() const;
112     int duration(int ix) const;
113     QStringList durations() const;
114     QStringList chapters() const;
115     void setProfile(const QString& profile);
116     void clear();
117     const QString introMovie() const;
118     void setUseIntroMovie(bool use);
119     void updateChapters(QMap <QString, QString> chaptersdata);
120     static QString getDvdProfile(DVDFORMAT format);
121
122 private:
123     Ui::DvdWizardVob_UI m_view;
124     DvdTreeWidget *m_vobList;
125     KCapacityBar *m_capacityBar;
126     QAction *m_transcodeAction;
127     bool m_installCheck;
128 #if KDE_IS_VERSION(4,7,0)
129     KMessageWidget *m_warnMessage;
130 #endif
131     void showProfileError();
132     void showError(const QString error);
133
134 public slots:
135     void slotAddVobFile(KUrl url = KUrl(), const QString &chapters = QString(), bool checkFormats = true);
136     void slotAddVobList(QList <QUrl>list);
137     void slotCheckProfiles();
138
139 private slots:
140     void slotCheckVobList();
141     void slotDeleteVobFile();
142     void slotItemUp();
143     void slotItemDown();
144     void slotTranscodeFiles();
145     void slotTranscodedClip(KUrl, KUrl);
146     
147 signals:
148     void prepareMonitor();
149 };
150
151 #endif
152