X-Git-Url: https://main.carlh.net/gitweb/?p=dcpomatic.git;a=blobdiff_plain;f=src%2Flib%2Fhints.h;h=db7ee49b60007bf12f0ab5336df9efb409f36ce5;hp=6ee398c88c12d6edb77013ab1b8174eb54d1bdc2;hb=f515b8daea9d28200be803bb64ff17e9f30343c4;hpb=4843bf7b6820fe9f027699cf30c41804e714fbac diff --git a/src/lib/hints.h b/src/lib/hints.h index 6ee398c88..db7ee49b6 100644 --- a/src/lib/hints.h +++ b/src/lib/hints.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2016 Carl Hetherington + Copyright (C) 2016-2019 Carl Hetherington This file is part of DCP-o-matic. @@ -21,6 +21,7 @@ #include "signaller.h" #include "player_text.h" #include "types.h" +#include "dcp_text_track.h" #include "dcpomatic_time.h" #include #include @@ -29,10 +30,10 @@ class Film; -class Hints : public Signaller +class Hints : public Signaller, public ExceptionStore { public: - Hints (boost::weak_ptr film); + explicit Hints (boost::weak_ptr film); ~Hints (); void start (); @@ -44,15 +45,16 @@ public: private: void thread (); - void stop_thread (); void hint (std::string h); - void text (PlayerText text, TextType type, DCPTimePeriod period); + void text (PlayerText text, TextType type, dcpomatic::DCPTimePeriod period); boost::weak_ptr _film; - boost::thread* _thread; + boost::thread _thread; bool _long_ccap; bool _overlap_ccap; bool _too_many_ccap_lines; - boost::optional _last; + boost::optional _last; + + boost::atomic _stop; };