X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2Feffectslist.h;h=3a16b835d5a094d25555094a5641376138f17146;hb=43347839feb2bd83cac3306a4771dc97df37d804;hp=d555b25d469a6ce713b352d5d41b92d3742a55ff;hpb=0beca680b56b9d82db094df1a1e509a1cbbdbc2f;p=kdenlive diff --git a/src/effectslist.h b/src/effectslist.h index d555b25d..3a16b835 100644 --- a/src/effectslist.h +++ b/src/effectslist.h @@ -21,21 +21,22 @@ #include /**An List for DocClipBase objects. Use this instead of QList so as to sort lists correctly. - * Also contains the ability to set a "master clip", which can be used by a number of operations where - * the need for one clip to act as a reference for what happens to all clips is needed. + * Also contains the ability to set a "master clip", which can be used by a number of operations where + * the need for one clip to act as a reference for what happens to all clips is needed. * @author Jason Wood */ #include -class EffectsList:public QList < QDomElement > { - public: +class EffectsList: public QList < QDomElement > { +public: EffectsList(); - ~EffectsList(); - /** Returns an XML version of this Effect.*/ - QDomElement getEffectByName(const QString & name); - QStringList effectNames(); - + ~EffectsList(); + /** Returns an XML version of this Effect.*/ + QDomElement getEffectByName(const QString & name); + QStringList effectNames(); + QString getInfo(QString effectName); + QMap effect(const QString & name); }; #endif