Files
oak-editor/app/project/item/sequence/sequence.h
T
itsmattkc bb57884cac added save functions to various classes
Each class is responsible for its own saving and loading from the XML data
in order to reduce the complexity of the save code.
2020-01-12 18:36:31 +11:00

77 lines
1.8 KiB
C++

/***
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 <http://www.gnu.org/licenses/>.
***/
#ifndef SEQUENCE_H
#define SEQUENCE_H
#include "common/rational.h"
#include "node/graph.h"
#include "node/output/viewer/viewer.h"
#include "render/videoparams.h"
#include "project/item/item.h"
class Sequence;
using SequencePtr = std::shared_ptr<Sequence>;
/**
* @brief The main timeline object, an graph of edited clips that forms a complete edit
*/
class Sequence : public Item, public NodeGraph
{
public:
Sequence();
/**
* @brief Save function
*/
virtual void Save(QXmlStreamWriter *writer) const override;
static void Open(Sequence *sequence);
void add_default_nodes();
/**
* @brief Item::Type() override
*/
virtual Type type() const override;
virtual QIcon icon() override;
virtual QString duration() override;
virtual QString rate() override;
const VideoParams& video_params();
void set_video_params(const VideoParams& vparam);
const AudioParams& audio_params();
void set_audio_params(const AudioParams& params);
void set_default_parameters();
private:
ViewerOutput* viewer_output_;
VideoParams video_params_;
AudioParams audio_params_;
};
#endif // SEQUENCE_H