diff options
| author | Carl Hetherington <cth@carlh.net> | 2018-09-10 22:02:09 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2018-09-11 11:58:15 +0100 |
| commit | 23583dfb56181c76126e652042e9d1940367aa27 (patch) | |
| tree | e4e0711ea1b132aacee524e54014497ece5e9916 /src/wx/text_view.h | |
| parent | 2a0ad7979b208f84916b13f7a37998aa3701e371 (diff) | |
Partial split of film viewer.
Diffstat (limited to 'src/wx/text_view.h')
| -rw-r--r-- | src/wx/text_view.h | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/src/wx/text_view.h b/src/wx/text_view.h index 8cec8d284..12cbb6d08 100644 --- a/src/wx/text_view.h +++ b/src/wx/text_view.h @@ -24,13 +24,18 @@ #include <wx/listctrl.h> class Decoder; -class FilmViewer; +class ControlFilmViewer; class TextView : public wxDialog { public: TextView ( - wxWindow *, boost::shared_ptr<Film>, boost::shared_ptr<Content> content, boost::shared_ptr<TextContent> caption, boost::shared_ptr<Decoder>, FilmViewer* viewer + wxWindow *, + boost::shared_ptr<Film>, + boost::shared_ptr<Content> content, + boost::shared_ptr<TextContent> caption, + boost::shared_ptr<Decoder>, + ControlFilmViewer* viewer ); private: @@ -44,5 +49,5 @@ private: boost::optional<int> _last_count; std::vector<ContentTime> _start_times; boost::weak_ptr<Content> _content; - FilmViewer* _film_viewer; + ControlFilmViewer* _film_viewer; }; |
