]> git.sesse.net Git - kdenlive/commitdiff
New widget for effect group
authorJean-Baptiste Mardelle <jb@kdenlive.org>
Wed, 28 Mar 2012 18:31:35 +0000 (20:31 +0200)
committerJean-Baptiste Mardelle <jb@kdenlive.org>
Wed, 28 Mar 2012 18:31:35 +0000 (20:31 +0200)
12 files changed:
src/CMakeLists.txt
src/effectstack/CMakeLists.txt
src/effectstack/abstractcollapsiblewidget.cpp [new file with mode: 0644]
src/effectstack/abstractcollapsiblewidget.h [new file with mode: 0644]
src/effectstack/collapsibleeffect.cpp
src/effectstack/collapsibleeffect.h
src/effectstack/collapsiblegroup.cpp [new file with mode: 0644]
src/effectstack/collapsiblegroup.h [new file with mode: 0644]
src/effectstack/effectstackview2.cpp
src/effectstack/effectstackview2.h
src/effectstackedit.cpp
src/widgets/collapsiblegroup_ui.ui [new file with mode: 0644]

index fdbd92b4e020295f6e862702bf435c30424466ac..e7a73b4e6115c4d96dd4078716d42d43939d757a 100644 (file)
@@ -197,6 +197,7 @@ kde4_add_ui_files(kdenlive_UIS
   widgets/clipproperties_ui.ui
   widgets/cliptranscode_ui.ui
   widgets/collapsiblewidget_ui.ui
+  widgets/collapsiblegroup_ui.ui
   widgets/clipstabilize_ui.ui
   widgets/colorclip_ui.ui
   widgets/colorplaneexport_ui.ui
index de217223654b203265637a81feef0557f1b10256..613236cc2a94955406df4eb53d6b0c2e380d4255 100644 (file)
@@ -1,6 +1,8 @@
 set(kdenlive_SRCS
   ${kdenlive_SRCS}
+  effectstack/abstractcollapsiblewidget.cpp
   effectstack/collapsibleeffect.cpp
+  effectstack/collapsiblegroup.cpp
   effectstack/effectstackview2.cpp
   PARENT_SCOPE
 )
diff --git a/src/effectstack/abstractcollapsiblewidget.cpp b/src/effectstack/abstractcollapsiblewidget.cpp
new file mode 100644 (file)
index 0000000..1820a50
--- /dev/null
@@ -0,0 +1,28 @@
+/***************************************************************************
+ *   Copyright (C) 2012 by Jean-Baptiste Mardelle (jb@kdenlive.org)        *
+ *                                                                         *
+ *   This program is free software; you can redistribute it and/or modify  *
+ *   it under the terms of the GNU General Public License as published by  *
+ *   the Free Software Foundation; either version 2 of the License, or     *
+ *   (at your option) any later version.                                   *
+ *                                                                         *
+ *   This program is distributed in the hope that it will be useful,       *
+ *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
+ *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
+ *   GNU General Public License for more details.                          *
+ *                                                                         *
+ *   You should have received a copy of the GNU General Public License     *
+ *   along with this program; if not, write to the                         *
+ *   Free Software Foundation, Inc.,                                       *
+ *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA          *
+ ***************************************************************************/
+
+
+#include "abstractcollapsiblewidget.h"
+
+
+AbstractCollapsibleWidget::AbstractCollapsibleWidget(QWidget * parent) :
+        QWidget(parent)
+{
+  
+}
\ No newline at end of file
diff --git a/src/effectstack/abstractcollapsiblewidget.h b/src/effectstack/abstractcollapsiblewidget.h
new file mode 100644 (file)
index 0000000..9177d7b
--- /dev/null
@@ -0,0 +1,37 @@
+/***************************************************************************
+ *   Copyright (C) 2012 by Jean-Baptiste Mardelle (jb@kdenlive.org)        *
+ *                                                                         *
+ *   This program is free software; you can redistribute it and/or modify  *
+ *   it under the terms of the GNU General Public License as published by  *
+ *   the Free Software Foundation; either version 2 of the License, or     *
+ *   (at your option) any later version.                                   *
+ *                                                                         *
+ *   This program is distributed in the hope that it will be useful,       *
+ *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
+ *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
+ *   GNU General Public License for more details.                          *
+ *                                                                         *
+ *   You should have received a copy of the GNU General Public License     *
+ *   along with this program; if not, write to the                         *
+ *   Free Software Foundation, Inc.,                                       *
+ *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA          *
+ ***************************************************************************/
+
+
+#ifndef ABSTRACTCOLLAPSIBLEWIDGET_H
+#define ABSTRACTCOLLAPSIBLEWIDGET_H
+
+#include <QWidget>
+
+class AbstractCollapsibleWidget : public QWidget
+{
+    Q_OBJECT
+
+public:
+    AbstractCollapsibleWidget(QWidget * parent = 0);
+    virtual void setActive(bool activate) = 0;
+    virtual bool isGroup() const = 0;
+  
+};
+
+#endif
index 550f2d663c0067fcb6e80ab0d8d8f8632621eefa..8431bfa50056c37db43b5bc1b7bf0971de932756 100644 (file)
@@ -118,14 +118,12 @@ void MySpinBox::focusOutEvent(QFocusEvent*)
 }
 
 
-CollapsibleEffect::CollapsibleEffect(QDomElement effect, QDomElement original_effect, ItemInfo info, int ix, EffectMetaInfo *metaInfo, bool lastEffect, bool isGroup, QWidget * parent) :
-        QWidget(parent),
+CollapsibleEffect::CollapsibleEffect(QDomElement effect, QDomElement original_effect, ItemInfo info, EffectMetaInfo *metaInfo, bool lastEffect, QWidget * parent) :
+        AbstractCollapsibleWidget(parent),
         m_paramWidget(NULL),
         m_effect(effect),
         m_original_effect(original_effect),
-        m_lastEffect(lastEffect),
-        m_isGroup(isGroup),
-        m_index(ix)
+        m_lastEffect(lastEffect)
 {
     setupUi(this);
     filterWheelEvent = true;
@@ -154,25 +152,19 @@ CollapsibleEffect::CollapsibleEffect(QDomElement effect, QDomElement original_ef
     m_menu->addAction(KIcon("view-refresh"), i18n("Reset effect"), this, SLOT(slotResetEffect()));
     m_menu->addAction(KIcon("document-save"), i18n("Save effect"), this, SLOT(slotSaveEffect()));
     
-    if (!m_isGroup) {
-       QDomElement namenode = m_effect.firstChildElement("name");
-       if (namenode.isNull()) return;
-       title->setText(i18n(namenode.text().toUtf8().data()));
-       QString type = m_effect.attribute("type", QString());
-       KIcon icon;
-       if (type == "audio") icon = KIcon("kdenlive-show-audio");
-       else if (m_effect.attribute("tag") == "region") icon = KIcon("kdenlive-mask-effect");
-       else if (type == "custom") icon = KIcon("kdenlive-custom-effect");
-       else icon = KIcon("kdenlive-show-video");
-       effecticon->setPixmap(icon.pixmap(16,16));
-       m_menu->addAction(KIcon("folder-new"), i18n("Create Group"), this, SLOT(slotCreateGroup()));
-       setupWidget(info, ix, metaInfo);
-    }
-    else {
-       title->setText(i18n("Effect Group"));
-       effecticon->setPixmap(KIcon("folder").pixmap(16,16));
-       m_menu->addAction(KIcon("list-remove"), i18n("Ungroup"), this, SLOT(slotUnGroup()));
-    }
+    QDomElement namenode = m_effect.firstChildElement("name");
+    if (namenode.isNull()) return;
+    title->setText(i18n(namenode.text().toUtf8().data()));
+    QString type = m_effect.attribute("type", QString());
+    KIcon icon;
+    if (type == "audio") icon = KIcon("kdenlive-show-audio");
+    else if (m_effect.attribute("tag") == "region") icon = KIcon("kdenlive-mask-effect");
+    else if (type == "custom") icon = KIcon("kdenlive-custom-effect");
+    else icon = KIcon("kdenlive-show-video");
+    effecticon->setPixmap(icon.pixmap(16,16));
+    m_menu->addAction(KIcon("folder-new"), i18n("Create Group"), this, SLOT(slotCreateGroup()));
+    setupWidget(info, metaInfo);
+    
     setAcceptDrops(true);
     menuButton->setIcon(KIcon("kdenlive-menu"));
     menuButton->setMenu(m_menu);
@@ -225,7 +217,7 @@ const QString CollapsibleEffect::getStyleSheet(QPalette p)
     KColorScheme scheme2(p.currentColorGroup(), KColorScheme::Window, KSharedConfig::openConfig(KdenliveSettings::colortheme()));
     QColor normal_bg2 = scheme2.background(KColorScheme::NormalBackground).color();
 
-    QString stylesheet(QString("QFrame#decoframe {border-radius:5px;border:0px solid %1;border-top:0px;background:%6;} QFrame:hover#decoframe {background:%7;} QFrame#decoframe[active=\"true\"] {background:%5;} QFrame#frame[active=\"true\"] {background:%3;}  QProgressBar::chunk:horizontal {background: %6;border-top-left-radius: 4px;border-bottom-left-radius: 4px;} QProgressBar::chunk:horizontal#dragOnly {background: %5;border-top-left-radius: 4px;border-bottom-left-radius: 4px;} QProgressBar::chunk:horizontal:hover {background: %3;}\
+    QString stylesheet(QString("QLineEdit#title { background-color: transparent;} QFrame#decoframe {border-radius:5px;border:0px solid %1;background:%6;} QFrame#decoframegroup {border-radius:5px;border:1px solid %1;background:%6;} QFrame:hover#decoframe {background:%7;} QFrame#decoframe[active=\"true\"] {background:%5;} QFrame#decoframegroup[active=\"true\"] {background:%5;} QFrame#frame[active=\"true\"] {background:%3;}  QProgressBar::chunk:horizontal {background: %6;border-top-left-radius: 4px;border-bottom-left-radius: 4px;} QProgressBar::chunk:horizontal#dragOnly {background: %5;border-top-left-radius: 4px;border-bottom-left-radius: 4px;} QProgressBar::chunk:horizontal:hover {background: %3;}\
     QProgressBar:horizontal {border: 1px solid %1;border-top-left-radius: 4px;border-bottom-left-radius: 4px;border-right:0px;background:%5;padding: 0px;text-align:left center}\
                                 QProgressBar:horizontal:disabled {border: 1px solid %6} QProgressBar:horizontal#dragOnly {background: %5}\
                                 QProgressBar:horizontal[inTimeline=\"true\"] { border: 1px solid %2;border-right: 0px;background: %4;padding: 0px;text-align:left center } QProgressBar::chunk:horizontal[inTimeline=\"true\"] {background: %2;}\
@@ -350,35 +342,26 @@ void CollapsibleEffect::slotEnable(bool enable)
     enabledBox->blockSignals(true);
     enabledBox->setChecked(enable);
     enabledBox->blockSignals(false);
-    if (m_isGroup) {
-       QVBoxLayout *vbox = static_cast<QVBoxLayout *>(widgetFrame->layout());
-       if (vbox == NULL) return;
-       for (int i = 0; i < vbox->count(); i++) {
-           CollapsibleEffect *e = static_cast<CollapsibleEffect *>(vbox->itemAt(i)->widget());
-           if (e) e->enabledBox->setChecked(enable);// slotEnable(enable);
-       }
-    } else {
-       m_effect.setAttribute("disable", enable ? 0 : 1);
-       if (enable || KdenliveSettings::disable_effect_parameters()) {
-           widgetFrame->setEnabled(enable);
-       }
-       emit effectStateChanged(!enable, effectIndex());
+    m_effect.setAttribute("disable", enable ? 0 : 1);
+    if (enable || KdenliveSettings::disable_effect_parameters()) {
+       widgetFrame->setEnabled(enable);
     }
+    emit effectStateChanged(!enable, effectIndex());
 }
 
 void CollapsibleEffect::slotDeleteEffect()
 {
-    if (!m_isGroup) emit deleteEffect(m_effect);
+    emit deleteEffect(m_effect);
 }
 
 void CollapsibleEffect::slotEffectUp()
 {
-    if (!m_isGroup) emit changeEffectPosition(effectIndex(), true);
+    emit changeEffectPosition(effectIndex(), true);
 }
 
 void CollapsibleEffect::slotEffectDown()
 {
-    if (!m_isGroup) emit changeEffectPosition(effectIndex(), false);
+    emit changeEffectPosition(effectIndex(), false);
 }
 
 void CollapsibleEffect::slotSaveEffect()
@@ -453,18 +436,6 @@ void CollapsibleEffect::setGroupIndex(int ix)
     m_info.groupIndex = ix;
 }
 
-void CollapsibleEffect::addGroupEffect(CollapsibleEffect *effect)
-{
-    QVBoxLayout *vbox = static_cast<QVBoxLayout *>(widgetFrame->layout());
-    if (vbox == NULL) {
-       vbox = new QVBoxLayout();
-       vbox->setContentsMargins(10, 0, 0, 0);
-       vbox->setSpacing(2);
-       widgetFrame->setLayout(vbox);
-    }
-    effect->setGroupIndex(groupIndex());
-    vbox->addWidget(effect);
-}
 
 QString CollapsibleEffect::infoString() const
 {
@@ -485,20 +456,9 @@ void CollapsibleEffect::removeGroup(int ix, QVBoxLayout *layout)
     }
 }
 
-int CollapsibleEffect::index() const
-{
-    return m_index;
-}
-
 int CollapsibleEffect::groupIndex() const
 {
-    if (m_isGroup) return m_index;
-    return -1;
-}
-
-bool CollapsibleEffect::isGroup() const
-{
-    return m_isGroup;
+    return m_info.groupIndex;
 }
 
 int CollapsibleEffect::effectIndex() const
@@ -507,7 +467,7 @@ int CollapsibleEffect::effectIndex() const
     return m_effect.attribute("kdenlive_ix").toInt();
 }
 
-void CollapsibleEffect::updateWidget(ItemInfo info, int index, QDomElement effect, EffectMetaInfo *metaInfo)
+void CollapsibleEffect::updateWidget(ItemInfo info, QDomElement effect, EffectMetaInfo *metaInfo)
 {
     if (m_paramWidget) {
        // cleanup
@@ -515,10 +475,10 @@ void CollapsibleEffect::updateWidget(ItemInfo info, int index, QDomElement effec
        m_paramWidget = NULL;
     }
     m_effect = effect;
-    setupWidget(info, index, metaInfo);
+    setupWidget(info, metaInfo);
 }
 
-void CollapsibleEffect::setupWidget(ItemInfo info, int index, EffectMetaInfo *metaInfo)
+void CollapsibleEffect::setupWidget(ItemInfo info, EffectMetaInfo *metaInfo)
 {
     if (m_effect.isNull()) {
 //         kDebug() << "// EMPTY EFFECT STACK";
@@ -533,9 +493,9 @@ void CollapsibleEffect::setupWidget(ItemInfo info, int index, EffectMetaInfo *me
        QDomNodeList origin_effects =  m_original_effect.elementsByTagName("effect");
         QWidget *container = new QWidget(widgetFrame);
         vbox->addWidget(container);
-        m_paramWidget = new ParameterContainer(m_effect.toElement(), info, metaInfo, index, container);
+        m_paramWidget = new ParameterContainer(m_effect.toElement(), info, metaInfo, container);
         for (int i = 0; i < effects.count(); i++) {
-            CollapsibleEffect *coll = new CollapsibleEffect(effects.at(i).toElement(), origin_effects.at(i).toElement(), info, i, metaInfo, container);
+            CollapsibleEffect *coll = new CollapsibleEffect(effects.at(i).toElement(), origin_effects.at(i).toElement(), info, metaInfo, container);
             m_subParamWidgets.append(coll);
             //container = new QWidget(widgetFrame);
             vbox->addWidget(coll);
@@ -544,7 +504,7 @@ void CollapsibleEffect::setupWidget(ItemInfo info, int index, EffectMetaInfo *me
         
     }
     else {
-        m_paramWidget = new ParameterContainer(m_effect, info, metaInfo, index, widgetFrame);
+        m_paramWidget = new ParameterContainer(m_effect, info, metaInfo, widgetFrame);
         if (m_effect.firstChildElement("parameter").isNull()) {
             // Effect has no parameter, don't allow expand
             collapseButton->setEnabled(false);
@@ -569,6 +529,11 @@ void CollapsibleEffect::setupWidget(ItemInfo info, int index, EffectMetaInfo *me
     
 }
 
+bool CollapsibleEffect::isGroup() const
+{
+    return false;
+}
+
 void CollapsibleEffect::updateTimecodeFormat()
 {
     m_paramWidget->updateTimecodeFormat();
@@ -622,23 +587,12 @@ void CollapsibleEffect::dropEvent(QDropEvent *event)
        emit addEffect(e);
        return;
     }
-    int new_index = -1;
-    if (m_isGroup) {
-       QVBoxLayout *vbox = static_cast<QVBoxLayout *>(widgetFrame->layout());
-       if (vbox == NULL) return;
-       CollapsibleEffect *e = static_cast<CollapsibleEffect *>(vbox->itemAt(vbox->count() -1)->widget());
-       new_index = e->effectIndex();
-    }
-    else {
-       new_index = effectIndex();
-    }
-    emit moveEffect(ix, new_index, this);
+    emit moveEffect(ix, effectIndex(), groupIndex());
     event->setDropAction(Qt::MoveAction);
     event->accept();
 }
 
-ParameterContainer::ParameterContainer(QDomElement effect, ItemInfo info, EffectMetaInfo *metaInfo, int index, QWidget * parent) :
-       m_index(index),
+ParameterContainer::ParameterContainer(QDomElement effect, ItemInfo info, EffectMetaInfo *metaInfo, QWidget * parent) :
         m_keyframeEditor(NULL),
         m_geometryWidget(NULL),
         m_metaInfo(metaInfo),
@@ -1332,11 +1286,6 @@ QString ParameterContainer::getWipeString(wipeInfo info)
     return QString(start + ";-1=" + end);
 }
 
-int ParameterContainer::index() const
-{
-    return m_index;
-}
-
 void ParameterContainer::slotStartFilterJobAction()
 {
     QDomNodeList namenode = m_effect.elementsByTagName("parameter");
index 235d5a8331e9b55c08a5751a7c0f99075f62c5cb..d5e54043d864c21adcd2dde4572b1e8bb24298a8 100644 (file)
@@ -24,6 +24,7 @@
 
 #include "ui_collapsiblewidget_ui.h"
 
+#include "abstractcollapsiblewidget.h"
 #include "timecode.h"
 #include "keyframeedit.h"
 
@@ -68,11 +69,10 @@ class ParameterContainer : public QObject
     Q_OBJECT
 
 public:
-    ParameterContainer(QDomElement effect, ItemInfo info, EffectMetaInfo *metaInfo, int index, QWidget * parent = 0);
+    ParameterContainer(QDomElement effect, ItemInfo info, EffectMetaInfo *metaInfo, QWidget * parent = 0);
     ~ParameterContainer();
     void updateTimecodeFormat();
     void updateProjectFormat(MltVideoProfile profile, Timecode t);
-    int index() const;
 
 private slots:
     void slotCollectAllParameters();
@@ -89,7 +89,6 @@ private:
     
     int m_in;
     int m_out;
-    int m_index;
     QList<QWidget*> m_uiItems;
     QMap<QString, QWidget*> m_valueItems;
     Timecode m_timecode;
@@ -117,23 +116,21 @@ signals:
  * @author Jean-Baptiste Mardelle
  */
 
-class CollapsibleEffect : public QWidget, public Ui::CollapsibleWidget_UI
+class CollapsibleEffect : public AbstractCollapsibleWidget, public Ui::CollapsibleWidget_UI
 {
     Q_OBJECT
 
 public:
-    CollapsibleEffect(QDomElement effect, QDomElement original_effect, ItemInfo info, int ix, EffectMetaInfo *metaInfo, bool lastEffect, bool isGroup = false, QWidget * parent = 0);
+    CollapsibleEffect(QDomElement effect, QDomElement original_effect, ItemInfo info, EffectMetaInfo *metaInfo, bool lastEffect, QWidget * parent = 0);
     ~CollapsibleEffect();
     static QMap<QString, QImage> iconCache;
-    void setupWidget(ItemInfo info, int index, EffectMetaInfo *metaInfo);
+    void setupWidget(ItemInfo info, EffectMetaInfo *metaInfo);
     void updateTimecodeFormat();
     void setActive(bool activate);
     virtual bool eventFilter( QObject * o, QEvent * e );
     /** @brief Update effect GUI to reflect parameted changes. */
-    void updateWidget(ItemInfo info, int index, QDomElement effect, EffectMetaInfo *metaInfo);
+    void updateWidget(ItemInfo info, QDomElement effect, EffectMetaInfo *metaInfo);
     QDomElement effect() const;
-    void addGroupEffect(CollapsibleEffect *effect);
-    int index() const;
     int groupIndex() const;
     bool isGroup() const;
     int effectIndex() const;
@@ -171,10 +168,8 @@ private:
     bool m_lastEffect;
     int m_in;
     int m_out;
-    bool m_isGroup;
     QMenu *m_menu;
     QPoint m_clickPoint;
-    int m_index;
     EffectInfo m_info;
     
     void updateGroupIndex(int groupIndex);
@@ -203,7 +198,7 @@ signals:
     void resetEffect(int ix);
     /** @brief Ask for creation of a group. */
     void createGroup(int ix);
-    void moveEffect(int current_pos, int new_pos, CollapsibleEffect *target);
+    void moveEffect(int current_pos, int new_pos, int groupIndex);
     void unGroup(CollapsibleEffect *);
     void addEffect(QDomElement e);
 };
diff --git a/src/effectstack/collapsiblegroup.cpp b/src/effectstack/collapsiblegroup.cpp
new file mode 100644 (file)
index 0000000..11fb749
--- /dev/null
@@ -0,0 +1,298 @@
+/***************************************************************************
+ *   Copyright (C) 2008 by Jean-Baptiste Mardelle (jb@kdenlive.org)        *
+ *                                                                         *
+ *   This program is free software; you can redistribute it and/or modify  *
+ *   it under the terms of the GNU General Public License as published by  *
+ *   the Free Software Foundation; either version 2 of the License, or     *
+ *   (at your option) any later version.                                   *
+ *                                                                         *
+ *   This program is distributed in the hope that it will be useful,       *
+ *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
+ *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
+ *   GNU General Public License for more details.                          *
+ *                                                                         *
+ *   You should have received a copy of the GNU General Public License     *
+ *   along with this program; if not, write to the                         *
+ *   Free Software Foundation, Inc.,                                       *
+ *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA          *
+ ***************************************************************************/
+
+
+#include "collapsiblegroup.h"
+
+
+#include <QMenu>
+#include <QVBoxLayout>
+#include <QInputDialog>
+#include <QDragEnterEvent>
+#include <QDropEvent>
+
+#include <KDebug>
+#include <KGlobalSettings>
+#include <KLocale>
+#include <KMessageBox>
+#include <KStandardDirs>
+#include <KFileDialog>
+#include <KUrlRequester>
+#include <KColorScheme>
+
+
+CollapsibleGroup::CollapsibleGroup(int ix, bool firstGroup, bool lastGroup, QWidget * parent) :
+        AbstractCollapsibleWidget(parent),
+        m_index(ix)
+{
+    setupUi(this);
+    setFont(KGlobalSettings::smallestReadableFont());
+   
+    buttonUp->setIcon(KIcon("kdenlive-up"));
+    buttonUp->setToolTip(i18n("Move effect up"));
+    buttonDown->setIcon(KIcon("kdenlive-down"));
+    buttonDown->setToolTip(i18n("Move effect down"));
+
+    buttonDel->setIcon(KIcon("kdenlive-deleffect"));
+    buttonDel->setToolTip(i18n("Delete effect"));
+    if (firstGroup) buttonUp->setVisible(false);
+    if (lastGroup) buttonDown->setVisible(false);
+    m_menu = new QMenu;
+    m_menu->addAction(KIcon("view-refresh"), i18n("Reset effect"), this, SLOT(slotResetEffect()));
+    m_menu->addAction(KIcon("document-save"), i18n("Save effect"), this, SLOT(slotSaveEffect()));
+    
+    title->setText(i18n("Effect Group"));
+    effecticon->setPixmap(KIcon("folder").pixmap(16,16));
+    m_menu->addAction(KIcon("list-remove"), i18n("Ungroup"), this, SLOT(slotUnGroup()));
+    setAcceptDrops(true);
+    menuButton->setIcon(KIcon("kdenlive-menu"));
+    menuButton->setMenu(m_menu);
+    
+    enabledBox->setChecked(true);
+
+    connect(collapseButton, SIGNAL(clicked()), this, SLOT(slotSwitch()));
+    connect(enabledBox, SIGNAL(toggled(bool)), this, SLOT(slotEnable(bool)));
+    connect(buttonUp, SIGNAL(clicked()), this, SLOT(slotEffectUp()));
+    connect(buttonDown, SIGNAL(clicked()), this, SLOT(slotEffectDown()));
+    connect(buttonDel, SIGNAL(clicked()), this, SLOT(slotDeleteEffect()));
+
+}
+
+CollapsibleGroup::~CollapsibleGroup()
+{
+    delete m_menu;
+}
+
+void CollapsibleGroup::slotUnGroup()
+{
+    emit unGroup(this);
+}
+
+bool CollapsibleGroup::isActive() const
+{
+    return decoframegroup->property("active").toBool();
+}
+
+void CollapsibleGroup::setActive(bool activate)
+{
+    decoframegroup->setProperty("active", activate);
+    decoframegroup->setStyleSheet(decoframegroup->styleSheet());
+}
+
+void CollapsibleGroup::mouseDoubleClickEvent ( QMouseEvent * event )
+{
+    if (frame->underMouse() && collapseButton->isEnabled()) slotSwitch();
+    QWidget::mouseDoubleClickEvent(event);
+}
+
+
+void CollapsibleGroup::slotEnable(bool enable)
+{
+    title->setEnabled(enable);
+    enabledBox->blockSignals(true);
+    enabledBox->setChecked(enable);
+    enabledBox->blockSignals(false);
+    QVBoxLayout *vbox = static_cast<QVBoxLayout *>(widgetFrame->layout());
+    if (vbox == NULL) return;
+    for (int i = 0; i < vbox->count(); i++) {
+       CollapsibleGroup *e = static_cast<CollapsibleGroup *>(vbox->itemAt(i)->widget());
+       if (e) e->enabledBox->setChecked(enable);// slotEnable(enable);
+    }
+}
+
+void CollapsibleGroup::slotDeleteEffect()
+{
+    emit deleteGroup(groupIndex());
+}
+
+void CollapsibleGroup::slotEffectUp()
+{
+    emit changeGroupPosition(groupIndex(), true);
+}
+
+void CollapsibleGroup::slotEffectDown()
+{
+    emit changeGroupPosition(groupIndex(), false);
+}
+
+void CollapsibleGroup::slotSaveEffect()
+{
+    QString name = QInputDialog::getText(this, i18n("Save Effect"), i18n("Name for saved effect: "));
+    if (name.isEmpty()) return;
+    QString path = KStandardDirs::locateLocal("appdata", "effects/", true);
+    path = path + name + ".xml";
+    if (QFile::exists(path)) if (KMessageBox::questionYesNo(this, i18n("File %1 already exists.\nDo you want to overwrite it?", path)) == KMessageBox::No) return;
+
+    /*TODO
+    QDomDocument doc;
+    QDomElement effect = m_effect.cloneNode().toElement();
+    doc.appendChild(doc.importNode(effect, true));
+    effect = doc.firstChild().toElement();
+    effect.removeAttribute("kdenlive_ix");
+    effect.setAttribute("id", name);
+    effect.setAttribute("type", "custom");
+    QDomElement effectname = effect.firstChildElement("name");
+    effect.removeChild(effectname);
+    effectname = doc.createElement("name");
+    QDomText nametext = doc.createTextNode(name);
+    effectname.appendChild(nametext);
+    effect.insertBefore(effectname, QDomNode());
+    QDomElement effectprops = effect.firstChildElement("properties");
+    effectprops.setAttribute("id", name);
+    effectprops.setAttribute("type", "custom");
+
+    QFile file(path);
+    if (file.open(QFile::WriteOnly | QFile::Truncate)) {
+        QTextStream out(&file);
+        out << doc.toString();
+    }
+    file.close();
+    emit reloadEffects();*/
+}
+
+void CollapsibleGroup::slotResetEffect()
+{
+    //TODO: emit resetEffect(effectIndex());
+}
+
+void CollapsibleGroup::slotSwitch()
+{
+    bool enable = !widgetFrame->isVisible();
+    slotShow(enable);
+}
+
+void CollapsibleGroup::slotShow(bool show)
+{
+    widgetFrame->setVisible(show);
+    if (show) {
+        collapseButton->setArrowType(Qt::DownArrow);
+       m_info.isCollapsed = false;
+    }
+    else {
+        collapseButton->setArrowType(Qt::RightArrow);
+       m_info.isCollapsed = true;
+    }
+    //emit parameterChanged(m_original_effect, m_effect, effectIndex());   
+}
+
+void CollapsibleGroup::updateGroupIndex(int groupIndex)
+{
+  /*TODO:
+    m_info.groupIndex = groupIndex;
+    m_effect.setAttribute("kdenlive_info", m_info.toString());
+    emit parameterChanged(m_original_effect, m_effect, effectIndex());*/
+}
+
+void CollapsibleGroup::addGroupEffect(CollapsibleEffect *effect)
+{
+    QVBoxLayout *vbox = static_cast<QVBoxLayout *>(widgetFrame->layout());
+    if (vbox == NULL) {
+       vbox = new QVBoxLayout();
+       vbox->setContentsMargins(10, 0, 0, 0);
+       vbox->setSpacing(2);
+       widgetFrame->setLayout(vbox);
+    }
+    effect->setGroupIndex(groupIndex());
+    vbox->addWidget(effect);
+}
+
+QString CollapsibleGroup::infoString() const
+{
+    return m_info.toString();
+}
+
+void CollapsibleGroup::removeGroup(int ix, QVBoxLayout *layout)
+{
+    QVBoxLayout *vbox = static_cast<QVBoxLayout *>(widgetFrame->layout());
+    if (vbox == NULL) return;
+    
+    for (int j = vbox->count() - 1; j >= 0; j--) {
+       QLayoutItem *child = vbox->takeAt(j);
+       CollapsibleGroup *e = static_cast<CollapsibleGroup *>(child->widget());
+       layout->insertWidget(ix, e);
+       e->updateGroupIndex(-1);
+       delete child;
+    }
+}
+
+int CollapsibleGroup::groupIndex() const
+{
+    return m_index;
+}
+
+
+
+bool CollapsibleGroup::isGroup() const
+{
+    return true;
+}
+
+void CollapsibleGroup::updateTimecodeFormat()
+{
+    QVBoxLayout *vbox = static_cast<QVBoxLayout *>(widgetFrame->layout());
+    if (vbox == NULL) return;
+    for (int j = vbox->count() - 1; j >= 0; j--) {
+       CollapsibleEffect *e = static_cast<CollapsibleEffect *>(vbox->itemAt(j)->widget());
+       if (e) e->updateTimecodeFormat();
+    }
+}
+
+void CollapsibleGroup::dragEnterEvent(QDragEnterEvent *event)
+{
+    if (event->mimeData()->hasFormat("kdenlive/effectslist")) {
+       frame->setProperty("active", true);
+       frame->setStyleSheet(frame->styleSheet());
+       event->acceptProposedAction();
+    }
+}
+
+void CollapsibleGroup::dragLeaveEvent(QDragLeaveEvent */*event*/)
+{
+    frame->setProperty("active", false);
+    frame->setStyleSheet(frame->styleSheet());
+}
+
+void CollapsibleGroup::dropEvent(QDropEvent *event)
+{
+    frame->setProperty("active", false);
+    frame->setStyleSheet(frame->styleSheet());
+    const QString effects = QString::fromUtf8(event->mimeData()->data("kdenlive/effectslist"));
+    //event->acceptProposedAction();
+    QDomDocument doc;
+    doc.setContent(effects, true);
+    QDomElement e = doc.documentElement();
+    int ix = e.attribute("kdenlive_ix").toInt();
+    if (ix == 0) {
+       // effect dropped from effects list, add it
+       e.setAttribute("kdenlive_ix", ix);
+       event->setDropAction(Qt::CopyAction);
+       event->accept();
+       emit addEffect(e);
+       return;
+    }
+    int new_index = -1;
+    QVBoxLayout *vbox = static_cast<QVBoxLayout *>(widgetFrame->layout());
+    if (vbox == NULL) return;
+    CollapsibleEffect *effect = static_cast<CollapsibleEffect *>(vbox->itemAt(vbox->count() -1)->widget());
+    new_index = effect->effectIndex();
+    emit moveEffect(ix, new_index, m_index);
+    event->setDropAction(Qt::MoveAction);
+    event->accept();
+}
+
diff --git a/src/effectstack/collapsiblegroup.h b/src/effectstack/collapsiblegroup.h
new file mode 100644 (file)
index 0000000..a0972ad
--- /dev/null
@@ -0,0 +1,99 @@
+/***************************************************************************
+ *   Copyright (C) 2008 by Jean-Baptiste Mardelle (jb@kdenlive.org)        *
+ *                                                                         *
+ *   This program is free software; you can redistribute it and/or modify  *
+ *   it under the terms of the GNU General Public License as published by  *
+ *   the Free Software Foundation; either version 2 of the License, or     *
+ *   (at your option) any later version.                                   *
+ *                                                                         *
+ *   This program is distributed in the hope that it will be useful,       *
+ *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
+ *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
+ *   GNU General Public License for more details.                          *
+ *                                                                         *
+ *   You should have received a copy of the GNU General Public License     *
+ *   along with this program; if not, write to the                         *
+ *   Free Software Foundation, Inc.,                                       *
+ *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA          *
+ ***************************************************************************/
+
+
+#ifndef COLLAPSIBLEGROUP_H
+#define COLLAPSIBLEGROUP_H
+
+
+#include "ui_collapsiblegroup_ui.h"
+
+#include "abstractcollapsiblewidget.h"
+#include "collapsibleeffect.h"
+#include "timecode.h"
+#include "keyframeedit.h"
+
+#include <QDomElement>
+#include <QToolButton>
+
+class QFrame;
+
+
+/**)
+ * @class CollapsibleEffect
+ * @brief A dialog for editing markers and guides.
+ * @author Jean-Baptiste Mardelle
+ */
+
+class CollapsibleGroup : public AbstractCollapsibleWidget, public Ui::CollapsibleGroup_UI
+{
+    Q_OBJECT
+
+public:
+    CollapsibleGroup(int ix, bool firstGroup, bool lastGroup, QWidget * parent = 0);
+    ~CollapsibleGroup();
+    void updateTimecodeFormat();
+    void setActive(bool activate);
+    int groupIndex() const;
+    bool isGroup() const;
+    QString infoString() const;
+    bool isActive() const;
+    void addGroupEffect(CollapsibleEffect *effect);
+    void removeGroup(int ix, QVBoxLayout *layout);
+
+public slots:
+    void slotEnable(bool enable);
+
+private slots:
+    void slotSwitch();
+    void slotShow(bool show);
+    void slotDeleteEffect();
+    void slotEffectUp();
+    void slotEffectDown();
+    void slotSaveEffect();
+    void slotResetEffect();
+    void slotUnGroup();
+
+private:
+    //QList <CollapsibleEffect *> m_subParamWidgets;
+    QMenu *m_menu;
+    EffectInfo m_info;
+    int m_index;
+    void updateGroupIndex(int groupIndex);
+    
+protected:
+    virtual void mouseDoubleClickEvent ( QMouseEvent * event );
+    virtual void dragEnterEvent(QDragEnterEvent *event);
+    virtual void dragLeaveEvent(QDragLeaveEvent *event);
+    virtual void dropEvent(QDropEvent *event);
+    
+signals:
+    void syncEffectsPos(int);
+    void effectStateChanged(bool, int ix = -1);
+    void deleteGroup(int);
+    void changeGroupPosition(int, bool);
+    void activateEffect(int);
+    void moveEffect(int current_pos, int new_pos, int groupIndex);
+    void addEffect(QDomElement e);
+    void unGroup(CollapsibleGroup *);
+};
+
+
+#endif
+
index 829d2b6d66b676d9cdb31b35b9ab801d409a25ce..46b9afa5dfdb5fc519a2a6e8917f5ab8b78f6340 100644 (file)
@@ -26,6 +26,8 @@
 #include "monitoreditwidget.h"
 #include "monitorscene.h"
 #include "kdenlivesettings.h"
+#include "collapsibleeffect.h"
+#include "collapsiblegroup.h"
 
 #include <KDebug>
 #include <KLocale>
@@ -163,13 +165,14 @@ void EffectStackView2::setupListView(int ix)
             continue;
         }
         
-        CollapsibleEffect *group = NULL;
+        CollapsibleGroup *group = NULL;
        EffectInfo effectInfo;
        effectInfo.fromString(d.attribute("kdenlive_info"));
        if (effectInfo.groupIndex >= 0) {
            // effect is in a group
-           for (int i = 0; i < vbox1->count(); i++) {
-               CollapsibleEffect *eff = static_cast<CollapsibleEffect *>(vbox1->itemAt(i)->widget());
+           
+           for (int j = 0; j < vbox1->count(); j++) {
+               CollapsibleGroup *eff = static_cast<CollapsibleGroup *>(vbox1->itemAt(j)->widget());
                if (eff->isGroup() &&  eff->groupIndex() == effectInfo.groupIndex) {
                    group = eff;
                    break;
@@ -177,10 +180,10 @@ void EffectStackView2::setupListView(int ix)
            }
            
            if (group == NULL) {
-               group = new CollapsibleEffect(QDomElement(), QDomElement(), ItemInfo(), effectInfo.groupIndex, &m_effectMetaInfo, false, true, m_ui.container->widget());
+               group = new CollapsibleGroup(effectInfo.groupIndex, i == 0, i == m_currentEffectList.count() - 1, m_ui.container->widget());
                if (!effectInfo.groupName.isEmpty()) group->title->setText(effectInfo.groupName);
-               connect(group, SIGNAL(moveEffect(int,int,CollapsibleEffect*)), this, SLOT(slotMoveEffect(int,int,CollapsibleEffect*)));
-               connect(group, SIGNAL(unGroup(CollapsibleEffect*)), this , SLOT(slotUnGroup(CollapsibleEffect*)));
+               connect(group, SIGNAL(moveEffect(int,int,int)), this, SLOT(slotMoveEffect(int,int,int)));
+               connect(group, SIGNAL(unGroup(CollapsibleGroup*)), this , SLOT(slotUnGroup(CollapsibleGroup*)));
                vbox1->addWidget(group);
            }
            if (effectInfo.groupIndex >= m_groupIndex) m_groupIndex = effectInfo.groupIndex + 1;
@@ -200,7 +203,7 @@ void EffectStackView2::setupListView(int ix)
        }
        else info = m_clipref->info();
 
-        CollapsibleEffect *currentEffect = new CollapsibleEffect(d, m_currentEffectList.at(i), info, i, &m_effectMetaInfo, i == m_currentEffectList.count() - 1, false, view);
+        CollapsibleEffect *currentEffect = new CollapsibleEffect(d, m_currentEffectList.at(i), info, &m_effectMetaInfo, i == m_currentEffectList.count() - 1, view);
         m_effects.append(currentEffect);
         if (group) {
            group->addGroupEffect(currentEffect);
@@ -223,7 +226,7 @@ void EffectStackView2::setupListView(int ix)
         connect(currentEffect, SIGNAL(checkMonitorPosition(int)), this, SLOT(slotCheckMonitorPosition(int)));
         connect(currentEffect, SIGNAL(seekTimeline(int)), this , SLOT(slotSeekTimeline(int)));
        connect(currentEffect, SIGNAL(createGroup(int)), this , SLOT(slotCreateGroup(int)));
-       connect(currentEffect, SIGNAL(moveEffect(int,int,CollapsibleEffect*)), this , SLOT(slotMoveEffect(int,int,CollapsibleEffect*)));
+       connect(currentEffect, SIGNAL(moveEffect(int,int,int)), this , SLOT(slotMoveEffect(int,int,int)));
        connect(currentEffect, SIGNAL(addEffect(QDomElement)), this , SLOT(slotAddEffect(QDomElement)));
        
         //ui.title->setPixmap(icon.pixmap(QSize(12, 12)));
@@ -540,11 +543,11 @@ void EffectStackView2::slotResetEffect(int ix)
             info.cropStart = GenTime(0);
             info.startPos = GenTime(-1);
             info.track = 0;
-           m_effects.at(ix)->updateWidget(info, ix, dom, &m_effectMetaInfo);
+           m_effects.at(ix)->updateWidget(info, dom, &m_effectMetaInfo);
             emit updateEffect(NULL, m_trackindex, old, dom, ix);
         } else {
             m_clipref->initEffect(dom);
-           m_effects.at(ix)->updateWidget(m_clipref->info(), ix, dom, &m_effectMetaInfo);
+           m_effects.at(ix)->updateWidget(m_clipref->info(), dom, &m_effectMetaInfo);
             //m_ui.region_url->setUrl(KUrl(dom.attribute("region")));
             emit updateEffect(m_clipref, -1, old, dom, ix);
         }
@@ -593,15 +596,15 @@ void EffectStackView2::slotCreateGroup(int ix)
        }
     }
     
-    CollapsibleEffect *group = new CollapsibleEffect(QDomElement(), QDomElement(), ItemInfo(), m_groupIndex, &m_effectMetaInfo, false, true, m_ui.container->widget());
+    CollapsibleGroup *group = new CollapsibleGroup(m_groupIndex, ix == 1, ix == m_currentEffectList.count() - 2, m_ui.container->widget());
     m_groupIndex++;
-    connect(group, SIGNAL(moveEffect(int,int,CollapsibleEffect*)), this , SLOT(slotMoveEffect(int,int,CollapsibleEffect*)));
-    connect(group, SIGNAL(unGroup(CollapsibleEffect*)), this , SLOT(slotUnGroup(CollapsibleEffect*)));
+    connect(group, SIGNAL(moveEffect(int,int,int)), this , SLOT(slotMoveEffect(int,int,int)));
+    connect(group, SIGNAL(unGroup(CollapsibleGroup*)), this , SLOT(slotUnGroup(CollapsibleGroup*)));
     l->insertWidget(groupPos, group);
     group->addGroupEffect(effectToMove);
 }
 
-void EffectStackView2::slotMoveEffect(int currentIndex, int newIndex, CollapsibleEffect* target)
+void EffectStackView2::slotMoveEffect(int currentIndex, int newIndex, int groupIndex)
 {
     CollapsibleEffect *effectToMove = getEffectByIndex(currentIndex);
     if (effectToMove == NULL) return;
@@ -611,7 +614,7 @@ void EffectStackView2::slotMoveEffect(int currentIndex, int newIndex, Collapsibl
     
     EffectInfo effectinfo;
     effectinfo.fromString(oldeffect.attribute("kdenlive_info"));
-    effectinfo.groupIndex = target->groupIndex();
+    effectinfo.groupIndex = groupIndex;
     neweffect.setAttribute("kdenlive_info", effectinfo.toString());
 
     ItemInfo info;
@@ -621,9 +624,9 @@ void EffectStackView2::slotMoveEffect(int currentIndex, int newIndex, Collapsibl
         info.cropStart = GenTime(0);
         info.startPos = GenTime(-1);
         info.track = 0;
-       emit updateEffect(NULL, m_trackindex, oldeffect, neweffect, effectToMove->index());
+       emit updateEffect(NULL, m_trackindex, oldeffect, neweffect, effectToMove->effectIndex());
     } else {
-       emit updateEffect(m_clipref, -1, oldeffect, neweffect, effectToMove->index());
+       emit updateEffect(m_clipref, -1, oldeffect, neweffect, effectToMove->effectIndex());
     }
     
     //if (currentIndex == newIndex) return;
@@ -636,7 +639,7 @@ void EffectStackView2::slotMoveEffect(int currentIndex, int newIndex, Collapsibl
     }
 }
 
-void EffectStackView2::slotUnGroup(CollapsibleEffect* group)
+void EffectStackView2::slotUnGroup(CollapsibleGroup* group)
 {
     QVBoxLayout *l = static_cast<QVBoxLayout *>(m_ui.container->widget()->layout());
     int ix = l->indexOf(group);
index a3ab02f02d8db433e1590c4d597f62b6cf46567b..431af94b69e978ec4b84fce8fb642367df689fef 100644 (file)
@@ -27,6 +27,7 @@
 #include "ui_effectstack2_ui.h"
 #include "effectstackedit.h"
 #include "collapsibleeffect.h"
+#include "collapsiblegroup.h"
 
 class EffectsList;
 class ClipItem;
@@ -157,10 +158,10 @@ private slots:
       ** @param group the effect on which the effect was dropped
       ** @param lastEffectIndex the last effect index in the group, effect will be inserted after that index
       */
-    void slotMoveEffect(int currentIndex, int newIndex, CollapsibleEffect* target);
+    void slotMoveEffect(int currentIndex, int newIndex, int groupIndex);
     
     /** @brief Remove effects from a group */
-    void slotUnGroup(CollapsibleEffect* group);
+    void slotUnGroup(CollapsibleGroup* group);
     
     /** @brief Add en effect to selected clip */
     void slotAddEffect(QDomElement effect);
index 8f0ec5ec9d10ce400bdedf840b99a8694f1fbdb3..b56a1a869deaecd76771d6b17472dc601bca5b0e 100644 (file)
@@ -185,7 +185,7 @@ void EffectStackEdit::updateParameter(const QString &name, const QString &value)
 void EffectStackEdit::transferParamDesc(const QDomElement &d, ItemInfo info, bool /*isEffect*/)
 {
     if (m_paramWidget) delete m_paramWidget;
-    m_paramWidget = new ParameterContainer(d, info, &m_metaInfo, 0, m_baseWidget);
+    m_paramWidget = new ParameterContainer(d, info, &m_metaInfo, m_baseWidget);
     connect (m_paramWidget, SIGNAL(parameterChanged(const QDomElement, const QDomElement, int)), this, SIGNAL(parameterChanged(const QDomElement, const QDomElement, int)));
     
     connect(m_paramWidget, SIGNAL(startFilterJob(QString,QString,QString,QString,QString,QString)), this, SIGNAL(startFilterJob(QString,QString,QString,QString,QString,QString)));
diff --git a/src/widgets/collapsiblegroup_ui.ui b/src/widgets/collapsiblegroup_ui.ui
new file mode 100644 (file)
index 0000000..c3b74cd
--- /dev/null
@@ -0,0 +1,222 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<ui version="4.0">
+ <class>CollapsibleGroup_UI</class>
+ <widget class="QWidget" name="CollapsibleGroup_UI">
+  <property name="geometry">
+   <rect>
+    <x>0</x>
+    <y>0</y>
+    <width>245</width>
+    <height>48</height>
+   </rect>
+  </property>
+  <property name="windowTitle">
+   <string>Form</string>
+  </property>
+  <layout class="QGridLayout" name="gridLayout">
+   <property name="margin">
+    <number>0</number>
+   </property>
+   <item row="0" column="0">
+    <widget class="QFrame" name="decoframegroup">
+     <property name="autoFillBackground">
+      <bool>true</bool>
+     </property>
+     <property name="frameShape">
+      <enum>QFrame::StyledPanel</enum>
+     </property>
+     <property name="frameShadow">
+      <enum>QFrame::Plain</enum>
+     </property>
+     <layout class="QGridLayout" name="gridLayout_2">
+      <property name="verticalSpacing">
+       <number>0</number>
+      </property>
+      <property name="margin">
+       <number>0</number>
+      </property>
+      <item row="0" column="0">
+       <widget class="QFrame" name="frame">
+        <property name="sizePolicy">
+         <sizepolicy hsizetype="Preferred" vsizetype="Maximum">
+          <horstretch>0</horstretch>
+          <verstretch>0</verstretch>
+         </sizepolicy>
+        </property>
+        <property name="frameShape">
+         <enum>QFrame::NoFrame</enum>
+        </property>
+        <property name="frameShadow">
+         <enum>QFrame::Plain</enum>
+        </property>
+        <layout class="QHBoxLayout" name="horizontalLayout">
+         <property name="spacing">
+          <number>0</number>
+         </property>
+         <property name="leftMargin">
+          <number>2</number>
+         </property>
+         <property name="topMargin">
+          <number>0</number>
+         </property>
+         <property name="rightMargin">
+          <number>2</number>
+         </property>
+         <property name="bottomMargin">
+          <number>0</number>
+         </property>
+         <item>
+          <widget class="QToolButton" name="collapseButton">
+           <property name="text">
+            <string>...</string>
+           </property>
+           <property name="autoRaise">
+            <bool>true</bool>
+           </property>
+           <property name="arrowType">
+            <enum>Qt::DownArrow</enum>
+           </property>
+          </widget>
+         </item>
+         <item>
+          <widget class="KSeparator" name="kseparator">
+           <property name="orientation">
+            <enum>Qt::Vertical</enum>
+           </property>
+          </widget>
+         </item>
+         <item>
+          <widget class="QCheckBox" name="enabledBox">
+           <property name="text">
+            <string/>
+           </property>
+           <property name="shortcut">
+            <string>Return</string>
+           </property>
+          </widget>
+         </item>
+         <item>
+          <widget class="QLabel" name="effecticon">
+           <property name="text">
+            <string/>
+           </property>
+          </widget>
+         </item>
+         <item>
+          <widget class="QLineEdit" name="title">
+           <property name="frame">
+            <bool>false</bool>
+           </property>
+           <property name="readOnly">
+            <bool>true</bool>
+           </property>
+          </widget>
+         </item>
+         <item>
+          <spacer name="horizontalSpacer">
+           <property name="orientation">
+            <enum>Qt::Horizontal</enum>
+           </property>
+           <property name="sizeHint" stdset="0">
+            <size>
+             <width>80</width>
+             <height>20</height>
+            </size>
+           </property>
+          </spacer>
+         </item>
+         <item>
+          <widget class="QToolButton" name="menuButton">
+           <property name="maximumSize">
+            <size>
+             <width>22</width>
+             <height>22</height>
+            </size>
+           </property>
+           <property name="text">
+            <string>...</string>
+           </property>
+           <property name="popupMode">
+            <enum>QToolButton::InstantPopup</enum>
+           </property>
+           <property name="autoRaise">
+            <bool>true</bool>
+           </property>
+          </widget>
+         </item>
+         <item>
+          <widget class="QToolButton" name="buttonUp">
+           <property name="maximumSize">
+            <size>
+             <width>22</width>
+             <height>22</height>
+            </size>
+           </property>
+           <property name="text">
+            <string>...</string>
+           </property>
+           <property name="autoRaise">
+            <bool>true</bool>
+           </property>
+          </widget>
+         </item>
+         <item>
+          <widget class="QToolButton" name="buttonDown">
+           <property name="maximumSize">
+            <size>
+             <width>22</width>
+             <height>22</height>
+            </size>
+           </property>
+           <property name="text">
+            <string>...</string>
+           </property>
+           <property name="autoRaise">
+            <bool>true</bool>
+           </property>
+          </widget>
+         </item>
+         <item>
+          <widget class="QToolButton" name="buttonDel">
+           <property name="maximumSize">
+            <size>
+             <width>22</width>
+             <height>22</height>
+            </size>
+           </property>
+           <property name="text">
+            <string>...</string>
+           </property>
+           <property name="autoRaise">
+            <bool>true</bool>
+           </property>
+          </widget>
+         </item>
+        </layout>
+       </widget>
+      </item>
+      <item row="1" column="0">
+       <widget class="QFrame" name="widgetFrame">
+        <property name="frameShape">
+         <enum>QFrame::NoFrame</enum>
+        </property>
+        <property name="frameShadow">
+         <enum>QFrame::Plain</enum>
+        </property>
+       </widget>
+      </item>
+     </layout>
+    </widget>
+   </item>
+  </layout>
+ </widget>
+ <customwidgets>
+  <customwidget>
+   <class>KSeparator</class>
+   <extends>QFrame</extends>
+   <header>kseparator.h</header>
+  </customwidget>
+ </customwidgets>
+ <resources/>
+ <connections/>
+</ui>