Restore time zone to Cinema and improve UI to use it (#2473).
[dcpomatic.git] / src / lib / cinema.h
1 /*
2     Copyright (C) 2013-2016 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 /** @file  src/lib/cinema.h
22  *  @brief Cinema class.
23  */
24
25
26 #include <dcp/utc_offset.h>
27 #include <libcxml/cxml.h>
28 #include <memory>
29
30
31 namespace xmlpp {
32         class Element;
33 }
34
35 namespace dcpomatic {
36         class Screen;
37 }
38
39 /** @class Cinema
40  *  @brief A description of a Cinema for KDM generation.
41  *
42  *  This is a cinema name, some metadata and a list of
43  *  Screen objects.
44  */
45 class Cinema : public std::enable_shared_from_this<Cinema>
46 {
47 public:
48         Cinema(std::string const & name_, std::vector<std::string> const & e, std::string notes_, dcp::UTCOffset utc_offset_)
49                 : name (name_)
50                 , emails (e)
51                 , notes (notes_)
52                 , utc_offset(std::move(utc_offset_))
53         {}
54
55         explicit Cinema (cxml::ConstNodePtr);
56
57         void read_screens (cxml::ConstNodePtr);
58
59         void as_xml (xmlpp::Element *) const;
60
61         void add_screen (std::shared_ptr<dcpomatic::Screen>);
62         void remove_screen (std::shared_ptr<dcpomatic::Screen>);
63
64         std::string name;
65         std::vector<std::string> emails;
66         std::string notes;
67         dcp::UTCOffset utc_offset;
68
69         std::vector<std::shared_ptr<dcpomatic::Screen>> screens() const {
70                 return _screens;
71         }
72
73 private:
74         std::vector<std::shared_ptr<dcpomatic::Screen>> _screens;
75 };