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
// This file was generated by gir (https://github.com/gtk-rs/gir)
// from gir-files (https://github.com/gtk-rs/gir-files.git)
// from webkit2gtk-gir-files
// DO NOT EDIT
use glib::translate::*;
glib::wrapper! {
/// One item of a [`OptionMenu`][crate::OptionMenu].
///
/// The [`OptionMenu`][crate::OptionMenu] is composed of WebKitOptionMenuItem<!-- -->s.
/// A WebKitOptionMenuItem always has a label and can contain a tooltip text.
/// You can use the WebKitOptionMenuItem of a [`OptionMenu`][crate::OptionMenu] to build your
/// own menus.
#[derive(Debug, PartialEq, Eq, PartialOrd, Ord, Hash)]
pub struct OptionMenuItem(Boxed<ffi::WebKitOptionMenuItem>);
match fn {
copy => |ptr| ffi::webkit_option_menu_item_copy(mut_override(ptr)),
free => |ptr| ffi::webkit_option_menu_item_free(ptr),
type_ => || ffi::webkit_option_menu_item_get_type(),
}
}
impl OptionMenuItem {
/// Get the label of a [`OptionMenuItem`][crate::OptionMenuItem].
///
/// # Returns
///
/// The label of `self`.
#[doc(alias = "webkit_option_menu_item_get_label")]
#[doc(alias = "get_label")]
pub fn label(&mut self) -> Option<glib::GString> {
unsafe {
from_glib_none(ffi::webkit_option_menu_item_get_label(
self.to_glib_none_mut().0,
))
}
}
/// Get the tooltip of a [`OptionMenuItem`][crate::OptionMenuItem].
///
/// # Returns
///
/// The tooltip of `self`, or [`None`].
#[doc(alias = "webkit_option_menu_item_get_tooltip")]
#[doc(alias = "get_tooltip")]
pub fn tooltip(&mut self) -> Option<glib::GString> {
unsafe {
from_glib_none(ffi::webkit_option_menu_item_get_tooltip(
self.to_glib_none_mut().0,
))
}
}
/// Whether a [`OptionMenuItem`][crate::OptionMenuItem] is enabled.
///
/// # Returns
///
/// [`true`] if the `self` is enabled or [`false`] otherwise.
#[doc(alias = "webkit_option_menu_item_is_enabled")]
pub fn is_enabled(&mut self) -> bool {
unsafe {
from_glib(ffi::webkit_option_menu_item_is_enabled(
self.to_glib_none_mut().0,
))
}
}
/// Whether a [`OptionMenuItem`][crate::OptionMenuItem] is a group child.
///
/// # Returns
///
/// [`true`] if the `self` is a group child or [`false`] otherwise.
#[doc(alias = "webkit_option_menu_item_is_group_child")]
pub fn is_group_child(&mut self) -> bool {
unsafe {
from_glib(ffi::webkit_option_menu_item_is_group_child(
self.to_glib_none_mut().0,
))
}
}
/// Whether a [`OptionMenuItem`][crate::OptionMenuItem] is a group label.
///
/// # Returns
///
/// [`true`] if the `self` is a group label or [`false`] otherwise.
#[doc(alias = "webkit_option_menu_item_is_group_label")]
pub fn is_group_label(&mut self) -> bool {
unsafe {
from_glib(ffi::webkit_option_menu_item_is_group_label(
self.to_glib_none_mut().0,
))
}
}
/// Whether a [`OptionMenuItem`][crate::OptionMenuItem] is the currently selected one.
///
/// # Returns
///
/// [`true`] if the `self` is selected or [`false`] otherwise.
#[doc(alias = "webkit_option_menu_item_is_selected")]
pub fn is_selected(&mut self) -> bool {
unsafe {
from_glib(ffi::webkit_option_menu_item_is_selected(
self.to_glib_none_mut().0,
))
}
}
}