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

use crate::RadioToolButton;
use crate::ToolItem;
use glib::object::{Cast, ObjectExt};
use glib::translate::*;
use std::ptr;

impl RadioToolButton {
    /// Creates a new [`RadioToolButton`][crate::RadioToolButton], adding it to `group`.
    /// ## `group`
    /// An
    ///  existing radio button group, or [`None`] if you are creating a new group
    ///
    /// # Returns
    ///
    /// The new [`RadioToolButton`][crate::RadioToolButton]
    #[doc(alias = "gtk_radio_tool_button_new")]
    pub fn new() -> Self {
        assert_initialized_main_thread!();
        unsafe {
            ToolItem::from_glib_none(ffi::gtk_radio_tool_button_new(ptr::null_mut())).unsafe_cast()
        }
    }

    #[doc(alias = "gtk_radio_tool_button_new_from_stock")]
    pub fn from_stock(stock_id: &str) -> Self {
        assert_initialized_main_thread!();
        unsafe {
            ToolItem::from_glib_none(ffi::gtk_radio_tool_button_new_from_stock(
                ptr::null_mut(),
                stock_id.to_glib_none().0,
            ))
            .unsafe_cast()
        }
    }

    pub fn join_group(&self, group: Option<&RadioToolButton>) {
        self.set_property("group", &group);
    }
}

impl Default for RadioToolButton {
    fn default() -> Self {
        Self::new()
    }
}