]> git.sesse.net Git - kdenlive/blob - src/effectstack/effectstackview2.h
Effectstack UI update
[kdenlive] / src / effectstack / effectstackview2.h
1 /***************************************************************************
2                           effecstackview2.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 /**
19  * @class EffectStackView2
20  * @brief View part of the EffectStack
21  * @author Marco Gittler
22  */
23
24 #ifndef EFFECTSTACKVIEW2_H
25 #define EFFECTSTACKVIEW2_H
26
27 #include "ui_effectstack2_ui.h"
28 #include "effectstackedit.h"
29 #include "collapsibleeffect.h"
30
31 class EffectsList;
32 class ClipItem;
33 class MltVideoProfile;
34 class Monitor;
35
36
37 class EffectStackView2 : public QWidget
38 {
39     Q_OBJECT
40
41 public:
42     EffectStackView2(Monitor *monitor, QWidget *parent = 0);
43     virtual ~EffectStackView2();
44
45     /** @brief Raises @param dock if a clip is loaded. */
46     void raiseWindow(QWidget* dock);
47
48     /** @brief Sets the add effect button's menu to @param menu. */
49     void setMenu(QMenu *menu);
50
51
52     /** @brief return the index of the track displayed in effect stack
53      ** @param ok set to true if we are looking at a track's effects, otherwise false. */
54     int isTrackMode(bool *ok) const;
55
56     /** @brief Clears the list of effects and updates the buttons accordingly. */
57     void clear();
58
59     /** @brief Passes updates on @param profile and @param t on to the effect editor. */
60     void updateProjectFormat(MltVideoProfile profile, Timecode t);
61
62     /** @brief Tells the effect editor to update its timecode format. */
63     void updateTimecodeFormat();
64
65 private:
66     Ui::EffectStack2_UI m_ui;
67     ClipItem* m_clipref;
68     QList <CollapsibleEffect*> m_effects;
69     EffectsList m_currentEffectList;
70     EffectMetaInfo m_effectMetaInfo;
71
72     /** @brief The track index of currently edited track. */
73     int m_trackindex;
74
75     /** If in track mode: Info of the edited track to be able to access its duration. */
76     TrackInfo m_trackInfo;
77
78     /** @brief Sets the list of effects according to the clip's effect list.
79     * @param ix Number of the effect to preselect */
80     void setupListView(int ix);
81     
82     void clearLayout(QLayout *layout);
83
84 public slots:
85     /** @brief Sets the clip whose effect list should be managed.
86     * @param c Clip whose effect list should be managed
87     * @param ix Effect to preselect */
88     void slotClipItemSelected(ClipItem* c, int ix);
89
90     void slotTrackItemSelected(int ix, const TrackInfo info);
91
92     /** @brief Removes the selected effect. */
93     void slotItemDel();
94
95 private slots:
96
97     /** @brief Emits seekTimeline with position = clipstart + @param pos. */
98     void slotSeekTimeline(int pos);
99
100
101     /* @brief Define the region filter for current effect.
102     void slotRegionChanged();*/
103
104     /** @brief Checks whether the monitor scene has to be displayed. */
105     void slotCheckMonitorPosition(int renderPos);
106
107     void slotUpdateEffectParams(const QDomElement old, const QDomElement e, int ix);
108
109     /** @brief Move an effect in the stack.
110      * @param index The effect index in the stack
111      * @param up true if we want to move effect up, false for down */
112     void slotMoveEffect(int index, bool up);
113
114     /** @brief Delete an effect in the stack. */
115     void slotDeleteEffect(const QDomElement effect, int index);
116
117     /** @brief Pass position changes of the timeline cursor to the effects to keep their local timelines in sync. */
118     void slotRenderPos(int pos);
119
120     /** @brief Called whenever an effect is enabled / disabled by user. */
121     void slotUpdateEffectState(bool disable, int index);
122
123     void slotSetCurrentEffect(int ix);
124
125
126 signals:
127     void removeEffect(ClipItem*, int, QDomElement);
128     /**  Parameters for an effect changed, update the filter in playlist */
129     void updateEffect(ClipItem*, int, QDomElement, QDomElement, int);
130     /** An effect in stack was moved, we need to regenerate
131         all effects for this clip in the playlist */
132     void refreshEffectStack(ClipItem *);
133     /** Enable or disable an effect */
134     void changeEffectState(ClipItem*, int, int, bool);
135     /** An effect in stack was moved */
136     void changeEffectPosition(ClipItem*, int, int, int);
137     /** an effect was saved, reload list */
138     void reloadEffects();
139     /** An effect with position parameter was changed, seek */
140     void seekTimeline(int);
141     /** The region effect for current effect was changed */
142     void updateClipRegion(ClipItem*, int, QString);
143     void displayMessage(const QString&, int);
144     void showComments(bool show);
145 };
146
147 #endif