]> git.sesse.net Git - kdenlive/blob - src/dvdwizard.h
start improving dvd wizard
[kdenlive] / src / dvdwizard.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 DVDWIZARD_H
22 #define DVDWIZARD_H
23
24 #include <QWizard>
25 #include <QVBoxLayout>
26 #include <QItemDelegate>
27 #include <QPainter>
28 #include <QGraphicsScene>
29 #include <QGraphicsTextItem>
30 #include <QGraphicsPixmapItem>
31 #include <QGraphicsRectItem>
32 #include <QProcess>
33
34
35 #include <KDebug>
36 #include <KTemporaryFile>
37
38 #include "dvdwizardvob.h"
39 #include "ui_dvdwizardmenu_ui.h"
40 #include "ui_dvdwizardiso_ui.h"
41 #include "ui_dvdwizardstatus_ui.h"
42
43 class DvdWizard : public QWizard {
44     Q_OBJECT
45 public:
46     DvdWizard(const QString &url = QString(), const QString &profile = "dv_pal", QWidget * parent = 0);
47     virtual ~DvdWizard();
48
49 private:
50     DvdWizardVob *m_pageVob;
51     Ui::DvdWizardMenu_UI m_menu;
52     Ui::DvdWizardIso_UI m_iso;
53     Ui::DvdWizardStatus_UI m_status;
54
55     QString m_profile;
56     QGraphicsScene *m_scene;
57     QGraphicsTextItem *m_button;
58     QGraphicsPixmapItem *m_background;
59     QGraphicsRectItem *m_color;
60     QGraphicsRectItem *m_safeRect;
61     int m_width;
62     int m_height;
63     KTemporaryFile m_menuFile;
64     KTemporaryFile m_authorFile;
65
66 private slots:
67     void buildButton();
68     void buildColor();
69     void buildImage();
70     void checkBackground();
71     void slotPageChanged(int page);
72     void slotRenderFinished(int exitCode, QProcess::ExitStatus status);
73     void slotIsoFinished(int exitCode, QProcess::ExitStatus status);
74     void generateDvd();
75 };
76
77 #endif
78