/*** 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 TIMERULER_H #define TIMERULER_H #include #include #include "common/rational.h" #include "common/timerange.h" #include "widget/timelinewidget/view/timelineplayhead.h" class TimeRuler : public QWidget { Q_OBJECT public: TimeRuler(bool text_visible = true, bool cache_status_visible = false, QWidget* parent = nullptr); const double& scale(); void SetScale(const double& d); void SetTimebase(const rational& r); void SetCenteredText(bool c); const int64_t& GetTime(); public slots: void SetTime(const int64_t &r); void SetScroll(int s); void CacheInvalidatedRange(const rational& in, const rational& out); void CacheTimeReady(const rational& time); void SetCacheStatusLength(const rational& length); protected: virtual void paintEvent(QPaintEvent* e) override; virtual void mousePressEvent(QMouseEvent *event) override; virtual void mouseMoveEvent(QMouseEvent *event) override; signals: /** * @brief Signal emitted whenever the time changes on this ruler, either by user or programatically */ void TimeChanged(int64_t); private: void UpdateHeight(); void DrawPlayhead(QPainter* p, int x, int y); double ScreenToUnitFloat(int screen); int64_t ScreenToUnit(int screen); int UnitToScreen(int64_t unit); int TimeToScreen(const rational& time); void SeekToScreenPoint(int screen); int text_height_; int cache_status_height_; int minimum_gap_between_lines_; int playhead_width_; int scroll_; bool text_visible_; bool centered_text_; double scale_; rational timebase_; double timebase_dbl_; double timebase_flipped_dbl_; int64_t time_; TimelinePlayhead style_; bool show_cache_status_; rational cache_length_; TimeRangeList dirty_cache_ranges_; }; #endif // TIMERULER_H