]> git.sesse.net Git - kdenlive/blob - src/effectstackedit.cpp
fix fault on exit kdenlive
[kdenlive] / src / effectstackedit.cpp
1 /***************************************************************************
2                           effecstackview.cpp  -  description
3                              -------------------
4     begin                : Feb 15 2008
5     copyright            : (C) 2008 by Marco Gittler
6     email                : g.marco@freenet.de
7  ***************************************************************************/
8
9 /***************************************************************************
10  *                                                                         *
11  *   This program is free software; you can redistribute it and/or modify  *
12  *   it under the terms of the GNU General Public License as published by  *
13  *   the Free Software Foundation; either version 2 of the License, or     *
14  *   (at your option) any later version.                                   *
15  *                                                                         *
16  ***************************************************************************/
17
18 #include <KDebug>
19 #include <KLocale>
20 #include "effectstackedit.h"
21 #include <QVBoxLayout>
22 #include <QSlider>
23 #include <QLabel>
24 #include <QPushButton>
25 #include <QCheckBox>
26 #include <QScrollArea>
27 #include "ui_constval_ui.h"
28 #include "ui_listval_ui.h"
29 #include "ui_boolval_ui.h"
30 #include "ui_colorval_ui.h"
31 #include "complexparameter.h"
32
33 QMap<QString, QImage> EffectStackEdit::iconCache;
34
35 EffectStackEdit::EffectStackEdit(QFrame* frame, QWidget *parent): QObject(parent) {
36     QScrollArea *area;
37     QVBoxLayout *vbox1 = new QVBoxLayout(frame);
38     QVBoxLayout *vbox2 = new QVBoxLayout(frame);
39     vbox = new QVBoxLayout(frame);
40     vbox1->setContentsMargins(0, 0, 0, 0);
41     vbox1->setSpacing(0);
42     vbox2->setContentsMargins(0, 0, 0, 0);
43     vbox2->setSpacing(0);
44     vbox->setContentsMargins(0, 0, 0, 0);
45     vbox->setSpacing(0);
46     frame->setLayout(vbox1);
47     QFont widgetFont = frame->font();
48     widgetFont.setPointSize(widgetFont.pointSize() - 2);
49     frame->setFont(widgetFont);
50
51     area = new QScrollArea(frame);
52     QWidget *wid = new QWidget(area);
53     area->setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
54     area->setVerticalScrollBarPolicy(Qt::ScrollBarAsNeeded);
55     wid->setSizePolicy(QSizePolicy(QSizePolicy::Expanding, QSizePolicy::Minimum));
56     //area->setSizePolicy(QSizePolicy(QSizePolicy::Expanding,QSizePolicy::MinimumExpanding));
57
58     vbox1->addWidget(area);
59     wid->setLayout(vbox2);
60     vbox2->addLayout(vbox);
61     vbox2->addItem(new QSpacerItem(0, 0, QSizePolicy::Minimum, QSizePolicy::MinimumExpanding));
62     area->setWidget(wid);
63     area->setWidgetResizable(true);
64     wid->show();
65
66 }
67
68 EffectStackEdit::~EffectStackEdit() {
69     iconCache.clear();
70 }
71
72 void EffectStackEdit::transferParamDesc(const QDomElement& d, int , int) {
73     kDebug() << "in";
74     params = d;
75     QDomNodeList namenode = params.elementsByTagName("parameter");
76
77     clearAllItems();
78
79     for (int i = 0;i < namenode.count() ;i++) {
80         kDebug() << "in form";
81         QDomElement pa = namenode.item(i).toElement();
82         QDomNode na = pa.firstChildElement("name");
83         QString type = pa.attribute("type");
84         QString paramName = na.toElement().text();
85         QWidget * toFillin = new QWidget;
86         QString value = pa.attribute("value").isNull() ?
87                         pa.attribute("default") : pa.attribute("value");
88         if (type == "geometry") {
89             pa.setAttribute("namedesc", "X;Y;W;H;M");
90             pa.setAttribute("format", "%d%,%d%:%d%x%d%:%d%");
91             pa.setAttribute("min", "-200;-20;0;0;0");
92             pa.setAttribute("max", "200;200;100;100;100");
93         }
94         if (type == "complex") {
95             //pa.setAttribute("namedesc",pa.attribute("name"));
96
97         }
98         //TODO constant, list, bool, complex , color, geometry, position
99         if (type == "double" || type == "constant") {
100             createSliderItem(paramName, value.toInt(), pa.attribute("min").toInt(), pa.attribute("max").toInt());
101             delete toFillin;
102             toFillin = NULL;
103         } else if (type == "list") {
104
105             Ui::Listval_UI *lsval = new Ui::Listval_UI;
106             lsval->setupUi(toFillin);
107             QStringList listitems = pa.attribute("paramlist").split(",");
108             lsval->list->addItems(listitems);
109             lsval->list->setCurrentIndex(listitems.indexOf(value));
110             for (int i = 0;i < lsval->list->count();i++) {
111                 QString entry = lsval->list->itemText(i);
112                 if (!entry.isEmpty() && (entry.endsWith(".png") || entry.endsWith(".pgm"))) {
113                     if (!EffectStackEdit::iconCache.contains(entry)) {
114                         QImage pix(entry);
115                         EffectStackEdit::iconCache[entry] = pix.scaled(30, 30);
116                     }
117                     lsval->list->setIconSize(QSize(30, 30));
118                     lsval->list->setItemIcon(i, QPixmap::fromImage(iconCache[entry]));
119                 }
120             }
121             connect(lsval->list, SIGNAL(currentIndexChanged(int)) , this, SLOT(collectAllParameters()));
122             lsval->title->setTitle(na.toElement().text());
123             valueItems[paramName] = lsval;
124             uiItems.append(lsval);
125         } else if (type == "bool") {
126             Ui::Boolval_UI *bval = new Ui::Boolval_UI;
127             bval->setupUi(toFillin);
128             bval->checkBox->setCheckState(value == "0" ? Qt::Unchecked : Qt::Checked);
129
130             connect(bval->checkBox, SIGNAL(stateChanged(int)) , this, SLOT(collectAllParameters()));
131             bval->checkBox->setText(na.toElement().text());
132             valueItems[paramName] = bval;
133             uiItems.append(bval);
134         } else if (type == "complex" || type == "geometry") {
135             /*QStringList names=nodeAtts.namedItem("name").nodeValue().split(";");
136             QStringList max=nodeAtts.namedItem("max").nodeValue().split(";");
137             QStringList min=nodeAtts.namedItem("min").nodeValue().split(";");
138             QStringList val=value.split(";");
139             kDebug() << "in complex"<<names.size() << " " << max.size() << " " << min.size() << " " << val.size()  ;
140             if ( (names.size() == max.size() ) &&
141                  (names.size()== min.size()) &&
142                  (names.size()== val.size()) )
143             {
144              for (int i=0;i< names.size();i++){
145               createSliderItem(names[i],val[i].toInt(),min[i].toInt(),max[i].toInt());
146              };
147             }*/
148             ComplexParameter *pl = new ComplexParameter;
149             connect(pl, SIGNAL(parameterChanged()), this, SLOT(collectAllParameters()));
150             pl->setupParam(d, pa.attribute("name"), 0, 100);
151             vbox->addWidget(pl);
152             valueItems[paramName+"complex"] = pl;
153             items.append(pl);
154         } else if (type == "color") {
155             Ui::Colorval_UI *cval = new Ui::Colorval_UI;
156             cval->setupUi(toFillin);
157             bool ok;
158             cval->kcolorbutton->setColor(value.toUInt(&ok, 16));
159             kDebug() << value.toUInt(&ok, 16);
160
161             connect(cval->kcolorbutton, SIGNAL(clicked()) , this, SLOT(collectAllParameters()));
162             cval->label->setText(na.toElement().text());
163             valueItems[paramName] = cval;
164             uiItems.append(cval);
165         } else {
166             delete toFillin;
167             toFillin = NULL;
168         }
169
170         if (toFillin) {
171             items.append(toFillin);
172             vbox->addWidget(toFillin);
173         }
174     }
175 }
176 void EffectStackEdit::collectAllParameters() {
177     QDomElement oldparam = params.cloneNode().toElement();
178     QDomNodeList namenode = params.elementsByTagName("parameter");
179
180     for (int i = 0;i < namenode.count() ;i++) {
181         QDomNode pa = namenode.item(i);
182         QDomNode na = pa.firstChildElement("name");
183         QString type = pa.attributes().namedItem("type").nodeValue();
184         QString setValue;
185         if (type == "double" || type == "constant") {
186             QSlider* slider = ((Ui::Constval_UI*)valueItems[na.toElement().text()])->horizontalSlider;
187             setValue = QString::number(slider->value());
188         } else
189             if (type == "list") {
190                 KComboBox *box = ((Ui::Listval_UI*)valueItems[na.toElement().text()])->list;
191                 setValue = box->currentText();
192             } else
193                 if (type == "bool") {
194                     QCheckBox *box = ((Ui::Boolval_UI*)valueItems[na.toElement().text()])->checkBox;
195                     setValue = box->checkState() == Qt::Checked ? "1" : "0" ;
196                 } else
197                     if (type == "color") {
198                         KColorButton *color = ((Ui::Colorval_UI*)valueItems[na.toElement().text()])->kcolorbutton;
199                         setValue.sprintf("0x%08x", color->color().rgba());
200                     } else
201                         if (type == "complex" || type == "geometry") {
202                             ComplexParameter *complex = ((ComplexParameter*)valueItems[na.toElement().text()+"complex"]);
203                             namenode.item(i) = complex->getParamDesc();
204                         }
205         if (!setValue.isNull()) {
206             pa.attributes().namedItem("value").setNodeValue(setValue);
207         }
208     }
209     emit parameterChanged(oldparam, params);
210 }
211
212 void EffectStackEdit::createSliderItem(const QString& name, int val , int min, int max) {
213     QWidget* toFillin = new QWidget;
214     Ui::Constval_UI *ctval = new Ui::Constval_UI;
215     ctval->setupUi(toFillin);
216
217     ctval->horizontalSlider->setMinimum(min);
218     ctval->horizontalSlider->setMaximum(max);
219     ctval->spinBox->setMinimum(min);
220     ctval->spinBox->setMaximum(max);
221     ctval->horizontalSlider->setPageStep((int)(max - min) / 10);
222     ctval->horizontalSlider->setValue(val);
223     ctval->label->setText(name);
224     valueItems[name] = ctval;
225     uiItems.append(ctval);
226     connect(ctval->horizontalSlider, SIGNAL(valueChanged(int)) , this, SLOT(collectAllParameters()));
227     items.append(toFillin);
228     vbox->addWidget(toFillin);
229 }
230
231 void EffectStackEdit::slotSliderMoved(int) {
232     collectAllParameters();
233 }
234
235 void EffectStackEdit::clearAllItems() {
236     foreach(QWidget* w, items) {
237         vbox->removeWidget(w);
238         delete w;
239     }
240     foreach(void * p, uiItems) {
241         delete p;
242     }
243     uiItems.clear();
244     items.clear();
245     valueItems.clear();
246 }