Make sure wxWidgets headers are included before any Windows ones.
[dcpomatic.git] / src / wx / film_editor.h
1 /*
2     Copyright (C) 2012-2021 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 /** @file src/wx/film_editor.h
23  *  @brief FilmEditor class.
24  */
25
26
27 #include "lib/warnings.h"
28 DCPOMATIC_DISABLE_WARNINGS
29 #include <wx/wx.h>
30 DCPOMATIC_ENABLE_WARNINGS
31
32 #include "lib/film.h"
33 #include <boost/signals2.hpp>
34
35
36 class wxNotebook;
37 class Film;
38 class ContentPanel;
39 class DCPPanel;
40 class FilmViewer;
41
42
43 /** @class FilmEditor
44  *  @brief A wx widget to edit a film's metadata, and perform various functions.
45  */
46 class FilmEditor : public wxPanel
47 {
48 public:
49         FilmEditor (wxWindow *, std::weak_ptr<FilmViewer> viewer);
50
51         void set_film (std::shared_ptr<Film>);
52         void first_shown ();
53
54         boost::signals2::signal<void (boost::filesystem::path)> FileChanged;
55         boost::signals2::signal<void (void)> SelectionChanged;
56
57         /* Stuff for panels */
58
59         ContentPanel* content_panel () const {
60                 return _content_panel;
61         }
62
63         std::shared_ptr<Film> film () const {
64                 return _film;
65         }
66
67 private:
68
69         /* Handle changes to the model */
70         void film_change (ChangeType, Film::Property);
71         void film_content_change (ChangeType type, int);
72
73         void set_general_sensitivity (bool);
74         void active_jobs_changed (boost::optional<std::string>);
75
76         wxNotebook* _main_notebook;
77         ContentPanel* _content_panel;
78         DCPPanel* _dcp_panel;
79
80         /** The film we are editing */
81         std::shared_ptr<Film> _film;
82 };