X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Fwx%2Ffilm_viewer.h;h=94690daea296f5b82f6e590c5db2b2f5b56553f5;hb=2538ac5a15b56880438018c8ab17d8571fe76812;hp=ea203d052d0e441da07b12bf43aea1cebe1147ec;hpb=23583dfb56181c76126e652042e9d1940367aa27;p=dcpomatic.git diff --git a/src/wx/film_viewer.h b/src/wx/film_viewer.h index ea203d052..94690daea 100644 --- a/src/wx/film_viewer.h +++ b/src/wx/film_viewer.h @@ -19,7 +19,7 @@ */ /** @file src/film_viewer.h - * @brief A wx widget to view `thumbnails' of a Film. + * @brief FilmViewer class. */ #include "lib/film.h" @@ -38,80 +38,83 @@ class Butler; class ClosedCaptionsDialog; /** @class FilmViewer - * @brief A wx widget to view a preview of a Film. + * @brief A wx widget to view a Film. */ class FilmViewer { public: - FilmViewer (wxWindow *, bool outline_content = true, bool jump_to_selected = true); + FilmViewer (wxWindow *); ~FilmViewer (); + /** @return the panel showing the film's video */ wxPanel* panel () const { return _panel; } + void show_closed_captions (); + void set_film (boost::shared_ptr); boost::shared_ptr film () const { return _film; } + void seek (DCPTime t, bool accurate); + void seek (boost::shared_ptr content, ContentTime p, bool accurate); + void seek_by (DCPTime by, bool accurate); /** @return our `playhead' position; this may not lie exactly on a frame boundary */ DCPTime position () const { return _video_position; } + DCPTime one_video_frame () const; + + void start (); + bool stop (); + bool playing () const { + return _playing; + } - void set_position (DCPTime p); - void set_position (boost::shared_ptr content, ContentTime p); void set_coalesce_player_changes (bool c); void set_dcp_decode_reduction (boost::optional reduction); boost::optional dcp_decode_reduction () const; + void set_outline_content (bool o); + void set_eyes (Eyes e); void slow_refresh (); - bool quick_refresh (); int dropped () const { return _dropped; } - void start (); - bool stop (); - bool playing () const { - return _playing; - } - - void move (DCPTime by); - DCPTime one_video_frame () const; - void seek (DCPTime t, bool accurate); - DCPTime video_position () const { - return _video_position; - } - int audio_callback (void* out, unsigned int frames); - void show_closed_captions (); - boost::signals2::signal)> ImageChanged; + boost::signals2::signal PositionChanged; + boost::signals2::signal Started; + boost::signals2::signal Stopped; + boost::signals2::signal Seeked; + boost::signals2::signal FilmChanged; + + boost::signals2::signal PlaybackPermitted; private: void paint_panel (); void panel_sized (wxSizeEvent &); void timer (); void calculate_sizes (); - void check_play_state (); void player_change (ChangeType type, int, bool); void get (); void display_player_video (); - void refresh_panel (); void film_change (ChangeType, Film::Property); - DCPTime nudge_amount (wxKeyboardState &); - void timecode_clicked (); - void go_to (DCPTime t); void recreate_butler (); void config_changed (Config::Property); + DCPTime time () const; DCPTime uncorrected_time () const; Frame average_latency () const; + void refresh_panel (); + bool quick_refresh (); + boost::shared_ptr _film; boost::shared_ptr _player; @@ -148,5 +151,8 @@ private: ClosedCaptionsDialog* _closed_captions_dialog; + bool _outline_content; + Eyes _eyes; + boost::signals2::scoped_connection _config_changed_connection; };