f4a8ea22bcf1b4c13087c2cfcc92ba13c9bb6ad8
[dcpomatic.git] / src / wx / video_view.h
1 /*
2     Copyright (C) 2019 Carl Hetherington <cth@carlh.net>
3
4     This file is part of DCP-o-matic.
5
6     DCP-o-matic is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation; either version 2 of the License, or
9     (at your option) any later version.
10
11     DCP-o-matic is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License
17     along with DCP-o-matic.  If not, see <http://www.gnu.org/licenses/>.
18
19 */
20
21 #ifndef DCPOMATIC_VIDEO_VIEW_H
22 #define DCPOMATIC_VIDEO_VIEW_H
23
24 #include "lib/dcpomatic_time.h"
25 #include <boost/shared_ptr.hpp>
26 #include <boost/signals2.hpp>
27
28 class Image;
29 class wxWindow;
30 class FilmViewer;
31 class PlayerVideo;
32
33 class VideoView
34 {
35 public:
36         VideoView (FilmViewer* viewer)
37                 : _viewer (viewer)
38 #ifdef DCPOMATIC_VARIANT_SWAROOP
39                 , _in_watermark (false)
40 #endif
41         {}
42
43         virtual ~VideoView () {}
44
45         virtual void set_image (boost::shared_ptr<const Image> image) = 0;
46         virtual wxWindow* get () const = 0;
47         virtual void update () = 0;
48
49         /* XXX_b: make pure */
50         virtual void start () {}
51
52         void clear ();
53
54         boost::signals2::signal<void()> Sized;
55
56         /* XXX_b: to remove */
57         virtual bool get (bool) {
58                 return true;
59         }
60         /* XXX_b: to remove */
61         virtual void display_player_video () {}
62
63 protected:
64         /* XXX_b: to remove */
65         friend class FilmViewer;
66
67         FilmViewer* _viewer;
68         std::pair<boost::shared_ptr<PlayerVideo>, dcpomatic::DCPTime> _player_video;
69
70 #ifdef DCPOMATIC_VARIANT_SWAROOP
71         bool _in_watermark;
72         int _watermark_x;
73         int _watermark_y;
74 #endif
75 };
76
77 #endif