Basic stress-test function for player.
[dcpomatic.git] / src / wx / controls.h
1 /*
2     Copyright (C) 2018 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_CONTROLS_H
22 #define DCPOMATIC_CONTROLS_H
23
24 #include "lib/dcpomatic_time.h"
25 #include "lib/types.h"
26 #include "lib/film.h"
27 #include "lib/spl.h"
28 #include <wx/wx.h>
29 #include <boost/shared_ptr.hpp>
30 #include <boost/signals2.hpp>
31
32 class FilmViewer;
33 class Film;
34 class ClosedCaptionsDialog;
35 class Content;
36 class PlayerVideo;
37 class wxToggleButton;
38 class wxListCtrl;
39 class ContentView;
40
41 namespace dcp {
42         class CPL;
43 }
44
45 class Controls : public wxPanel
46 {
47 public:
48         Controls (
49                 wxWindow* parent,
50                 boost::shared_ptr<FilmViewer>,
51                 bool editor_controls = true
52                 );
53
54         virtual void log (wxString) {}
55         virtual void set_film (boost::shared_ptr<Film> film);
56 #ifdef DCPOMATIC_PLAYER_STRESS_TEST
57         virtual void play () {};
58         virtual void stop () {};
59         void seek (int slider);
60 #endif
61         boost::shared_ptr<Film> film () const;
62         void back_frame ();
63         void forward_frame ();
64
65 protected:
66         virtual void started ();
67         virtual void stopped ();
68         virtual void setup_sensitivity ();
69         virtual void config_changed (int property);
70
71         wxSizer* _v_sizer;
72         wxBoxSizer* _button_sizer;
73         boost::shared_ptr<Film> _film;
74         wxSlider* _slider;
75         boost::shared_ptr<FilmViewer> _viewer;
76         boost::optional<std::string> _active_job;
77
78 private:
79
80         void update_position_label ();
81         void update_position_slider ();
82         void rewind_clicked (wxMouseEvent &);
83         void back_clicked (wxKeyboardState& s);
84         void forward_clicked (wxKeyboardState &);
85         void slider_moved (bool page);
86         void slider_released ();
87         void frame_number_clicked ();
88         void jump_to_selected_clicked ();
89         void timecode_clicked ();
90         void active_jobs_changed (boost::optional<std::string>);
91         dcpomatic::DCPTime nudge_amount (wxKeyboardState& ev);
92         void image_changed (boost::weak_ptr<PlayerVideo>);
93         void outline_content_changed ();
94         void eye_changed ();
95         void update_position ();
96         void film_change (ChangeType, Film::Property);
97
98         typedef std::pair<boost::shared_ptr<dcp::CPL>, boost::filesystem::path> CPL;
99
100         bool _slider_being_moved;
101
102         wxCheckBox* _outline_content;
103         wxChoice* _eye;
104         wxCheckBox* _jump_to_selected;
105         wxButton* _rewind_button;
106         wxButton* _back_button;
107         wxButton* _forward_button;
108         wxStaticText* _frame_number;
109         wxStaticText* _timecode;
110
111         ClosedCaptionsDialog* _closed_captions_dialog;
112
113         wxTimer _timer;
114
115         boost::signals2::scoped_connection _film_change_connection;
116         boost::signals2::scoped_connection _config_changed_connection;
117 };
118
119 #endif