]> git.sesse.net Git - kdenlive/blob - src/effectstackview.h
Introduce very basic geometry editing on the monitor.
[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 /**
19  * @class EffectStackView
20  * @brief View part of the EffectStack
21  * @author Marco Gittler
22  */
23
24 #ifndef EFFECTSTACKVIEW_H
25 #define EFFECTSTACKVIEW_H
26
27 #include "ui_effectstack_ui.h"
28 #include "effectstackedit.h"
29
30 class EffectsList;
31 class ClipItem;
32 class MltVideoProfile;
33 class Monitor;
34
35 class EffectStackView : public QWidget
36 {
37     Q_OBJECT
38
39 public:
40     EffectStackView(Monitor *monitor, QWidget *parent = 0);
41     virtual ~EffectStackView();
42
43     /** @brief Raises @param dock if a clip is loaded. */
44     void raiseWindow(QWidget* dock);
45
46     /** @brief Clears the list of effects and updates the buttons accordingly. */
47     void clear();
48
49     /** @brief Sets the add effect button's menu to @param menu. */
50     void setMenu(QMenu *menu);
51
52     /** @brief Passes updates on @param profile and @param t on to the effect editor. */
53     void updateProjectFormat(MltVideoProfile profile, Timecode t);
54
55     /** @brief Tells the effect editor to update its timecode format. */
56     void updateTimecodeFormat();
57
58 private:
59     Ui::EffectStack_UI m_ui;
60     ClipItem* m_clipref;
61     QMap<QString, EffectsList*> m_effectLists;
62     EffectStackEdit* m_effectedit;
63
64     /** @brief Sets the list of effects according to the clip's effect list.
65     * @param ix Number of the effect to preselect */
66     void setupListView(int ix);
67
68 public slots:
69     /** @brief Sets the clip whose effect list should be managed.
70     * @param c Clip whose effect list should be managed
71     * @param ix Effect to preselect */
72     void slotClipItemSelected(ClipItem* c, int ix);
73
74     /** @brief Emits updateClipEffect.
75     * @param old Old effect information
76     * @param e New effect information
77     *
78     * Connected to a parameter change in the editor */
79     void slotUpdateEffectParams(const QDomElement old, const QDomElement e);
80
81     /** @brief Removes the selected effect. */
82     void slotItemDel();
83
84 private slots:
85     /** @brief Updates buttons and the editor according to selected effect.
86     * @param update (optional) Set the clip's selected effect (display keyframes in timeline) */
87     void slotItemSelectionChanged(bool update = true);
88
89     /** @brief Moves the selected effect upwards. */
90     void slotItemUp();
91
92     /** @brief Moves the selected effect downwards. */
93     void slotItemDown();
94
95     /** @brief Resets the selected effect to its default values. */
96     void slotResetEffect();
97
98     /** @brief Updates effect @param item if it was enabled or disabled. */
99     void slotItemChanged(QListWidgetItem *item);
100
101     /** @brief Saves the selected effect's values to a custom effect.
102     *
103     * TODO: save all effects into one custom effect */
104     void slotSaveEffect();
105
106     /** @brief Emits seekTimeline with position = clipstart + @param pos. */
107     void slotSeekTimeline(int pos);
108
109     /** @brief Makes the check all checkbox represent the check state of the effects. */
110     void slotUpdateCheckAllButton();
111
112     /** @brief Sets the check state of all effects according to @param state. */
113     void slotCheckAll(int state);
114
115     /** @brief Define the region filter for current effect. */
116     void slotRegionChanged();
117
118 signals:
119     void removeEffect(ClipItem*, QDomElement);
120     /**  Parameters for an effect changed, update the filter in playlist */
121     void updateClipEffect(ClipItem*, QDomElement, QDomElement, int);
122     /** An effect in stack was moved, we need to regenerate
123         all effects for this clip in the playlist */
124     void refreshEffectStack(ClipItem *);
125     /** Enable or disable an effect */
126     void changeEffectState(ClipItem*, int, bool);
127     /** An effect in stack was moved */
128     void changeEffectPosition(ClipItem*, int, int);
129     /** an effect was saved, reload list */
130     void reloadEffects();
131     /** An effect with position parameter was changed, seek */
132     void seekTimeline(int);
133     /** The region effect for current effect was changed */
134     void updateClipRegion(ClipItem*, int, QString);
135     void displayMessage(const QString&, int);
136 };
137
138 #endif