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
// Take a look at the license at the top of the repository in the LICENSE file.
use crate::RadioMenuItem;
use crate::Widget;
use glib::object::Cast;
use glib::translate::*;
use std::ptr;
impl RadioMenuItem {
/// Creates a new [`RadioMenuItem`][crate::RadioMenuItem].
/// ## `group`
/// the group to which the
/// radio menu item is to be attached, or [`None`]
///
/// # Returns
///
/// a new [`RadioMenuItem`][crate::RadioMenuItem]
#[doc(alias = "gtk_radio_menu_item_new")]
pub fn new() -> Self {
assert_initialized_main_thread!();
unsafe {
Widget::from_glib_none(ffi::gtk_radio_menu_item_new(ptr::null_mut())).unsafe_cast()
}
}
/// Creates a new [`RadioMenuItem`][crate::RadioMenuItem] whose child is a simple [`Label`][crate::Label].
/// ## `group`
///
/// group the radio menu item is inside, or [`None`]
/// ## `label`
/// the text for the label
///
/// # Returns
///
/// A new [`RadioMenuItem`][crate::RadioMenuItem]
#[doc(alias = "gtk_radio_menu_item_new_with_label")]
pub fn with_label(label: &str) -> Self {
assert_initialized_main_thread!();
unsafe {
Widget::from_glib_none(ffi::gtk_radio_menu_item_new_with_label(
ptr::null_mut(),
label.to_glib_none().0,
))
.unsafe_cast()
}
}
/// Creates a new [`RadioMenuItem`][crate::RadioMenuItem] containing a label. The label
/// will be created using [`Label::with_mnemonic()`][crate::Label::with_mnemonic()], so underscores
/// in `label` indicate the mnemonic for the menu item.
/// ## `group`
///
/// group the radio menu item is inside, or [`None`]
/// ## `label`
/// the text of the button, with an underscore in front of the
/// mnemonic character
///
/// # Returns
///
/// a new [`RadioMenuItem`][crate::RadioMenuItem]
#[doc(alias = "gtk_radio_menu_item_new_with_mnemonic")]
pub fn with_mnemonic(label: &str) -> Self {
assert_initialized_main_thread!();
unsafe {
Widget::from_glib_none(ffi::gtk_radio_menu_item_new_with_mnemonic(
ptr::null_mut(),
label.to_glib_none().0,
))
.unsafe_cast()
}
}
}
impl Default for RadioMenuItem {
fn default() -> Self {
Self::new()
}
}