1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
// Take a look at the license at the top of the repository in the LICENSE file.

use glib::translate::Uninitialized;

use crate::RGBA;
use glib::translate::*;
use std::fmt;
use std::str::FromStr;

impl RGBA {
    pub fn new(red: f64, green: f64, blue: f64, alpha: f64) -> RGBA {
        skip_assert_initialized!();
        unsafe {
            RGBA::unsafe_from(ffi::GdkRGBA {
                red,
                green,
                blue,
                alpha,
            })
        }
    }

    pub fn red(&self) -> f64 {
        self.inner.red
    }

    pub fn set_red(&mut self, red: f64) {
        self.inner.red = red;
    }

    pub fn green(&self) -> f64 {
        self.inner.green
    }

    pub fn set_green(&mut self, green: f64) {
        self.inner.green = green;
    }

    pub fn blue(&self) -> f64 {
        self.inner.blue
    }

    pub fn set_blue(&mut self, blue: f64) {
        self.inner.blue = blue;
    }

    pub fn alpha(&self) -> f64 {
        self.inner.alpha
    }

    pub fn set_alpha(&mut self, alpha: f64) {
        self.inner.alpha = alpha;
    }

    /// Parses a textual representation of a color, filling in
    /// the `red`, `green`, `blue` and `alpha` fields of the `self` [`RGBA`][crate::RGBA].
    ///
    /// The string can be either one of:
    /// - A standard name (Taken from the X11 rgb.txt file).
    /// - A hexadecimal value in the form “\`rgb`”, “\`rrggbb`”,
    ///  “\`rrrgggbbb`” or ”\`rrrrggggbbbb`”
    /// - A RGB color in the form “rgb(r,g,b)” (In this case the color will
    ///  have full opacity)
    /// - A RGBA color in the form “rgba(r,g,b,a)”
    ///
    /// Where “r”, “g”, “b” and “a” are respectively the red, green, blue and
    /// alpha color values. In the last two cases, “r”, “g”, and “b” are either integers
    /// in the range 0 to 255 or percentage values in the range 0% to 100%, and
    /// a is a floating point value in the range 0 to 1.
    /// ## `spec`
    /// the string specifying the color
    ///
    /// # Returns
    ///
    /// [`true`] if the parsing succeeded
    #[doc(alias = "gdk_rgba_parse")]
    pub fn parse(s: &str) -> Result<Self, glib::error::BoolError> {
        skip_assert_initialized!();
        unsafe {
            let mut res = RGBA::uninitialized();
            glib::result_from_gboolean!(
                ffi::gdk_rgba_parse(res.to_glib_none_mut().0, s.to_glib_none().0),
                "Can't parse RGBA"
            )
            .map(|_| res)
        }
    }

    pub const BLACK: RGBA = RGBA {
        inner: ffi::GdkRGBA {
            red: 0f64,
            green: 0f64,
            blue: 0f64,
            alpha: 1f64,
        },
        phantom: std::marker::PhantomData,
    };

    pub const BLUE: RGBA = RGBA {
        inner: ffi::GdkRGBA {
            red: 0f64,
            green: 0f64,
            blue: 1f64,
            alpha: 1f64,
        },
        phantom: std::marker::PhantomData,
    };

    pub const GREEN: RGBA = RGBA {
        inner: ffi::GdkRGBA {
            red: 0f64,
            green: 1f64,
            blue: 0f64,
            alpha: 1f64,
        },
        phantom: std::marker::PhantomData,
    };

    pub const RED: RGBA = RGBA {
        inner: ffi::GdkRGBA {
            red: 1f64,
            green: 0f64,
            blue: 0f64,
            alpha: 1f64,
        },
        phantom: std::marker::PhantomData,
    };

    pub const WHITE: RGBA = RGBA {
        inner: ffi::GdkRGBA {
            red: 1f64,
            green: 1f64,
            blue: 1f64,
            alpha: 1f64,
        },
        phantom: std::marker::PhantomData,
    };
}

impl fmt::Debug for RGBA {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        f.debug_struct("RGBA")
            .field("red", &self.red())
            .field("green", &self.green())
            .field("blue", &self.blue())
            .field("alpha", &self.alpha())
            .finish()
    }
}

impl FromStr for RGBA {
    type Err = glib::BoolError;
    fn from_str(s: &str) -> Result<Self, Self::Err> {
        skip_assert_initialized!();
        RGBA::parse(s)
    }
}