/*** Olive - Non-Linear Video Editor Copyright (C) 2019 Olive Team This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . ***/ #ifndef TRANSITION_H #define TRANSITION_H #include "effect.h" enum TransitionType { kTransitionNone, kTransitionOpening, kTransitionClosing }; enum TransitionInternal { TRANSITION_INTERNAL_CROSSDISSOLVE, TRANSITION_INTERNAL_LINEARFADE, TRANSITION_INTERNAL_EXPONENTIALFADE, TRANSITION_INTERNAL_LOGARITHMICFADE, TRANSITION_INTERNAL_CUBE, TRANSITION_INTERNAL_COUNT }; class Transition; using TransitionPtr = std::shared_ptr; class Transition : public Effect { Q_OBJECT public: Transition(Clip* c, Clip* s, const EffectMeta* em); virtual TransitionPtr copy(Clip* c, Clip* s); Clip* secondary_clip; virtual void save(QXmlStreamWriter& stream) override; void set_length(long l); long get_true_length(); long get_length(); Clip* get_opened_clip(); Clip* get_closed_clip(); static TransitionPtr Create(Clip* c, Clip* s, const EffectMeta* em, long length = 0); static TransitionPtr CreateFromMeta(Clip *c, Clip *s, const EffectMeta* em); private slots: void set_length_from_slider(); private: long length; // used only for transitions EffectField* length_field; }; #endif // TRANSITION_H