Project items are now represented directly in nodes opening up more versatility and possibilities. This is the first iteration of this and will be buggy. Need to test thoroughly.
124 lines
2.5 KiB
C++
124 lines
2.5 KiB
C++
/***
|
|
|
|
Olive - Non-Linear Video Editor
|
|
Copyright (C) 2020 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 TIMEBASEDPANEL_H
|
|
#define TIMEBASEDPANEL_H
|
|
|
|
#include "widget/panel/panel.h"
|
|
#include "widget/timebased/timebasedwidget.h"
|
|
|
|
namespace olive {
|
|
|
|
class TimeBasedPanel : public PanelWidget
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
TimeBasedPanel(const QString& object_name, QWidget *parent = nullptr);
|
|
|
|
void ConnectViewerNode(Sequence *node);
|
|
|
|
void DisconnectViewerNode();
|
|
|
|
rational GetTime();
|
|
|
|
Sequence *GetConnectedViewer() const;
|
|
|
|
TimeRuler* ruler() const;
|
|
|
|
virtual void ZoomIn() override;
|
|
|
|
virtual void ZoomOut() override;
|
|
|
|
virtual void GoToStart() override;
|
|
|
|
virtual void PrevFrame() override;
|
|
|
|
virtual void NextFrame() override;
|
|
|
|
virtual void GoToEnd() override;
|
|
|
|
virtual void GoToPrevCut() override;
|
|
|
|
virtual void GoToNextCut() override;
|
|
|
|
virtual void PlayPause() override;
|
|
|
|
virtual void PlayInToOut() override;
|
|
|
|
virtual void ShuttleLeft() override;
|
|
|
|
virtual void ShuttleStop() override;
|
|
|
|
virtual void ShuttleRight() override;
|
|
|
|
virtual void SetIn() override;
|
|
|
|
virtual void SetOut() override;
|
|
|
|
virtual void ResetIn() override;
|
|
|
|
virtual void ResetOut() override;
|
|
|
|
virtual void ClearInOut() override;
|
|
|
|
virtual void SetMarker() override;
|
|
|
|
virtual void ToggleShowAll() override;
|
|
|
|
virtual void GoToIn() override;
|
|
|
|
virtual void GoToOut() override;
|
|
|
|
public slots:
|
|
void SetTimebase(const rational& timebase);
|
|
|
|
virtual void SetTimestamp(const int64_t& timestamp);
|
|
|
|
signals:
|
|
void TimeChanged(const int64_t& time);
|
|
|
|
void TimebaseChanged(const rational& timebase);
|
|
|
|
void PlayPauseRequested();
|
|
|
|
void PlayInToOutRequested();
|
|
|
|
void ShuttleLeftRequested();
|
|
|
|
void ShuttleStopRequested();
|
|
|
|
void ShuttleRightRequested();
|
|
|
|
protected:
|
|
TimeBasedWidget* GetTimeBasedWidget() const;
|
|
|
|
void SetTimeBasedWidget(TimeBasedWidget* widget);
|
|
|
|
virtual void Retranslate() override;
|
|
|
|
private:
|
|
TimeBasedWidget* widget_;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
#endif // TIMEBASEDPANEL_H
|