X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Fwx%2Ftimeline_content_view.h;h=7794120cdc96762880e944bb14baf1b58b12503e;hb=HEAD;hp=e9b29485473b7eb64349c4548e4f0b5fa423e1cc;hpb=e0255a64d22440d718e5512f34a4f21f0d37a21b;p=dcpomatic.git diff --git a/src/wx/timeline_content_view.h b/src/wx/timeline_content_view.h index e9b294854..7794120cd 100644 --- a/src/wx/timeline_content_view.h +++ b/src/wx/timeline_content_view.h @@ -18,20 +18,22 @@ */ + #ifndef DCPOMATIC_TIMELINE_CONTENT_VIEW_H #define DCPOMATIC_TIMELINE_CONTENT_VIEW_H -#include "lib/change_signaller.h" -#include "lib/types.h" -#include "lib/warnings.h" + #include "timeline_view.h" -DCPOMATIC_DISABLE_WARNINGS +#include "lib/change_signaller.h" +#include +LIBDCP_DISABLE_WARNINGS #include -DCPOMATIC_ENABLE_WARNINGS +LIBDCP_ENABLE_WARNINGS #include class Content; + /** @class TimelineContentView * @brief Parent class for views of pieces of content. */ @@ -40,7 +42,7 @@ class TimelineContentView : public TimelineView public: TimelineContentView (Timeline& tl, std::shared_ptr c); - dcpomatic::Rect bbox () const; + dcpomatic::Rect bbox () const override; void set_selected (bool s); bool selected () const; @@ -60,8 +62,7 @@ protected: private: - void do_paint (wxGraphicsContext* gc, std::list > overlaps); - int y_pos (int t) const; + void do_paint (wxGraphicsContext* gc, std::list> overlaps) override; void content_change (ChangeType type, int p); boost::optional _track; @@ -70,6 +71,8 @@ private: boost::signals2::scoped_connection _content_connection; }; -typedef std::vector > TimelineContentViewList; + +typedef std::vector> TimelineContentViewList; + #endif