Merge master.
[dcpomatic.git] / src / lib / ratio.h
1 /*
2     Copyright (C) 2013 Carl Hetherington <cth@carlh.net>
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #ifndef DCPOMATIC_RATIO_H
21 #define DCPOMATIC_RATIO_H
22
23 #include <vector>
24 #include <libdcp/util.h>
25
26 class Ratio
27 {
28 public:
29         Ratio (float ratio, std::string id, std::string n, std::string d)
30                 : _ratio (ratio)
31                 , _id (id)
32                 , _nickname (n)
33                 , _dci_name (d)
34         {}
35
36         libdcp::Size size (libdcp::Size) const;
37
38         std::string id () const {
39                 return _id;
40         }
41
42         std::string nickname () const {
43                 return _nickname;
44         }
45
46         std::string dci_name () const {
47                 return _dci_name;
48         }
49
50         float ratio () const {
51                 return _ratio;
52         }
53
54         static void setup_ratios ();
55         static Ratio const * from_id (std::string i);
56         static std::vector<Ratio const *> all () {
57                 return _ratios;
58         }
59
60 private:
61         float _ratio;
62         /** id for use in metadata */
63         std::string _id;
64         /** nickname (e.g. Flat, Scope) */
65         std::string _nickname;
66         std::string _dci_name;
67
68         static std::vector<Ratio const *> _ratios;      
69 };
70
71 #endif