]> git.sesse.net Git - kdenlive/blobdiff - src/effectstackview.h
effectstack can insert new points (button)
[kdenlive] / src / effectstackview.h
index feb89de41f86d71ba86cef02b4b7579a3a3875e6..5799e2492250bd51878dc0f273e333362b512c88 100644 (file)
@@ -1,3 +1,20 @@
+/***************************************************************************
+                          effecstackview.h  -  description
+                             -------------------
+    begin                : Feb 15 2008
+    copyright            : (C) 2008 by Marco Gittler
+    email                : g.marco@freenet.de
+ ***************************************************************************/
+
+/***************************************************************************
+ *                                                                         *
+ *   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.                                   *
+ *                                                                         *
+ ***************************************************************************/
+
 #ifndef EFFECTSTACKVIEW_H
 #define EFFECTSTACKVIEW_H
 
@@ -13,12 +30,24 @@ class EffectStackView : public QWidget
                EffectStackView( QWidget *parent=0);
        
 private:
+       int activeRow;
+       QStringList effects;
        Ui::EffectStack_UI ui;
        ClipItem* clipref;
+       void setupListView(const QStringList& );
+       void updateButtonStatus();
 public slots:
        void slotClipItemSelected(ClipItem*);
-
-       
+       void slotItemSelectionChanged();
+       void slotItemUp();
+       void slotItemDown();
+       void slotItemDel();
+       void slotSetMoveX();
+       void slotSetMoveY();
+       void slotSetNew();
+       void slotSetHelp();
+       void slotShowInTimeline();
+       void slotParameterChanged(const QString&);
 };
 
 #endif