Struct gtk4::RecentInfo

source ·
pub struct RecentInfo { /* private fields */ }
Expand description

RecentInfo contains the metadata associated with an item in the recently used files list.

Implementations§

source§

impl RecentInfo

source

pub fn as_ptr(&self) -> *mut GtkRecentInfo

Return the inner pointer to the underlying C value.

source

pub unsafe fn from_glib_ptr_borrow<'a>( ptr: *const *const GtkRecentInfo ) -> &'a Self

Borrows the underlying C value.

source§

impl RecentInfo

source

pub fn create_app_info( &self, app_name: Option<&str> ) -> Result<Option<AppInfo>, Error>

Creates a GAppInfo for the specified RecentInfo

In case of error, @error will be set either with a GTK_RECENT_MANAGER_ERROR or a G_IO_ERROR

§app_name

the name of the application that should be mapped to a GAppInfo; if None is used then the default application for the MIME type is used

§Returns

the newly created GAppInfo

source

pub fn exists(&self) -> bool

Checks whether the resource pointed by @self still exists. At the moment this check is done only on resources pointing to local files.

§Returns

true if the resource exists

source

pub fn added(&self) -> DateTime

Gets the time when the resource was added to the recently used resources list.

§Returns

a GDateTime for the time when the resource was added

source

pub fn age(&self) -> i32

Gets the number of days elapsed since the last update of the resource pointed by @self.

§Returns

a positive integer containing the number of days elapsed since the time this resource was last modified

source

pub fn application_info( &self, app_name: &str ) -> Option<(GString, u32, DateTime)>

Gets the data regarding the application that has registered the resource pointed by @self.

If the command line contains any escape characters defined inside the storage specification, they will be expanded.

§app_name

the name of the application that has registered this item

§Returns

true if an application with @app_name has registered this resource inside the recently used list, or false otherwise. The @app_exec string is owned by the RecentInfo and should not be modified or freed

§app_exec

return location for the string containing the command line

§count

return location for the number of times this item was registered

§stamp

return location for the time this item was last registered for this application

source

pub fn applications(&self) -> Vec<GString>

Retrieves the list of applications that have registered this resource.

§Returns

a newly allocated None-terminated array of strings. Use g_strfreev() to free it.

source

pub fn description(&self) -> GString

Gets the (short) description of the resource.

§Returns

the description of the resource. The returned string is owned by the recent manager, and should not be freed.

source

pub fn display_name(&self) -> GString

Gets the name of the resource.

If none has been defined, the basename of the resource is obtained.

§Returns

the display name of the resource. The returned string is owned by the recent manager, and should not be freed.

source

pub fn gicon(&self) -> Option<Icon>

Retrieves the icon associated to the resource MIME type.

§Returns

a GIcon containing the icon

source

pub fn groups(&self) -> Vec<GString>

Returns all groups registered for the recently used item @self.

The array of returned group names will be None terminated, so length might optionally be None.

§Returns

a newly allocated None terminated array of strings. Use g_strfreev() to free it.

source

pub fn mime_type(&self) -> GString

Gets the MIME type of the resource.

§Returns

the MIME type of the resource. The returned string is owned by the recent manager, and should not be freed.

source

pub fn modified(&self) -> DateTime

Gets the time when the meta-data for the resource was last modified.

§Returns

a GDateTime for the time when the resource was last modified

source

pub fn is_private_hint(&self) -> bool

Gets the value of the “private” flag.

Resources in the recently used list that have this flag set to true should only be displayed by the applications that have registered them.

§Returns

true if the private flag was found, false otherwise

source

pub fn short_name(&self) -> GString

Computes a valid UTF-8 string that can be used as the name of the item in a menu or list.

For example, calling this function on an item that refers to “file:///foo/bar.txt” will yield “bar.txt”.

§Returns

A newly-allocated string in UTF-8 encoding free it with g_free()

source

pub fn uri(&self) -> GString

Gets the URI of the resource.

§Returns

the URI of the resource. The returned string is owned by the recent manager, and should not be freed.

source

pub fn uri_display(&self) -> Option<GString>

Gets a displayable version of the resource’s URI.

If the resource is local, it returns a local path; if the resource is not local, it returns the UTF-8 encoded content of uri().

§Returns

a newly allocated UTF-8 string containing the resource’s URI or None. Use g_free() when done using it.

source

pub fn visited(&self) -> DateTime

Gets the time when the meta-data for the resource was last visited.

§Returns

a GDateTime for the time when the resource was last visited

source

pub fn has_application(&self, app_name: &str) -> bool

Checks whether an application registered this resource using @app_name.

§app_name

a string containing an application name

§Returns

true if an application with name @app_name was found, false otherwise

source

pub fn has_group(&self, group_name: &str) -> bool

Checks whether @group_name appears inside the groups registered for the recently used item @self.

§group_name

name of a group

§Returns

true if the group was found

source

pub fn is_local(&self) -> bool

Checks whether the resource is local or not by looking at the scheme of its URI.

§Returns

true if the resource is local

source

pub fn last_application(&self) -> GString

Gets the name of the last application that have registered the recently used resource represented by @self.

§Returns

an application name. Use g_free() to free it.

source

pub fn match_(&self, info_b: &RecentInfo) -> bool

Trait Implementations§

source§

impl Clone for RecentInfo

source§

fn clone(&self) -> Self

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for RecentInfo

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl From<RecentInfo> for Value

source§

fn from(s: RecentInfo) -> Self

Converts to this type from the input type.
source§

impl HasParamSpec for RecentInfo

§

type ParamSpec = ParamSpecBoxed

§

type SetValue = RecentInfo

Preferred value to be used as setter for the associated ParamSpec.
§

type BuilderFn = fn(_: &str) -> ParamSpecBoxedBuilder<'_, RecentInfo>

source§

fn param_spec_builder() -> Self::BuilderFn

source§

impl Hash for RecentInfo

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl Ord for RecentInfo

source§

fn cmp(&self, other: &RecentInfo) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · source§

fn max(self, other: Self) -> Self
where Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · source§

fn min(self, other: Self) -> Self
where Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · source§

fn clamp(self, min: Self, max: Self) -> Self
where Self: Sized + PartialOrd,

Restrict a value to a certain interval. Read more
source§

impl PartialEq for RecentInfo

source§

fn eq(&self, other: &RecentInfo) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl PartialOrd for RecentInfo

source§

fn partial_cmp(&self, other: &RecentInfo) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · source§

fn lt(&self, other: &Rhs) -> bool

This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · source§

fn le(&self, other: &Rhs) -> bool

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · source§

fn gt(&self, other: &Rhs) -> bool

This method tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · source§

fn ge(&self, other: &Rhs) -> bool

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
source§

impl StaticType for RecentInfo

source§

fn static_type() -> Type

Returns the type identifier of Self.
source§

impl Eq for RecentInfo

source§

impl StructuralPartialEq for RecentInfo

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> FromGlibContainerAsVec<<T as GlibPtrDefault>::GlibType, *const GList> for T

source§

unsafe fn from_glib_none_num_as_vec(ptr: *const GList, num: usize) -> Vec<T>

source§

unsafe fn from_glib_container_num_as_vec(_: *const GList, _: usize) -> Vec<T>

source§

unsafe fn from_glib_full_num_as_vec(_: *const GList, _: usize) -> Vec<T>

source§

impl<T> FromGlibContainerAsVec<<T as GlibPtrDefault>::GlibType, *const GPtrArray> for T

source§

unsafe fn from_glib_none_num_as_vec(ptr: *const GPtrArray, num: usize) -> Vec<T>

source§

unsafe fn from_glib_container_num_as_vec( _: *const GPtrArray, _: usize ) -> Vec<T>

source§

unsafe fn from_glib_full_num_as_vec(_: *const GPtrArray, _: usize) -> Vec<T>

source§

impl<T> FromGlibContainerAsVec<<T as GlibPtrDefault>::GlibType, *const GSList> for T

source§

unsafe fn from_glib_none_num_as_vec(ptr: *const GSList, num: usize) -> Vec<T>

source§

unsafe fn from_glib_container_num_as_vec(_: *const GSList, _: usize) -> Vec<T>

source§

unsafe fn from_glib_full_num_as_vec(_: *const GSList, _: usize) -> Vec<T>

source§

impl<T> FromGlibContainerAsVec<<T as GlibPtrDefault>::GlibType, *mut GList> for T

source§

unsafe fn from_glib_none_num_as_vec(ptr: *mut GList, num: usize) -> Vec<T>

source§

unsafe fn from_glib_container_num_as_vec(ptr: *mut GList, num: usize) -> Vec<T>

source§

unsafe fn from_glib_full_num_as_vec(ptr: *mut GList, num: usize) -> Vec<T>

source§

impl<T> FromGlibContainerAsVec<<T as GlibPtrDefault>::GlibType, *mut GPtrArray> for T

source§

unsafe fn from_glib_none_num_as_vec(ptr: *mut GPtrArray, num: usize) -> Vec<T>

source§

unsafe fn from_glib_container_num_as_vec( ptr: *mut GPtrArray, num: usize ) -> Vec<T>

source§

unsafe fn from_glib_full_num_as_vec(ptr: *mut GPtrArray, num: usize) -> Vec<T>

source§

impl<T> FromGlibContainerAsVec<<T as GlibPtrDefault>::GlibType, *mut GSList> for T

source§

unsafe fn from_glib_none_num_as_vec(ptr: *mut GSList, num: usize) -> Vec<T>

source§

unsafe fn from_glib_container_num_as_vec(ptr: *mut GSList, num: usize) -> Vec<T>

source§

unsafe fn from_glib_full_num_as_vec(ptr: *mut GSList, num: usize) -> Vec<T>

source§

impl<T> FromGlibPtrArrayContainerAsVec<<T as GlibPtrDefault>::GlibType, *const GList> for T

source§

unsafe fn from_glib_none_as_vec(ptr: *const GList) -> Vec<T>

source§

unsafe fn from_glib_container_as_vec(_: *const GList) -> Vec<T>

source§

unsafe fn from_glib_full_as_vec(_: *const GList) -> Vec<T>

source§

impl<T> FromGlibPtrArrayContainerAsVec<<T as GlibPtrDefault>::GlibType, *const GPtrArray> for T

source§

unsafe fn from_glib_none_as_vec(ptr: *const GPtrArray) -> Vec<T>

source§

unsafe fn from_glib_container_as_vec(_: *const GPtrArray) -> Vec<T>

source§

unsafe fn from_glib_full_as_vec(_: *const GPtrArray) -> Vec<T>

source§

impl<T> FromGlibPtrArrayContainerAsVec<<T as GlibPtrDefault>::GlibType, *const GSList> for T

source§

unsafe fn from_glib_none_as_vec(ptr: *const GSList) -> Vec<T>

source§

unsafe fn from_glib_container_as_vec(_: *const GSList) -> Vec<T>

source§

unsafe fn from_glib_full_as_vec(_: *const GSList) -> Vec<T>

source§

impl<T> FromGlibPtrArrayContainerAsVec<<T as GlibPtrDefault>::GlibType, *mut GList> for T

source§

unsafe fn from_glib_none_as_vec(ptr: *mut GList) -> Vec<T>

source§

unsafe fn from_glib_container_as_vec(ptr: *mut GList) -> Vec<T>

source§

unsafe fn from_glib_full_as_vec(ptr: *mut GList) -> Vec<T>

source§

impl<T> FromGlibPtrArrayContainerAsVec<<T as GlibPtrDefault>::GlibType, *mut GPtrArray> for T

source§

unsafe fn from_glib_none_as_vec(ptr: *mut GPtrArray) -> Vec<T>

source§

unsafe fn from_glib_container_as_vec(ptr: *mut GPtrArray) -> Vec<T>

source§

unsafe fn from_glib_full_as_vec(ptr: *mut GPtrArray) -> Vec<T>

source§

impl<T> FromGlibPtrArrayContainerAsVec<<T as GlibPtrDefault>::GlibType, *mut GSList> for T

source§

unsafe fn from_glib_none_as_vec(ptr: *mut GSList) -> Vec<T>

source§

unsafe fn from_glib_container_as_vec(ptr: *mut GSList) -> Vec<T>

source§

unsafe fn from_glib_full_as_vec(ptr: *mut GSList) -> Vec<T>

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> IntoClosureReturnValue for T
where T: Into<Value>,

source§

impl<T> Property for T
where T: HasParamSpec,

§

type Value = T

source§

impl<T> PropertyGet for T
where T: HasParamSpec,

§

type Value = T

source§

fn get<R, F>(&self, f: F) -> R
where F: Fn(&<T as PropertyGet>::Value) -> R,

source§

impl<T> StaticTypeExt for T
where T: StaticType,

source§

fn ensure_type()

Ensures that the type has been registered with the type system.
source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T> TransparentType for T

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T> TryFromClosureReturnValue for T
where T: for<'a> FromValue<'a> + StaticType + 'static,

source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<'a, T, C, E> FromValueOptional<'a> for T
where T: FromValue<'a, Checker = C>, C: ValueTypeChecker<Error = ValueTypeMismatchOrNoneError<E>>, E: Error + Send + 'static,