dd6b77788e147c6a11444208c29b17dfaa69171f
[dcpomatic.git] / src / wx / playlist_controls.h
1 /*
2     Copyright (C) 2018-2020 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 #include "controls.h"
22 #include "lib/spl.h"
23
24 class DCPContent;
25
26 class PlaylistControls : public Controls
27 {
28 public:
29         PlaylistControls (wxWindow* parent, boost::shared_ptr<FilmViewer> viewer);
30
31         void log (wxString s);
32         void set_film (boost::shared_ptr<Film> film);
33
34         /** This is so that we can tell our parent player to reset the film
35             when we have created one from a SPL.  We could call a method
36             in the player's DOMFrame but we don't have that in a header.
37         */
38         boost::signals2::signal<void (boost::weak_ptr<Film>)> ResetFilm;
39
40 private:
41         void play_clicked ();
42         void pause_clicked ();
43         void stop_clicked ();
44         void next_clicked ();
45         void previous_clicked ();
46         void add_playlist_to_list (SPL spl);
47         void update_content_directory ();
48         void update_playlist_directory ();
49         void spl_selection_changed ();
50         void select_playlist (int selected, int position);
51         void started ();
52         void stopped ();
53         void setup_sensitivity ();
54         void config_changed (int);
55         void viewer_finished ();
56         void reset_film ();
57         void update_current_content ();
58         bool can_do_previous ();
59         bool can_do_next ();
60         void deselect_playlist ();
61
62         boost::optional<dcp::EncryptedKDM> get_kdm_from_directory (boost::shared_ptr<DCPContent> dcp);
63
64         wxButton* _play_button;
65         wxButton* _pause_button;
66         wxButton* _stop_button;
67         wxButton* _next_button;
68         wxButton* _previous_button;
69
70         ContentView* _content_view;
71         wxButton* _refresh_content_view;
72         wxListCtrl* _spl_view;
73         wxButton* _refresh_spl_view;
74         wxListCtrl* _current_spl_view;
75
76         std::vector<SPL> _playlists;
77         boost::optional<int> _selected_playlist;
78         int _selected_playlist_position;
79
80         wxTimer _timer;
81 };