No-op; fix GPL address and use the explicit-program-name version.
[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 #include <libcxml/cxml.h>
26 #include <boost/enable_shared_from_this.hpp>
27
28 namespace xmlpp {
29         class Element;
30 }
31
32 class Screen;
33
34 /** @class Cinema
35  *  @brief A description of a Cinema for KDM generation.
36  *
37  *  This is a cinema name, some metadata and a list of
38  *  Screen objects.
39  */
40 class Cinema : public boost::enable_shared_from_this<Cinema>
41 {
42 public:
43         Cinema (std::string const & name_, std::list<std::string> const & e, std::string notes_, int utc_offset_hour, int utc_offset_minute)
44                 : name (name_)
45                 , emails (e)
46                 , notes (notes_)
47                 , _utc_offset_hour (utc_offset_hour)
48                 , _utc_offset_minute (utc_offset_minute)
49         {}
50
51         Cinema (cxml::ConstNodePtr);
52
53         void read_screens (cxml::ConstNodePtr);
54
55         void as_xml (xmlpp::Element *) const;
56
57         void add_screen (boost::shared_ptr<Screen>);
58         void remove_screen (boost::shared_ptr<Screen>);
59
60         void set_utc_offset_hour (int h);
61         void set_utc_offset_minute (int m);
62
63         std::string name;
64         std::list<std::string> emails;
65         std::string notes;
66
67         int utc_offset_hour () const {
68                 return _utc_offset_hour;
69         }
70
71         int utc_offset_minute () const {
72                 return _utc_offset_minute;
73         }
74
75         std::list<boost::shared_ptr<Screen> > screens () const {
76                 return _screens;
77         }
78
79 private:
80         std::list<boost::shared_ptr<Screen> > _screens;
81         /** Offset such that the equivalent time in UTC can be determined
82             by subtracting the offset from the local time.
83         */
84         int _utc_offset_hour;
85         /** Additional minutes to add to _utc_offset_hour if _utc_offset_hour is
86             positive, or to subtract if _utc_offset_hour is negative.
87         */
88         int _utc_offset_minute;
89 };