Trait gtk::PlacesSidebarExt [] [src]

pub trait PlacesSidebarExt {
    fn get_local_only(&self) -> bool;
    fn get_open_flags(&self) -> PlacesOpenFlags;
    fn get_show_connect_to_server(&self) -> bool;
    fn get_show_desktop(&self) -> bool;
    fn get_show_enter_location(&self) -> bool;
    fn get_show_other_locations(&self) -> bool;
    fn get_show_recent(&self) -> bool;
    fn get_show_trash(&self) -> bool;
    fn set_drop_targets_visible(&self, visible: bool, context: &DragContext);
    fn set_local_only(&self, local_only: bool);
    fn set_open_flags(&self, flags: PlacesOpenFlags);
    fn set_show_connect_to_server(&self, show_connect_to_server: bool);
    fn set_show_desktop(&self, show_desktop: bool);
    fn set_show_enter_location(&self, show_enter_location: bool);
    fn set_show_other_locations(&self, show_other_locations: bool);
    fn set_show_recent(&self, show_recent: bool);
    fn set_show_trash(&self, show_trash: bool);
    fn get_property_local_only(&self) -> bool;
    fn set_property_local_only(&self, local_only: bool);
    fn get_property_open_flags(&self) -> PlacesOpenFlags;
    fn set_property_open_flags(&self, open_flags: PlacesOpenFlags);
    fn get_property_populate_all(&self) -> bool;
    fn set_property_populate_all(&self, populate_all: bool);
    fn set_property_show_connect_to_server(&self, show_connect_to_server: bool);
    fn get_property_show_desktop(&self) -> bool;
    fn set_property_show_desktop(&self, show_desktop: bool);
    fn get_property_show_enter_location(&self) -> bool;
    fn set_property_show_enter_location(&self, show_enter_location: bool);
    fn get_property_show_other_locations(&self) -> bool;
    fn set_property_show_other_locations(&self, show_other_locations: bool);
    fn get_property_show_recent(&self) -> bool;
    fn set_property_show_recent(&self, show_recent: bool);
    fn get_property_show_trash(&self) -> bool;
    fn set_property_show_trash(&self, show_trash: bool);
    fn connect_drag_action_ask<F: Fn(&Self, i32) -> i32 + 'static>(
        &self,
        f: F
    ) -> u64; fn connect_show_connect_to_server<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> u64; fn connect_show_enter_location<F: Fn(&Self) + 'static>(&self, f: F) -> u64; fn connect_show_error_message<F: Fn(&Self, &str, &str) + 'static>(
        &self,
        f: F
    ) -> u64; fn connect_show_other_locations<F: Fn(&Self) + 'static>(&self, f: F) -> u64; fn connect_show_other_locations_with_flags<F: Fn(&Self, PlacesOpenFlags) + 'static>(
        &self,
        f: F
    ) -> u64; }

Required Methods

Implementors