gtk4/
scale.rs

1// Take a look at the license at the top of the repository in the LICENSE file.
2
3use glib::translate::*;
4
5use crate::{prelude::*, Scale};
6
7// rustdoc-stripper-ignore-next
8/// Trait containing manually implemented methods of [`Scale`](crate::Scale).
9pub trait ScaleExtManual: IsA<Scale> + 'static {
10    #[doc(alias = "gtk_scale_set_format_value_func")]
11    #[doc(alias = "set_format_value_func")]
12    fn unset_format_value_func(&self) {
13        unsafe {
14            crate::ffi::gtk_scale_set_format_value_func(
15                self.as_ref().to_glib_none().0,
16                None,
17                std::ptr::null_mut(),
18                None,
19            );
20        }
21    }
22}
23
24impl<O: IsA<Scale>> ScaleExtManual for O {}