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