// This file was generated by gir (https://github.com/gtk-rs/gir) // from gir-files (https://github.com/gtk-rs/gir-files) // DO NOT EDIT use crate::Adjustment; use crate::Align; use crate::Bin; use crate::Buildable; use crate::Container; use crate::CornerType; use crate::PlacesOpenFlags; use crate::PolicyType; use crate::ResizeMode; use crate::ScrolledWindow; use crate::ShadowType; use crate::Widget; use glib::object::Cast; use glib::object::IsA; use glib::object::ObjectType as ObjectType_; use glib::signal::connect_raw; use glib::signal::SignalHandlerId; use glib::translate::*; use glib::StaticType; use glib::ToValue; use std::boxed::Box as Box_; use std::fmt; use std::mem::transmute; glib::wrapper! { #[doc(alias = "GtkPlacesSidebar")] pub struct PlacesSidebar(Object) @extends ScrolledWindow, Bin, Container, Widget, @implements Buildable; match fn { type_ => || ffi::gtk_places_sidebar_get_type(), } } impl PlacesSidebar { #[doc(alias = "gtk_places_sidebar_new")] pub fn new() -> PlacesSidebar { assert_initialized_main_thread!(); unsafe { Widget::from_glib_none(ffi::gtk_places_sidebar_new()).unsafe_cast() } } // rustdoc-stripper-ignore-next /// Creates a new builder-pattern struct instance to construct [`PlacesSidebar`] objects. /// /// This method returns an instance of [`PlacesSidebarBuilder`] which can be used to create [`PlacesSidebar`] objects. pub fn builder() -> PlacesSidebarBuilder { PlacesSidebarBuilder::default() } #[doc(alias = "gtk_places_sidebar_add_shortcut")] pub fn add_shortcut>(&self, location: &P) { unsafe { ffi::gtk_places_sidebar_add_shortcut( self.to_glib_none().0, location.as_ref().to_glib_none().0, ); } } #[doc(alias = "gtk_places_sidebar_get_local_only")] #[doc(alias = "get_local_only")] pub fn is_local_only(&self) -> bool { unsafe { from_glib(ffi::gtk_places_sidebar_get_local_only( self.to_glib_none().0, )) } } #[doc(alias = "gtk_places_sidebar_get_location")] #[doc(alias = "get_location")] pub fn location(&self) -> Option { unsafe { from_glib_full(ffi::gtk_places_sidebar_get_location(self.to_glib_none().0)) } } #[doc(alias = "gtk_places_sidebar_get_nth_bookmark")] #[doc(alias = "get_nth_bookmark")] pub fn nth_bookmark(&self, n: i32) -> Option { unsafe { from_glib_full(ffi::gtk_places_sidebar_get_nth_bookmark( self.to_glib_none().0, n, )) } } #[doc(alias = "gtk_places_sidebar_get_open_flags")] #[doc(alias = "get_open_flags")] pub fn open_flags(&self) -> PlacesOpenFlags { unsafe { from_glib(ffi::gtk_places_sidebar_get_open_flags( self.to_glib_none().0, )) } } #[doc(alias = "gtk_places_sidebar_get_show_desktop")] #[doc(alias = "get_show_desktop")] pub fn shows_desktop(&self) -> bool { unsafe { from_glib(ffi::gtk_places_sidebar_get_show_desktop( self.to_glib_none().0, )) } } #[doc(alias = "gtk_places_sidebar_get_show_enter_location")] #[doc(alias = "get_show_enter_location")] pub fn shows_enter_location(&self) -> bool { unsafe { from_glib(ffi::gtk_places_sidebar_get_show_enter_location( self.to_glib_none().0, )) } } #[doc(alias = "gtk_places_sidebar_get_show_other_locations")] #[doc(alias = "get_show_other_locations")] pub fn shows_other_locations(&self) -> bool { unsafe { from_glib(ffi::gtk_places_sidebar_get_show_other_locations( self.to_glib_none().0, )) } } #[doc(alias = "gtk_places_sidebar_get_show_recent")] #[doc(alias = "get_show_recent")] pub fn shows_recent(&self) -> bool { unsafe { from_glib(ffi::gtk_places_sidebar_get_show_recent( self.to_glib_none().0, )) } } #[cfg(any(feature = "v3_22_26", feature = "dox"))] #[cfg_attr(feature = "dox", doc(cfg(feature = "v3_22_26")))] #[doc(alias = "gtk_places_sidebar_get_show_starred_location")] #[doc(alias = "get_show_starred_location")] pub fn shows_starred_location(&self) -> bool { unsafe { from_glib(ffi::gtk_places_sidebar_get_show_starred_location( self.to_glib_none().0, )) } } #[doc(alias = "gtk_places_sidebar_get_show_trash")] #[doc(alias = "get_show_trash")] pub fn shows_trash(&self) -> bool { unsafe { from_glib(ffi::gtk_places_sidebar_get_show_trash( self.to_glib_none().0, )) } } #[doc(alias = "gtk_places_sidebar_list_shortcuts")] pub fn list_shortcuts(&self) -> Vec { unsafe { FromGlibPtrContainer::from_glib_full(ffi::gtk_places_sidebar_list_shortcuts( self.to_glib_none().0, )) } } #[doc(alias = "gtk_places_sidebar_remove_shortcut")] pub fn remove_shortcut>(&self, location: &P) { unsafe { ffi::gtk_places_sidebar_remove_shortcut( self.to_glib_none().0, location.as_ref().to_glib_none().0, ); } } #[doc(alias = "gtk_places_sidebar_set_drop_targets_visible")] pub fn set_drop_targets_visible(&self, visible: bool, context: &gdk::DragContext) { unsafe { ffi::gtk_places_sidebar_set_drop_targets_visible( self.to_glib_none().0, visible.into_glib(), context.to_glib_none().0, ); } } #[doc(alias = "gtk_places_sidebar_set_local_only")] pub fn set_local_only(&self, local_only: bool) { unsafe { ffi::gtk_places_sidebar_set_local_only(self.to_glib_none().0, local_only.into_glib()); } } #[doc(alias = "gtk_places_sidebar_set_location")] pub fn set_location>(&self, location: Option<&P>) { unsafe { ffi::gtk_places_sidebar_set_location( self.to_glib_none().0, location.map(|p| p.as_ref()).to_glib_none().0, ); } } #[doc(alias = "gtk_places_sidebar_set_open_flags")] pub fn set_open_flags(&self, flags: PlacesOpenFlags) { unsafe { ffi::gtk_places_sidebar_set_open_flags(self.to_glib_none().0, flags.into_glib()); } } #[doc(alias = "gtk_places_sidebar_set_show_desktop")] pub fn set_show_desktop(&self, show_desktop: bool) { unsafe { ffi::gtk_places_sidebar_set_show_desktop( self.to_glib_none().0, show_desktop.into_glib(), ); } } #[doc(alias = "gtk_places_sidebar_set_show_enter_location")] pub fn set_show_enter_location(&self, show_enter_location: bool) { unsafe { ffi::gtk_places_sidebar_set_show_enter_location( self.to_glib_none().0, show_enter_location.into_glib(), ); } } #[doc(alias = "gtk_places_sidebar_set_show_other_locations")] pub fn set_show_other_locations(&self, show_other_locations: bool) { unsafe { ffi::gtk_places_sidebar_set_show_other_locations( self.to_glib_none().0, show_other_locations.into_glib(), ); } } #[doc(alias = "gtk_places_sidebar_set_show_recent")] pub fn set_show_recent(&self, show_recent: bool) { unsafe { ffi::gtk_places_sidebar_set_show_recent(self.to_glib_none().0, show_recent.into_glib()); } } #[cfg(any(feature = "v3_22_26", feature = "dox"))] #[cfg_attr(feature = "dox", doc(cfg(feature = "v3_22_26")))] #[doc(alias = "gtk_places_sidebar_set_show_starred_location")] pub fn set_show_starred_location(&self, show_starred_location: bool) { unsafe { ffi::gtk_places_sidebar_set_show_starred_location( self.to_glib_none().0, show_starred_location.into_glib(), ); } } #[doc(alias = "gtk_places_sidebar_set_show_trash")] pub fn set_show_trash(&self, show_trash: bool) { unsafe { ffi::gtk_places_sidebar_set_show_trash(self.to_glib_none().0, show_trash.into_glib()); } } #[doc(alias = "populate-all")] pub fn populates_all(&self) -> bool { unsafe { let mut value = glib::Value::from_type(::static_type()); glib::gobject_ffi::g_object_get_property( self.as_ptr() as *mut glib::gobject_ffi::GObject, b"populate-all\0".as_ptr() as *const _, value.to_glib_none_mut().0, ); value .get() .expect("Return Value for property `populate-all` getter") } } #[doc(alias = "populate-all")] pub fn set_populate_all(&self, populate_all: bool) { unsafe { glib::gobject_ffi::g_object_set_property( self.as_ptr() as *mut glib::gobject_ffi::GObject, b"populate-all\0".as_ptr() as *const _, populate_all.to_value().to_glib_none().0, ); } } #[doc(alias = "show-connect-to-server")] pub fn shows_connect_to_server(&self) -> bool { unsafe { let mut value = glib::Value::from_type(::static_type()); glib::gobject_ffi::g_object_get_property( self.as_ptr() as *mut glib::gobject_ffi::GObject, b"show-connect-to-server\0".as_ptr() as *const _, value.to_glib_none_mut().0, ); value .get() .expect("Return Value for property `show-connect-to-server` getter") } } #[doc(alias = "show-connect-to-server")] pub fn set_show_connect_to_server(&self, show_connect_to_server: bool) { unsafe { glib::gobject_ffi::g_object_set_property( self.as_ptr() as *mut glib::gobject_ffi::GObject, b"show-connect-to-server\0".as_ptr() as *const _, show_connect_to_server.to_value().to_glib_none().0, ); } } #[doc(alias = "drag-action-ask")] pub fn connect_drag_action_ask i32 + 'static>( &self, f: F, ) -> SignalHandlerId { unsafe extern "C" fn drag_action_ask_trampoline< F: Fn(&PlacesSidebar, i32) -> i32 + 'static, >( this: *mut ffi::GtkPlacesSidebar, actions: libc::c_int, f: glib::ffi::gpointer, ) -> libc::c_int { let f: &F = &*(f as *const F); f(&from_glib_borrow(this), actions) } unsafe { let f: Box_ = Box_::new(f); connect_raw( self.as_ptr() as *mut _, b"drag-action-ask\0".as_ptr() as *const _, Some(transmute::<_, unsafe extern "C" fn()>( drag_action_ask_trampoline:: as *const (), )), Box_::into_raw(f), ) } } #[cfg(any(feature = "v3_20", feature = "dox"))] #[cfg_attr(feature = "dox", doc(cfg(feature = "v3_20")))] #[doc(alias = "mount")] pub fn connect_mount( &self, f: F, ) -> SignalHandlerId { unsafe extern "C" fn mount_trampoline< F: Fn(&PlacesSidebar, &gio::MountOperation) + 'static, >( this: *mut ffi::GtkPlacesSidebar, mount_operation: *mut gio::ffi::GMountOperation, f: glib::ffi::gpointer, ) { let f: &F = &*(f as *const F); f(&from_glib_borrow(this), &from_glib_borrow(mount_operation)) } unsafe { let f: Box_ = Box_::new(f); connect_raw( self.as_ptr() as *mut _, b"mount\0".as_ptr() as *const _, Some(transmute::<_, unsafe extern "C" fn()>( mount_trampoline:: as *const (), )), Box_::into_raw(f), ) } } #[doc(alias = "open-location")] pub fn connect_open_location( &self, f: F, ) -> SignalHandlerId { unsafe extern "C" fn open_location_trampoline< F: Fn(&PlacesSidebar, &gio::File, PlacesOpenFlags) + 'static, >( this: *mut ffi::GtkPlacesSidebar, location: *mut gio::ffi::GFile, open_flags: ffi::GtkPlacesOpenFlags, f: glib::ffi::gpointer, ) { let f: &F = &*(f as *const F); f( &from_glib_borrow(this), &from_glib_borrow(location), from_glib(open_flags), ) } unsafe { let f: Box_ = Box_::new(f); connect_raw( self.as_ptr() as *mut _, b"open-location\0".as_ptr() as *const _, Some(transmute::<_, unsafe extern "C" fn()>( open_location_trampoline:: as *const (), )), Box_::into_raw(f), ) } } //#[doc(alias = "populate-popup")] //pub fn connect_populate_popup(&self, f: F) -> SignalHandlerId { // Ignored selected_volume: Gio.Volume //} #[doc(alias = "show-enter-location")] pub fn connect_show_enter_location(&self, f: F) -> SignalHandlerId { unsafe extern "C" fn show_enter_location_trampoline( this: *mut ffi::GtkPlacesSidebar, f: glib::ffi::gpointer, ) { let f: &F = &*(f as *const F); f(&from_glib_borrow(this)) } unsafe { let f: Box_ = Box_::new(f); connect_raw( self.as_ptr() as *mut _, b"show-enter-location\0".as_ptr() as *const _, Some(transmute::<_, unsafe extern "C" fn()>( show_enter_location_trampoline:: as *const (), )), Box_::into_raw(f), ) } } #[doc(alias = "show-error-message")] pub fn connect_show_error_message( &self, f: F, ) -> SignalHandlerId { unsafe extern "C" fn show_error_message_trampoline< F: Fn(&PlacesSidebar, &str, &str) + 'static, >( this: *mut ffi::GtkPlacesSidebar, primary: *mut libc::c_char, secondary: *mut libc::c_char, f: glib::ffi::gpointer, ) { let f: &F = &*(f as *const F); f( &from_glib_borrow(this), &glib::GString::from_glib_borrow(primary), &glib::GString::from_glib_borrow(secondary), ) } unsafe { let f: Box_ = Box_::new(f); connect_raw( self.as_ptr() as *mut _, b"show-error-message\0".as_ptr() as *const _, Some(transmute::<_, unsafe extern "C" fn()>( show_error_message_trampoline:: as *const (), )), Box_::into_raw(f), ) } } #[cfg_attr(feature = "v3_20", deprecated = "Since 3.20")] #[doc(alias = "show-other-locations")] pub fn connect_show_other_locations(&self, f: F) -> SignalHandlerId { unsafe extern "C" fn show_other_locations_trampoline( this: *mut ffi::GtkPlacesSidebar, f: glib::ffi::gpointer, ) { let f: &F = &*(f as *const F); f(&from_glib_borrow(this)) } unsafe { let f: Box_ = Box_::new(f); connect_raw( self.as_ptr() as *mut _, b"show-other-locations\0".as_ptr() as *const _, Some(transmute::<_, unsafe extern "C" fn()>( show_other_locations_trampoline:: as *const (), )), Box_::into_raw(f), ) } } #[cfg(any(feature = "v3_20", feature = "dox"))] #[cfg_attr(feature = "dox", doc(cfg(feature = "v3_20")))] #[doc(alias = "show-other-locations-with-flags")] pub fn connect_show_other_locations_with_flags( &self, f: F, ) -> SignalHandlerId { unsafe extern "C" fn show_other_locations_with_flags_trampoline< F: Fn(&PlacesSidebar, PlacesOpenFlags) + 'static, >( this: *mut ffi::GtkPlacesSidebar, open_flags: ffi::GtkPlacesOpenFlags, f: glib::ffi::gpointer, ) { let f: &F = &*(f as *const F); f(&from_glib_borrow(this), from_glib(open_flags)) } unsafe { let f: Box_ = Box_::new(f); connect_raw( self.as_ptr() as *mut _, b"show-other-locations-with-flags\0".as_ptr() as *const _, Some(transmute::<_, unsafe extern "C" fn()>( show_other_locations_with_flags_trampoline:: as *const (), )), Box_::into_raw(f), ) } } #[cfg(any(feature = "v3_22_26", feature = "dox"))] #[cfg_attr(feature = "dox", doc(cfg(feature = "v3_22_26")))] #[doc(alias = "show-starred-location")] pub fn connect_show_starred_location( &self, f: F, ) -> SignalHandlerId { unsafe extern "C" fn show_starred_location_trampoline< F: Fn(&PlacesSidebar, PlacesOpenFlags) + 'static, >( this: *mut ffi::GtkPlacesSidebar, open_flags: ffi::GtkPlacesOpenFlags, f: glib::ffi::gpointer, ) { let f: &F = &*(f as *const F); f(&from_glib_borrow(this), from_glib(open_flags)) } unsafe { let f: Box_ = Box_::new(f); connect_raw( self.as_ptr() as *mut _, b"show-starred-location\0".as_ptr() as *const _, Some(transmute::<_, unsafe extern "C" fn()>( show_starred_location_trampoline:: as *const (), )), Box_::into_raw(f), ) } } #[cfg(any(feature = "v3_20", feature = "dox"))] #[cfg_attr(feature = "dox", doc(cfg(feature = "v3_20")))] #[doc(alias = "unmount")] pub fn connect_unmount( &self, f: F, ) -> SignalHandlerId { unsafe extern "C" fn unmount_trampoline< F: Fn(&PlacesSidebar, &gio::MountOperation) + 'static, >( this: *mut ffi::GtkPlacesSidebar, mount_operation: *mut gio::ffi::GMountOperation, f: glib::ffi::gpointer, ) { let f: &F = &*(f as *const F); f(&from_glib_borrow(this), &from_glib_borrow(mount_operation)) } unsafe { let f: Box_ = Box_::new(f); connect_raw( self.as_ptr() as *mut _, b"unmount\0".as_ptr() as *const _, Some(transmute::<_, unsafe extern "C" fn()>( unmount_trampoline:: as *const (), )), Box_::into_raw(f), ) } } #[doc(alias = "local-only")] pub fn connect_local_only_notify(&self, f: F) -> SignalHandlerId { unsafe extern "C" fn notify_local_only_trampoline( this: *mut ffi::GtkPlacesSidebar, _param_spec: glib::ffi::gpointer, f: glib::ffi::gpointer, ) { let f: &F = &*(f as *const F); f(&from_glib_borrow(this)) } unsafe { let f: Box_ = Box_::new(f); connect_raw( self.as_ptr() as *mut _, b"notify::local-only\0".as_ptr() as *const _, Some(transmute::<_, unsafe extern "C" fn()>( notify_local_only_trampoline:: as *const (), )), Box_::into_raw(f), ) } } #[doc(alias = "location")] pub fn connect_location_notify(&self, f: F) -> SignalHandlerId { unsafe extern "C" fn notify_location_trampoline( this: *mut ffi::GtkPlacesSidebar, _param_spec: glib::ffi::gpointer, f: glib::ffi::gpointer, ) { let f: &F = &*(f as *const F); f(&from_glib_borrow(this)) } unsafe { let f: Box_ = Box_::new(f); connect_raw( self.as_ptr() as *mut _, b"notify::location\0".as_ptr() as *const _, Some(transmute::<_, unsafe extern "C" fn()>( notify_location_trampoline:: as *const (), )), Box_::into_raw(f), ) } } #[doc(alias = "open-flags")] pub fn connect_open_flags_notify(&self, f: F) -> SignalHandlerId { unsafe extern "C" fn notify_open_flags_trampoline( this: *mut ffi::GtkPlacesSidebar, _param_spec: glib::ffi::gpointer, f: glib::ffi::gpointer, ) { let f: &F = &*(f as *const F); f(&from_glib_borrow(this)) } unsafe { let f: Box_ = Box_::new(f); connect_raw( self.as_ptr() as *mut _, b"notify::open-flags\0".as_ptr() as *const _, Some(transmute::<_, unsafe extern "C" fn()>( notify_open_flags_trampoline:: as *const (), )), Box_::into_raw(f), ) } } #[doc(alias = "populate-all")] pub fn connect_populate_all_notify(&self, f: F) -> SignalHandlerId { unsafe extern "C" fn notify_populate_all_trampoline( this: *mut ffi::GtkPlacesSidebar, _param_spec: glib::ffi::gpointer, f: glib::ffi::gpointer, ) { let f: &F = &*(f as *const F); f(&from_glib_borrow(this)) } unsafe { let f: Box_ = Box_::new(f); connect_raw( self.as_ptr() as *mut _, b"notify::populate-all\0".as_ptr() as *const _, Some(transmute::<_, unsafe extern "C" fn()>( notify_populate_all_trampoline:: as *const (), )), Box_::into_raw(f), ) } } #[doc(alias = "show-connect-to-server")] pub fn connect_show_connect_to_server_notify( &self, f: F, ) -> SignalHandlerId { unsafe extern "C" fn notify_show_connect_to_server_trampoline< F: Fn(&PlacesSidebar) + 'static, >( this: *mut ffi::GtkPlacesSidebar, _param_spec: glib::ffi::gpointer, f: glib::ffi::gpointer, ) { let f: &F = &*(f as *const F); f(&from_glib_borrow(this)) } unsafe { let f: Box_ = Box_::new(f); connect_raw( self.as_ptr() as *mut _, b"notify::show-connect-to-server\0".as_ptr() as *const _, Some(transmute::<_, unsafe extern "C" fn()>( notify_show_connect_to_server_trampoline:: as *const (), )), Box_::into_raw(f), ) } } #[doc(alias = "show-desktop")] pub fn connect_show_desktop_notify(&self, f: F) -> SignalHandlerId { unsafe extern "C" fn notify_show_desktop_trampoline( this: *mut ffi::GtkPlacesSidebar, _param_spec: glib::ffi::gpointer, f: glib::ffi::gpointer, ) { let f: &F = &*(f as *const F); f(&from_glib_borrow(this)) } unsafe { let f: Box_ = Box_::new(f); connect_raw( self.as_ptr() as *mut _, b"notify::show-desktop\0".as_ptr() as *const _, Some(transmute::<_, unsafe extern "C" fn()>( notify_show_desktop_trampoline:: as *const (), )), Box_::into_raw(f), ) } } #[doc(alias = "show-enter-location")] pub fn connect_show_enter_location_notify( &self, f: F, ) -> SignalHandlerId { unsafe extern "C" fn notify_show_enter_location_trampoline< F: Fn(&PlacesSidebar) + 'static, >( this: *mut ffi::GtkPlacesSidebar, _param_spec: glib::ffi::gpointer, f: glib::ffi::gpointer, ) { let f: &F = &*(f as *const F); f(&from_glib_borrow(this)) } unsafe { let f: Box_ = Box_::new(f); connect_raw( self.as_ptr() as *mut _, b"notify::show-enter-location\0".as_ptr() as *const _, Some(transmute::<_, unsafe extern "C" fn()>( notify_show_enter_location_trampoline:: as *const (), )), Box_::into_raw(f), ) } } #[doc(alias = "show-other-locations")] pub fn connect_show_other_locations_notify( &self, f: F, ) -> SignalHandlerId { unsafe extern "C" fn notify_show_other_locations_trampoline< F: Fn(&PlacesSidebar) + 'static, >( this: *mut ffi::GtkPlacesSidebar, _param_spec: glib::ffi::gpointer, f: glib::ffi::gpointer, ) { let f: &F = &*(f as *const F); f(&from_glib_borrow(this)) } unsafe { let f: Box_ = Box_::new(f); connect_raw( self.as_ptr() as *mut _, b"notify::show-other-locations\0".as_ptr() as *const _, Some(transmute::<_, unsafe extern "C" fn()>( notify_show_other_locations_trampoline:: as *const (), )), Box_::into_raw(f), ) } } #[doc(alias = "show-recent")] pub fn connect_show_recent_notify(&self, f: F) -> SignalHandlerId { unsafe extern "C" fn notify_show_recent_trampoline( this: *mut ffi::GtkPlacesSidebar, _param_spec: glib::ffi::gpointer, f: glib::ffi::gpointer, ) { let f: &F = &*(f as *const F); f(&from_glib_borrow(this)) } unsafe { let f: Box_ = Box_::new(f); connect_raw( self.as_ptr() as *mut _, b"notify::show-recent\0".as_ptr() as *const _, Some(transmute::<_, unsafe extern "C" fn()>( notify_show_recent_trampoline:: as *const (), )), Box_::into_raw(f), ) } } #[cfg(any(feature = "v3_22_26", feature = "dox"))] #[cfg_attr(feature = "dox", doc(cfg(feature = "v3_22_26")))] #[doc(alias = "show-starred-location")] pub fn connect_show_starred_location_notify( &self, f: F, ) -> SignalHandlerId { unsafe extern "C" fn notify_show_starred_location_trampoline< F: Fn(&PlacesSidebar) + 'static, >( this: *mut ffi::GtkPlacesSidebar, _param_spec: glib::ffi::gpointer, f: glib::ffi::gpointer, ) { let f: &F = &*(f as *const F); f(&from_glib_borrow(this)) } unsafe { let f: Box_ = Box_::new(f); connect_raw( self.as_ptr() as *mut _, b"notify::show-starred-location\0".as_ptr() as *const _, Some(transmute::<_, unsafe extern "C" fn()>( notify_show_starred_location_trampoline:: as *const (), )), Box_::into_raw(f), ) } } #[doc(alias = "show-trash")] pub fn connect_show_trash_notify(&self, f: F) -> SignalHandlerId { unsafe extern "C" fn notify_show_trash_trampoline( this: *mut ffi::GtkPlacesSidebar, _param_spec: glib::ffi::gpointer, f: glib::ffi::gpointer, ) { let f: &F = &*(f as *const F); f(&from_glib_borrow(this)) } unsafe { let f: Box_ = Box_::new(f); connect_raw( self.as_ptr() as *mut _, b"notify::show-trash\0".as_ptr() as *const _, Some(transmute::<_, unsafe extern "C" fn()>( notify_show_trash_trampoline:: as *const (), )), Box_::into_raw(f), ) } } } impl Default for PlacesSidebar { fn default() -> Self { Self::new() } } #[derive(Clone, Default)] // rustdoc-stripper-ignore-next /// A [builder-pattern] type to construct [`PlacesSidebar`] objects. /// /// [builder-pattern]: https://doc.rust-lang.org/1.0.0/style/ownership/builders.html pub struct PlacesSidebarBuilder { local_only: Option, location: Option, open_flags: Option, populate_all: Option, show_connect_to_server: Option, show_desktop: Option, show_enter_location: Option, show_other_locations: Option, show_recent: Option, #[cfg(any(feature = "v3_22_26", feature = "dox"))] #[cfg_attr(feature = "dox", doc(cfg(feature = "v3_22_26")))] show_starred_location: Option, show_trash: Option, hadjustment: Option, hscrollbar_policy: Option, kinetic_scrolling: Option, #[cfg(any(feature = "v3_22", feature = "dox"))] #[cfg_attr(feature = "dox", doc(cfg(feature = "v3_22")))] max_content_height: Option, #[cfg(any(feature = "v3_22", feature = "dox"))] #[cfg_attr(feature = "dox", doc(cfg(feature = "v3_22")))] max_content_width: Option, min_content_height: Option, min_content_width: Option, overlay_scrolling: Option, #[cfg(any(feature = "v3_22", feature = "dox"))] #[cfg_attr(feature = "dox", doc(cfg(feature = "v3_22")))] propagate_natural_height: Option, #[cfg(any(feature = "v3_22", feature = "dox"))] #[cfg_attr(feature = "dox", doc(cfg(feature = "v3_22")))] propagate_natural_width: Option, shadow_type: Option, vadjustment: Option, vscrollbar_policy: Option, window_placement: Option, border_width: Option, child: Option, resize_mode: Option, app_paintable: Option, can_default: Option, can_focus: Option, events: Option, expand: Option, #[cfg(any(feature = "v3_20", feature = "dox"))] #[cfg_attr(feature = "dox", doc(cfg(feature = "v3_20")))] focus_on_click: Option, halign: Option, has_default: Option, has_focus: Option, has_tooltip: Option, height_request: Option, hexpand: Option, hexpand_set: Option, is_focus: Option, margin: Option, margin_bottom: Option, margin_end: Option, margin_start: Option, margin_top: Option, name: Option, no_show_all: Option, opacity: Option, parent: Option, receives_default: Option, sensitive: Option, tooltip_markup: Option, tooltip_text: Option, valign: Option, vexpand: Option, vexpand_set: Option, visible: Option, width_request: Option, } impl PlacesSidebarBuilder { // rustdoc-stripper-ignore-next /// Create a new [`PlacesSidebarBuilder`]. pub fn new() -> Self { Self::default() } // rustdoc-stripper-ignore-next /// Build the [`PlacesSidebar`]. pub fn build(self) -> PlacesSidebar { let mut properties: Vec<(&str, &dyn ToValue)> = vec![]; if let Some(ref local_only) = self.local_only { properties.push(("local-only", local_only)); } if let Some(ref location) = self.location { properties.push(("location", location)); } if let Some(ref open_flags) = self.open_flags { properties.push(("open-flags", open_flags)); } if let Some(ref populate_all) = self.populate_all { properties.push(("populate-all", populate_all)); } if let Some(ref show_connect_to_server) = self.show_connect_to_server { properties.push(("show-connect-to-server", show_connect_to_server)); } if let Some(ref show_desktop) = self.show_desktop { properties.push(("show-desktop", show_desktop)); } if let Some(ref show_enter_location) = self.show_enter_location { properties.push(("show-enter-location", show_enter_location)); } if let Some(ref show_other_locations) = self.show_other_locations { properties.push(("show-other-locations", show_other_locations)); } if let Some(ref show_recent) = self.show_recent { properties.push(("show-recent", show_recent)); } #[cfg(any(feature = "v3_22_26", feature = "dox"))] if let Some(ref show_starred_location) = self.show_starred_location { properties.push(("show-starred-location", show_starred_location)); } if let Some(ref show_trash) = self.show_trash { properties.push(("show-trash", show_trash)); } if let Some(ref hadjustment) = self.hadjustment { properties.push(("hadjustment", hadjustment)); } if let Some(ref hscrollbar_policy) = self.hscrollbar_policy { properties.push(("hscrollbar-policy", hscrollbar_policy)); } if let Some(ref kinetic_scrolling) = self.kinetic_scrolling { properties.push(("kinetic-scrolling", kinetic_scrolling)); } #[cfg(any(feature = "v3_22", feature = "dox"))] if let Some(ref max_content_height) = self.max_content_height { properties.push(("max-content-height", max_content_height)); } #[cfg(any(feature = "v3_22", feature = "dox"))] if let Some(ref max_content_width) = self.max_content_width { properties.push(("max-content-width", max_content_width)); } if let Some(ref min_content_height) = self.min_content_height { properties.push(("min-content-height", min_content_height)); } if let Some(ref min_content_width) = self.min_content_width { properties.push(("min-content-width", min_content_width)); } if let Some(ref overlay_scrolling) = self.overlay_scrolling { properties.push(("overlay-scrolling", overlay_scrolling)); } #[cfg(any(feature = "v3_22", feature = "dox"))] if let Some(ref propagate_natural_height) = self.propagate_natural_height { properties.push(("propagate-natural-height", propagate_natural_height)); } #[cfg(any(feature = "v3_22", feature = "dox"))] if let Some(ref propagate_natural_width) = self.propagate_natural_width { properties.push(("propagate-natural-width", propagate_natural_width)); } if let Some(ref shadow_type) = self.shadow_type { properties.push(("shadow-type", shadow_type)); } if let Some(ref vadjustment) = self.vadjustment { properties.push(("vadjustment", vadjustment)); } if let Some(ref vscrollbar_policy) = self.vscrollbar_policy { properties.push(("vscrollbar-policy", vscrollbar_policy)); } if let Some(ref window_placement) = self.window_placement { properties.push(("window-placement", window_placement)); } if let Some(ref border_width) = self.border_width { properties.push(("border-width", border_width)); } if let Some(ref child) = self.child { properties.push(("child", child)); } if let Some(ref resize_mode) = self.resize_mode { properties.push(("resize-mode", resize_mode)); } if let Some(ref app_paintable) = self.app_paintable { properties.push(("app-paintable", app_paintable)); } if let Some(ref can_default) = self.can_default { properties.push(("can-default", can_default)); } if let Some(ref can_focus) = self.can_focus { properties.push(("can-focus", can_focus)); } if let Some(ref events) = self.events { properties.push(("events", events)); } if let Some(ref expand) = self.expand { properties.push(("expand", expand)); } #[cfg(any(feature = "v3_20", feature = "dox"))] if let Some(ref focus_on_click) = self.focus_on_click { properties.push(("focus-on-click", focus_on_click)); } if let Some(ref halign) = self.halign { properties.push(("halign", halign)); } if let Some(ref has_default) = self.has_default { properties.push(("has-default", has_default)); } if let Some(ref has_focus) = self.has_focus { properties.push(("has-focus", has_focus)); } if let Some(ref has_tooltip) = self.has_tooltip { properties.push(("has-tooltip", has_tooltip)); } if let Some(ref height_request) = self.height_request { properties.push(("height-request", height_request)); } if let Some(ref hexpand) = self.hexpand { properties.push(("hexpand", hexpand)); } if let Some(ref hexpand_set) = self.hexpand_set { properties.push(("hexpand-set", hexpand_set)); } if let Some(ref is_focus) = self.is_focus { properties.push(("is-focus", is_focus)); } if let Some(ref margin) = self.margin { properties.push(("margin", margin)); } if let Some(ref margin_bottom) = self.margin_bottom { properties.push(("margin-bottom", margin_bottom)); } if let Some(ref margin_end) = self.margin_end { properties.push(("margin-end", margin_end)); } if let Some(ref margin_start) = self.margin_start { properties.push(("margin-start", margin_start)); } if let Some(ref margin_top) = self.margin_top { properties.push(("margin-top", margin_top)); } if let Some(ref name) = self.name { properties.push(("name", name)); } if let Some(ref no_show_all) = self.no_show_all { properties.push(("no-show-all", no_show_all)); } if let Some(ref opacity) = self.opacity { properties.push(("opacity", opacity)); } if let Some(ref parent) = self.parent { properties.push(("parent", parent)); } if let Some(ref receives_default) = self.receives_default { properties.push(("receives-default", receives_default)); } if let Some(ref sensitive) = self.sensitive { properties.push(("sensitive", sensitive)); } if let Some(ref tooltip_markup) = self.tooltip_markup { properties.push(("tooltip-markup", tooltip_markup)); } if let Some(ref tooltip_text) = self.tooltip_text { properties.push(("tooltip-text", tooltip_text)); } if let Some(ref valign) = self.valign { properties.push(("valign", valign)); } if let Some(ref vexpand) = self.vexpand { properties.push(("vexpand", vexpand)); } if let Some(ref vexpand_set) = self.vexpand_set { properties.push(("vexpand-set", vexpand_set)); } if let Some(ref visible) = self.visible { properties.push(("visible", visible)); } if let Some(ref width_request) = self.width_request { properties.push(("width-request", width_request)); } glib::Object::new::(&properties) .expect("Failed to create an instance of PlacesSidebar") } pub fn local_only(mut self, local_only: bool) -> Self { self.local_only = Some(local_only); self } pub fn location>(mut self, location: &P) -> Self { self.location = Some(location.clone().upcast()); self } pub fn open_flags(mut self, open_flags: PlacesOpenFlags) -> Self { self.open_flags = Some(open_flags); self } pub fn populate_all(mut self, populate_all: bool) -> Self { self.populate_all = Some(populate_all); self } pub fn show_connect_to_server(mut self, show_connect_to_server: bool) -> Self { self.show_connect_to_server = Some(show_connect_to_server); self } pub fn show_desktop(mut self, show_desktop: bool) -> Self { self.show_desktop = Some(show_desktop); self } pub fn show_enter_location(mut self, show_enter_location: bool) -> Self { self.show_enter_location = Some(show_enter_location); self } pub fn show_other_locations(mut self, show_other_locations: bool) -> Self { self.show_other_locations = Some(show_other_locations); self } pub fn show_recent(mut self, show_recent: bool) -> Self { self.show_recent = Some(show_recent); self } #[cfg(any(feature = "v3_22_26", feature = "dox"))] #[cfg_attr(feature = "dox", doc(cfg(feature = "v3_22_26")))] pub fn show_starred_location(mut self, show_starred_location: bool) -> Self { self.show_starred_location = Some(show_starred_location); self } pub fn show_trash(mut self, show_trash: bool) -> Self { self.show_trash = Some(show_trash); self } pub fn hadjustment>(mut self, hadjustment: &P) -> Self { self.hadjustment = Some(hadjustment.clone().upcast()); self } pub fn hscrollbar_policy(mut self, hscrollbar_policy: PolicyType) -> Self { self.hscrollbar_policy = Some(hscrollbar_policy); self } pub fn kinetic_scrolling(mut self, kinetic_scrolling: bool) -> Self { self.kinetic_scrolling = Some(kinetic_scrolling); self } #[cfg(any(feature = "v3_22", feature = "dox"))] #[cfg_attr(feature = "dox", doc(cfg(feature = "v3_22")))] pub fn max_content_height(mut self, max_content_height: i32) -> Self { self.max_content_height = Some(max_content_height); self } #[cfg(any(feature = "v3_22", feature = "dox"))] #[cfg_attr(feature = "dox", doc(cfg(feature = "v3_22")))] pub fn max_content_width(mut self, max_content_width: i32) -> Self { self.max_content_width = Some(max_content_width); self } pub fn min_content_height(mut self, min_content_height: i32) -> Self { self.min_content_height = Some(min_content_height); self } pub fn min_content_width(mut self, min_content_width: i32) -> Self { self.min_content_width = Some(min_content_width); self } pub fn overlay_scrolling(mut self, overlay_scrolling: bool) -> Self { self.overlay_scrolling = Some(overlay_scrolling); self } #[cfg(any(feature = "v3_22", feature = "dox"))] #[cfg_attr(feature = "dox", doc(cfg(feature = "v3_22")))] pub fn propagate_natural_height(mut self, propagate_natural_height: bool) -> Self { self.propagate_natural_height = Some(propagate_natural_height); self } #[cfg(any(feature = "v3_22", feature = "dox"))] #[cfg_attr(feature = "dox", doc(cfg(feature = "v3_22")))] pub fn propagate_natural_width(mut self, propagate_natural_width: bool) -> Self { self.propagate_natural_width = Some(propagate_natural_width); self } pub fn shadow_type(mut self, shadow_type: ShadowType) -> Self { self.shadow_type = Some(shadow_type); self } pub fn vadjustment>(mut self, vadjustment: &P) -> Self { self.vadjustment = Some(vadjustment.clone().upcast()); self } pub fn vscrollbar_policy(mut self, vscrollbar_policy: PolicyType) -> Self { self.vscrollbar_policy = Some(vscrollbar_policy); self } pub fn window_placement(mut self, window_placement: CornerType) -> Self { self.window_placement = Some(window_placement); self } pub fn border_width(mut self, border_width: u32) -> Self { self.border_width = Some(border_width); self } pub fn child>(mut self, child: &P) -> Self { self.child = Some(child.clone().upcast()); self } pub fn resize_mode(mut self, resize_mode: ResizeMode) -> Self { self.resize_mode = Some(resize_mode); self } pub fn app_paintable(mut self, app_paintable: bool) -> Self { self.app_paintable = Some(app_paintable); self } pub fn can_default(mut self, can_default: bool) -> Self { self.can_default = Some(can_default); self } pub fn can_focus(mut self, can_focus: bool) -> Self { self.can_focus = Some(can_focus); self } pub fn events(mut self, events: gdk::EventMask) -> Self { self.events = Some(events); self } pub fn expand(mut self, expand: bool) -> Self { self.expand = Some(expand); self } #[cfg(any(feature = "v3_20", feature = "dox"))] #[cfg_attr(feature = "dox", doc(cfg(feature = "v3_20")))] pub fn focus_on_click(mut self, focus_on_click: bool) -> Self { self.focus_on_click = Some(focus_on_click); self } pub fn halign(mut self, halign: Align) -> Self { self.halign = Some(halign); self } pub fn has_default(mut self, has_default: bool) -> Self { self.has_default = Some(has_default); self } pub fn has_focus(mut self, has_focus: bool) -> Self { self.has_focus = Some(has_focus); self } pub fn has_tooltip(mut self, has_tooltip: bool) -> Self { self.has_tooltip = Some(has_tooltip); self } pub fn height_request(mut self, height_request: i32) -> Self { self.height_request = Some(height_request); self } pub fn hexpand(mut self, hexpand: bool) -> Self { self.hexpand = Some(hexpand); self } pub fn hexpand_set(mut self, hexpand_set: bool) -> Self { self.hexpand_set = Some(hexpand_set); self } pub fn is_focus(mut self, is_focus: bool) -> Self { self.is_focus = Some(is_focus); self } pub fn margin(mut self, margin: i32) -> Self { self.margin = Some(margin); self } pub fn margin_bottom(mut self, margin_bottom: i32) -> Self { self.margin_bottom = Some(margin_bottom); self } pub fn margin_end(mut self, margin_end: i32) -> Self { self.margin_end = Some(margin_end); self } pub fn margin_start(mut self, margin_start: i32) -> Self { self.margin_start = Some(margin_start); self } pub fn margin_top(mut self, margin_top: i32) -> Self { self.margin_top = Some(margin_top); self } pub fn name(mut self, name: &str) -> Self { self.name = Some(name.to_string()); self } pub fn no_show_all(mut self, no_show_all: bool) -> Self { self.no_show_all = Some(no_show_all); self } pub fn opacity(mut self, opacity: f64) -> Self { self.opacity = Some(opacity); self } pub fn parent>(mut self, parent: &P) -> Self { self.parent = Some(parent.clone().upcast()); self } pub fn receives_default(mut self, receives_default: bool) -> Self { self.receives_default = Some(receives_default); self } pub fn sensitive(mut self, sensitive: bool) -> Self { self.sensitive = Some(sensitive); self } pub fn tooltip_markup(mut self, tooltip_markup: &str) -> Self { self.tooltip_markup = Some(tooltip_markup.to_string()); self } pub fn tooltip_text(mut self, tooltip_text: &str) -> Self { self.tooltip_text = Some(tooltip_text.to_string()); self } pub fn valign(mut self, valign: Align) -> Self { self.valign = Some(valign); self } pub fn vexpand(mut self, vexpand: bool) -> Self { self.vexpand = Some(vexpand); self } pub fn vexpand_set(mut self, vexpand_set: bool) -> Self { self.vexpand_set = Some(vexpand_set); self } pub fn visible(mut self, visible: bool) -> Self { self.visible = Some(visible); self } pub fn width_request(mut self, width_request: i32) -> Self { self.width_request = Some(width_request); self } } impl fmt::Display for PlacesSidebar { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { f.write_str("PlacesSidebar") } }