]> git.sesse.net Git - kdenlive/blob - src/effectstackview.h
parameter adjustable
[kdenlive] / src / effectstackview.h
1 /***************************************************************************
2                           effecstackview.h  -  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 #ifndef EFFECTSTACKVIEW_H
19 #define EFFECTSTACKVIEW_H
20
21 #include <KIcon>
22
23 #include "ui_effectstack_ui.h"
24 #include "clipitem.h"
25 class EffectStackView : public QWidget
26 {
27         Q_OBJECT
28                 
29         public:
30                 EffectStackView( QWidget *parent=0);
31         
32 private:
33         int activeRow;
34         QStringList effects;
35         Ui::EffectStack_UI ui;
36         ClipItem* clipref;
37         void setupListView(const QStringList& );
38 public slots:
39         void slotClipItemSelected(ClipItem*);
40         void slotItemSelectionChanged();
41         void slotItemUp();
42         void slotItemDown();
43         void slotItemDel();
44         
45 };
46
47 #endif