]> git.sesse.net Git - kdenlive/blob - src/encodingprofilesdialog.cpp
Remove unused variable
[kdenlive] / src / encodingprofilesdialog.cpp
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 #include "encodingprofilesdialog.h"
21 #include "kdenlivesettings.h"
22
23 #include <KStandardDirs>
24 #include <KDebug>
25 #include <KMessageBox>
26 #include <KIO/NetAccess>
27
28 #include <QDir>
29 #include <QCloseEvent>
30 #include <QVBoxLayout>
31 #include <QLineEdit>
32 #include <QPlainTextEdit>
33
34 EncodingProfilesDialog::EncodingProfilesDialog(int profileType, QWidget * parent) :
35     QDialog(parent),
36     m_configGroup(NULL)
37 {
38     setupUi(this);
39     setWindowTitle(i18n("Manage Encoding Profiles"));
40     profile_type->addItem(i18n("Proxy clips"), 0);
41     profile_type->addItem(i18n("Video4Linux capture"), 1);
42     profile_type->addItem(i18n("Screen capture"), 2);
43     profile_type->addItem(i18n("Decklink capture"), 3);
44     
45     button_add->setIcon(KIcon("list-add"));
46     button_edit->setIcon(KIcon("document-edit"));
47     button_delete->setIcon(KIcon("list-remove"));
48     button_download->setIcon(KIcon("download"));
49     
50     m_configFile = new KConfig("encodingprofiles.rc", KConfig::CascadeConfig, "appdata");
51     profile_type->setCurrentIndex(profileType);
52     connect(profile_type, SIGNAL(currentIndexChanged(int)), this, SLOT(slotLoadProfiles()));
53     connect(profile_list, SIGNAL(currentRowChanged(int)), this, SLOT(slotShowParams()));
54     connect(button_delete, SIGNAL(clicked()), this, SLOT(slotDeleteProfile()));
55     connect(button_add, SIGNAL(clicked()), this, SLOT(slotAddProfile()));
56     connect(button_edit, SIGNAL(clicked()), this, SLOT(slotEditProfile()));
57     profile_parameters->setMaximumHeight(QFontMetrics(font()).lineSpacing() * 5);
58     slotLoadProfiles();
59 }
60
61 EncodingProfilesDialog::~EncodingProfilesDialog()
62 {
63     delete m_configGroup;
64     delete m_configFile;
65 }
66
67 void EncodingProfilesDialog::slotLoadProfiles()
68 {
69     profile_list->blockSignals(true);
70     profile_list->clear();
71     QString group;
72     switch (profile_type->currentIndex()) {
73     case 0:
74         group = "proxy";
75         break;
76     case 1:
77         group = "video4linux";
78         break;
79     case 2:
80         group = "screengrab";
81         break;
82     default:
83     case 3:
84         group = "decklink";
85         break;
86     }
87
88     delete m_configGroup;
89     m_configGroup = new KConfigGroup(m_configFile, group);
90     QMap< QString, QString > values = m_configGroup->entryMap();
91     QMapIterator<QString, QString> i(values);
92     while (i.hasNext()) {
93         i.next();
94         QListWidgetItem *item = new QListWidgetItem(i.key(), profile_list);
95         item->setData(Qt::UserRole, i.value());
96         //cout << i.key() << ": " << i.value() << endl;
97     }
98     profile_list->blockSignals(false);
99     profile_list->setCurrentRow(0);
100     button_delete->setEnabled(profile_list->count() > 0);
101     button_edit->setEnabled(profile_list->count() > 0);
102 }
103
104 void EncodingProfilesDialog::slotShowParams()
105 {
106     profile_parameters->clear();
107     QListWidgetItem *item = profile_list->currentItem();
108     if (!item) return;
109     profile_parameters->setPlainText(item->data(Qt::UserRole).toString().section(';', 0, 0));
110 }
111
112 void EncodingProfilesDialog::slotDeleteProfile()
113 {
114     QListWidgetItem *item = profile_list->currentItem();
115     if (!item) return;
116     QString profile = item->text();
117     m_configGroup->deleteEntry(profile);
118     slotLoadProfiles();
119 }
120
121 void EncodingProfilesDialog::slotAddProfile()
122 {
123     QDialog *d = new QDialog(this);
124     QVBoxLayout *l = new QVBoxLayout;
125     l->addWidget(new QLabel(i18n("Profile name:")));
126     QLineEdit *pname = new QLineEdit;
127     l->addWidget(pname);
128     l->addWidget(new QLabel(i18n("Parameters:")));
129     QPlainTextEdit *pparams = new QPlainTextEdit;
130     l->addWidget(pparams);
131     l->addWidget(new QLabel(i18n("File extension:")));
132     QLineEdit *pext = new QLineEdit;
133     l->addWidget(pext);
134     QDialogButtonBox *box = new QDialogButtonBox(QDialogButtonBox::Save | QDialogButtonBox::Cancel);
135     connect(box, SIGNAL(accepted()), d, SLOT(accept()));
136     connect(box, SIGNAL(rejected()), d, SLOT(reject()));
137     l->addWidget(box);
138     d->setLayout(l);
139     
140     QListWidgetItem *item = profile_list->currentItem();
141     if (item) {
142         QString data = item->data(Qt::UserRole).toString();
143         pparams->setPlainText(data.section(';', 0, 0));
144         pext->setText(data.section(';', 1, 1));
145     }
146     if (d->exec() == QDialog::Accepted) {
147         m_configGroup->writeEntry(pname->text(), pparams->toPlainText() + ';' + pext->text());
148         slotLoadProfiles();
149     }
150     delete d;
151 }
152
153 void EncodingProfilesDialog::slotEditProfile()
154 {
155     QDialog *d = new QDialog(this);
156     QVBoxLayout *l = new QVBoxLayout;
157     l->addWidget(new QLabel(i18n("Profile name:")));
158     QLineEdit *pname = new QLineEdit;
159     l->addWidget(pname);
160     l->addWidget(new QLabel(i18n("Parameters:")));
161     QPlainTextEdit *pparams = new QPlainTextEdit;
162     l->addWidget(pparams);
163     l->addWidget(new QLabel(i18n("File extension:")));
164     QLineEdit *pext = new QLineEdit;
165     l->addWidget(pext);
166     QDialogButtonBox *box = new QDialogButtonBox(QDialogButtonBox::Save | QDialogButtonBox::Cancel);
167     connect(box, SIGNAL(accepted()), d, SLOT(accept()));
168     connect(box, SIGNAL(rejected()), d, SLOT(reject()));
169     l->addWidget(box);
170     d->setLayout(l);
171     
172     QListWidgetItem *item = profile_list->currentItem();
173     if (item) {
174         pname->setText(item->text());
175         QString data = item->data(Qt::UserRole).toString();
176         pparams->setPlainText(data.section(';', 0, 0));
177         pext->setText(data.section(';', 1, 1));
178         pparams->setFocus();
179     }
180     if (d->exec() == QDialog::Accepted) {
181         m_configGroup->writeEntry(pname->text(), pparams->toPlainText() + ';' + pext->text());
182         slotLoadProfiles();
183     }
184     delete d;
185 }
186
187
188 #include "encodingprofilesdialog.moc"