Add Version File dialog.
[dcpomatic.git] / src / wx / dcp_referencing_dialog.h
1 /*
2     Copyright (C) 2023 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 "lib/enum_indexed_vector.h"
23 #include "lib/film.h"
24 #include <wx/wx.h>
25 #include <memory>
26 #include <vector>
27
28
29 class CheckBox;
30 class DCPContent;
31 class Film;
32 class wxBoxSizer;
33 class wxGridBagSizer;
34
35
36 class DCPReferencingDialog : public wxDialog
37 {
38 public:
39         DCPReferencingDialog(wxWindow* parent, std::shared_ptr<const Film> film);
40
41 private:
42         enum class Part {
43                 VIDEO,
44                 AUDIO,
45                 SUBTITLES,
46                 CLOSED_CAPTIONS,
47                 COUNT
48         };
49
50         void setup();
51         void checkbox_changed(std::weak_ptr<DCPContent> content, CheckBox* check_box, Part part);
52         void film_changed(ChangeType type, FilmProperty property);
53         void film_content_changed(ChangeType type, int property);
54
55         std::shared_ptr<const Film> _film;
56
57         wxGridBagSizer* _dcp_grid;
58         wxBoxSizer* _overall_sizer;
59
60         struct DCP {
61                 std::shared_ptr<DCPContent> content;
62                 EnumIndexedVector<CheckBox*, Part> check_box;
63         };
64
65         std::vector<DCP> _dcps;
66
67         boost::signals2::scoped_connection _film_connection;
68         boost::signals2::scoped_connection _film_content_connection;
69 };
70