]> git.sesse.net Git - kdenlive/blob - src/effectstackedit.h
disable effect stack params and monitor scene when effect is disabled
[kdenlive] / src / effectstackedit.h
1 /***************************************************************************
2                           effecstackedit.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 EFFECTSTACKEDIT_H
19 #define EFFECTSTACKEDIT_H
20
21 #include "definitions.h"
22 #include "timecode.h"
23 #include "keyframeedit.h"
24
25 #include <QWidget>
26 #include <QDomElement>
27 #include <QVBoxLayout>
28 #include <QList>
29 #include <QMap>
30 #include <QScrollArea>
31
32 enum WIPE_DIRECTON { UP = 0, DOWN = 1, LEFT = 2, RIGHT = 3, CENTER = 4 };
33
34 struct wipeInfo {
35     WIPE_DIRECTON start;
36     WIPE_DIRECTON end;
37     int startTransparency;
38     int endTransparency;
39 };
40
41 class QFrame;
42 class Monitor;
43
44 class EffectStackEdit : public QScrollArea
45 {
46     Q_OBJECT
47 public:
48     EffectStackEdit(Monitor *monitor, QWidget *parent = 0);
49     ~EffectStackEdit();
50     void updateProjectFormat(MltVideoProfile profile, Timecode t);
51     static QMap<QString, QImage> iconCache;
52     /** @brief Sets attribute @param name to @param value.
53     *
54     * Used to disable the effect, by setting disabled="1" */
55     void updateParameter(const QString &name, const QString &value);
56     void setFrameSize(QPoint p);
57     /** @brief Tells the parameters to update their timecode format according to KdenliveSettings. */
58     void updateTimecodeFormat();
59
60 private:
61     /** @brief Deletes all parameter widgets. */
62     void clearAllItems();
63     wipeInfo getWipeInfo(QString value);
64     QString getWipeString(wipeInfo info);
65     /** @brief Updates parameter @param name according to new value of dependency.
66     * @param name Name of the parameter which will be updated
67     * @param type Type of the parameter which will be updated
68     * @param value Value of the dependency parameter */
69     void meetDependency(const QString& name, QString type, QString value);
70
71     QVBoxLayout *m_vbox;
72     QList<QWidget*> m_uiItems;
73     QWidget *m_baseWidget;
74     QDomElement m_params;
75     QMap<QString, QWidget*> m_valueItems;
76     MltVideoProfile m_profile;
77     Timecode m_timecode;
78     int m_in;
79     int m_out;
80     QPoint m_frameSize;
81     KeyframeEdit *m_keyframeEditor;
82     Monitor *m_monitor;
83
84 public slots:
85     /** @brief Called when an effect is selected, builds the UIĀ for this effect. */
86     void transferParamDesc(const QDomElement d, int pos, int in, int out, bool isEffect = true);
87     /** @brief Called whenever(?) some parameter is changed in the gui.
88      *
89      * Transfers all Dynamic gui parameter settings into m_params(??) */
90     void collectAllParameters();
91     /** @brief Pass position changes of the timeline cursor to the effects to keep their local timelines in sync. */
92     void slotSyncEffectsPos(int pos);
93
94 signals:
95     void parameterChanged(const QDomElement, const QDomElement);
96     void seekTimeline(int);
97     void displayMessage(const QString&, int);
98     void checkMonitorPosition(int);
99     void syncEffectsPos(int pos);
100 };
101
102 #endif