Strip Unicode U+202B (right-to-left-embedding) code; it looks like DoM does RTL ...
[libsub.git] / src / colour.h
1 /*
2     Copyright (C) 2014-2018 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 /** @file  src/colour.h
21  *  @brief Colour class.
22  */
23
24 #ifndef LIBSUB_COLOUR_H
25 #define LIBSUB_COLOUR_H
26
27 #include <dcp/types.h>
28 #include <string>
29 #include <cmath>
30
31 namespace sub {
32
33 /** @class Colour
34  *  @brief An RGB colour.
35  */
36 class Colour
37 {
38 public:
39         Colour ()
40                 : r (0)
41                 , g (0)
42                 , b (0)
43         {}
44
45         Colour (float r, float g, float b)
46                 : r (r)
47                 , g (g)
48                 , b (b)
49         {}
50
51         static Colour from_argb_hex (std::string);
52         static Colour from_rgb_hex (std::string);
53
54         /** red component (from 0 to 1) */
55         float r;
56         /** green component (from 0 to 1) */
57         float g;
58         /** blue component (from 0 to 1) */
59         float b;
60
61         dcp::Colour dcp() const {
62                 return dcp::Colour(lrintf(r * 255), lrintf(g * 255), lrintf(b * 255));
63         }
64 };
65
66 bool
67 operator== (Colour const & a, Colour const & b);
68
69 }
70
71 #endif