]> git.sesse.net Git - kdenlive/blob - src/renderwidget.h
Default rendering path should be the project folder:
[kdenlive] / src / renderwidget.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 RENDERWIDGET_H
22 #define RENDERWIDGET_H
23
24 #include <QDialog>
25 #include <QPushButton>
26 #include <QPainter>
27
28 #include "definitions.h"
29 #include "ui_renderwidget_ui.h"
30
31
32 // RenderViewDelegate is used to draw the progress bars.
33 class RenderViewDelegate : public QItemDelegate {
34     Q_OBJECT
35 public:
36     RenderViewDelegate(QWidget *parent) : QItemDelegate(parent) {}
37
38     void paint(QPainter *painter, const QStyleOptionViewItem &option,
39                const QModelIndex &index) const {
40         if (index.column() == 0) {
41             QItemDelegate::paint(painter, option, index);
42             return;
43         } else if (index.column() == 1) {
44             QRect r1 = option.rect;
45             painter->save();
46             if (option.state & (QStyle::State_Selected)) {
47                 painter->setPen(option.palette.color(QPalette::HighlightedText));
48                 painter->fillRect(r1, option.palette.highlight());
49             } else painter->setPen(option.palette.color(QPalette::Text));
50             QFont font = painter->font();
51             font.setBold(true);
52             painter->setFont(font);
53             int mid = (int)((r1.height() / 2));
54             r1.setBottom(r1.y() + mid);
55             QRect r2 = option.rect;
56             r2.setTop(r2.y() + mid);
57             painter->drawText(r1, Qt::AlignLeft | Qt::AlignBottom , index.data().toString());
58             font.setBold(false);
59             painter->setFont(font);
60             painter->setPen(option.palette.color(QPalette::Mid));
61             painter->drawText(r2, Qt::AlignLeft | Qt::AlignVCenter , index.data(Qt::UserRole).toString());
62             painter->restore();
63             return;
64         }
65         // Set up a QStyleOptionProgressBar to precisely mimic the
66         // environment of a progress bar.
67         QStyleOptionProgressBar progressBarOption;
68         progressBarOption.state = option.state;
69         progressBarOption.direction = QApplication::layoutDirection();
70         QRect rect = option.rect;
71         if (option.state & (QStyle::State_Selected)) {
72             painter->setPen(option.palette.color(QPalette::HighlightedText));
73             painter->fillRect(rect, option.palette.highlight());
74         }
75
76         int mid = rect.height() / 2;
77         rect.setTop(rect.top() + mid / 2);
78         rect.setHeight(mid);
79         progressBarOption.rect = rect;
80         progressBarOption.fontMetrics = QApplication::fontMetrics();
81         progressBarOption.minimum = 0;
82         progressBarOption.maximum = 100;
83         progressBarOption.textAlignment = Qt::AlignCenter;
84         progressBarOption.textVisible = true;
85
86         // Set the progress and text values of the style option.
87         int progress = index.data(Qt::UserRole).toInt();
88         progressBarOption.progress = progress < 0 ? 0 : progress;
89         progressBarOption.text = QString().sprintf("%d%%", progressBarOption.progress);
90
91         // Draw the progress bar onto the view.
92         QApplication::style()->drawControl(QStyle::CE_ProgressBar, &progressBarOption, painter);
93     }
94 };
95
96
97 class RenderWidget : public QDialog {
98     Q_OBJECT
99
100 public:
101     RenderWidget(const QString &projectfolder, QWidget * parent = 0);
102     void setGuides(QDomElement guidesxml, double duration);
103     void focusFirstVisibleItem();
104     void setProfile(MltVideoProfile profile);
105     void setRenderJob(const QString &dest, int progress = 0);
106     void setRenderStatus(const QString &dest, int status, const QString &error);
107     void setDocumentPath(const QString path);
108
109 private slots:
110     void slotUpdateButtons(KUrl url);
111     void slotUpdateButtons();
112     void slotExport();
113     void refreshView();
114     void refreshParams();
115     void slotSaveProfile();
116     void slotEditProfile();
117     void slotDeleteProfile();
118     void slotUpdateGuideBox();
119     void slotCheckStartGuidePosition();
120     void slotCheckEndGuidePosition();
121     void showInfoPanel();
122     void slotAbortCurrentJob();
123
124 private:
125     Ui::RenderWidget_UI m_view;
126     MltVideoProfile m_profile;
127     QString m_projectFolder;
128     void parseProfiles(QString group = QString(), QString profile = QString());
129     void parseFile(QString exportFile, bool editable);
130     void updateButtons();
131     KUrl filenameWithExtension(KUrl url, QString extension);
132
133 signals:
134     void doRender(const QString&, const QString&, const QStringList &, const QStringList &, bool, bool, double, double, bool);
135     void abortProcess(const QString &url);
136     void openDvdWizard(const QString &url, const QString &profile);
137 };
138
139
140 #endif
141