Struct gtk4::RecentInfo
source · #[repr(transparent)]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
impl RecentInfo
sourcepub fn as_ptr(&self) -> *mut GtkRecentInfo
pub fn as_ptr(&self) -> *mut GtkRecentInfo
Return the inner pointer to the underlying C value.
sourcepub unsafe fn from_glib_ptr_borrow<'a>(
ptr: *const *const GtkRecentInfo
) -> &'a Self
pub unsafe fn from_glib_ptr_borrow<'a>( ptr: *const *const GtkRecentInfo ) -> &'a Self
Borrows the underlying C value.
source§impl RecentInfo
impl RecentInfo
sourcepub fn create_app_info(
&self,
app_name: Option<&str>
) -> Result<Option<AppInfo>, Error>
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
sourcepub fn added(&self) -> DateTime
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
sourcepub fn age(&self) -> i32
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
sourcepub fn application_info(
&self,
app_name: &str
) -> Option<(GString, u32, DateTime)>
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
sourcepub fn applications(&self) -> Vec<GString>
pub fn applications(&self) -> Vec<GString>
sourcepub fn description(&self) -> GString
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.
sourcepub fn display_name(&self) -> GString
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.
sourcepub fn mime_type(&self) -> GString
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.
sourcepub fn modified(&self) -> DateTime
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
sourcepub fn is_private_hint(&self) -> bool
pub fn is_private_hint(&self) -> bool
sourcepub fn short_name(&self) -> GString
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()
sourcepub fn uri(&self) -> GString
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.
sourcepub fn uri_display(&self) -> Option<GString>
pub fn uri_display(&self) -> Option<GString>
sourcepub fn visited(&self) -> DateTime
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
sourcepub fn has_application(&self, app_name: &str) -> bool
pub fn has_application(&self, app_name: &str) -> bool
sourcepub fn has_group(&self, group_name: &str) -> bool
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
sourcepub fn last_application(&self) -> GString
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.
pub fn match_(&self, info_b: &RecentInfo) -> bool
Trait Implementations§
source§impl Clone for RecentInfo
impl Clone for RecentInfo
source§impl Debug for RecentInfo
impl Debug for RecentInfo
source§impl From<RecentInfo> for Value
impl From<RecentInfo> for Value
source§fn from(s: RecentInfo) -> Self
fn from(s: RecentInfo) -> Self
source§impl HasParamSpec for RecentInfo
impl HasParamSpec for RecentInfo
type ParamSpec = ParamSpecBoxed
§type SetValue = RecentInfo
type SetValue = RecentInfo
type BuilderFn = fn(_: &str) -> ParamSpecBoxedBuilder<'_, RecentInfo>
fn param_spec_builder() -> Self::BuilderFn
source§impl Hash for RecentInfo
impl Hash for RecentInfo
source§impl Ord for RecentInfo
impl Ord for RecentInfo
source§fn cmp(&self, other: &RecentInfo) -> Ordering
fn cmp(&self, other: &RecentInfo) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere Self: Sized,
source§impl PartialEq<RecentInfo> for RecentInfo
impl PartialEq<RecentInfo> for RecentInfo
source§fn eq(&self, other: &RecentInfo) -> bool
fn eq(&self, other: &RecentInfo) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd<RecentInfo> for RecentInfo
impl PartialOrd<RecentInfo> for RecentInfo
source§fn partial_cmp(&self, other: &RecentInfo) -> Option<Ordering>
fn partial_cmp(&self, other: &RecentInfo) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
self
and other
) and is used by the <=
operator. Read moresource§impl StaticType for RecentInfo
impl StaticType for RecentInfo
source§fn static_type() -> Type
fn static_type() -> Type
Self
.