1 /***************************************************************************
2 effecstackview.h - description
5 copyright : (C) 2008 by Marco Gittler
6 email : g.marco@freenet.de
7 ***************************************************************************/
9 /***************************************************************************
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. *
16 ***************************************************************************/
18 #ifndef EFFECTSTACKVIEW_H
19 #define EFFECTSTACKVIEW_H
21 #include "ui_effectstack_ui.h"
22 #include "effectstackedit.h"
26 class EffectStackView : public QWidget {
30 EffectStackView(QWidget *parent = 0);
31 void raiseWindow(QWidget*);
33 Ui::EffectStack_UI ui;
35 QMap<QString, EffectsList*> effectLists;
36 EffectStackEdit* effectedit;
37 void setupListView(int ix);
38 void updateButtonStatus();
41 void slotClipItemSelected(ClipItem*);
42 void slotUpdateEffectParams(const QDomElement&, const QDomElement&);
45 void slotItemSelectionChanged();
50 void slotResetEffect();
51 void slotItemChanged(QListWidgetItem *item);
54 void transferParamDesc(const QDomElement&, int , int);
55 void removeEffect(ClipItem*, QDomElement);
56 /** Parameters for an effect changed, update the filter in playlist */
57 void updateClipEffect(ClipItem*, QDomElement, QDomElement, int);
58 /** An effect in stack was moved, we need to regenerate
59 all effects for this clip in the playlist */
60 void refreshEffectStack(ClipItem *);
61 /** Enable or disable an effect */
62 void changeEffectState(ClipItem*, int, bool);
63 /** An effect in stack was moved */
64 void changeEffectPosition(ClipItem*, int, int);