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
// Take a look at the license at the top of the repository in the LICENSE file.

use crate::ColorButton;
use crate::Widget;
use glib::object::Cast;
use glib::object::IsA;
use glib::translate::*;
use std::mem;

pub trait ColorButtonExtManual: 'static {
    #[doc(alias = "gtk_color_button_new_with_color")]
    fn with_color(color: &gdk::Color) -> ColorButton;

    #[doc(alias = "gtk_color_button_get_color")]
    #[doc(alias = "get_color")]
    fn color(&self) -> gdk::Color;

    /// Sets the current color to be `color`.
    ///
    /// # Deprecated
    ///
    /// Use [`ColorChooserExt::set_rgba()`][crate::prelude::ColorChooserExt::set_rgba()] instead.
    /// ## `color`
    /// A `GdkColor` to set the current color with
    #[doc(alias = "gtk_color_button_set_color")]
    fn set_color(&self, color: &gdk::Color);
}

impl<O: IsA<ColorButton>> ColorButtonExtManual for O {
    fn with_color(color: &gdk::Color) -> ColorButton {
        assert_initialized_main_thread!();
        unsafe { Widget::from_glib_none(ffi::gtk_color_button_new_with_color(color)).unsafe_cast() }
    }

    fn color(&self) -> gdk::Color {
        unsafe {
            let mut color = mem::MaybeUninit::uninit();
            ffi::gtk_color_button_get_color(self.as_ref().to_glib_none().0, color.as_mut_ptr());
            color.assume_init()
        }
    }

    fn set_color(&self, color: &gdk::Color) {
        unsafe { ffi::gtk_color_button_set_color(self.as_ref().to_glib_none().0, color) }
    }
}