pub struct RecentInfo { /* private fields */ }Expand description
RecentInfo-struct contains private data only, and should
be accessed using the provided API.
RecentInfo constains all the meta-data
associated with an entry 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 gio::AppInfo for the specified RecentInfo
§app_name
the name of the application that should
be mapped to a gio::AppInfo; if None is used then the default
application for the MIME type is used
§Returns
the newly created gio::AppInfo, or None.
In case of error, error will be set either with a
GTK_RECENT_MANAGER_ERROR or a G_IO_ERROR
Sourcepub fn added(&self) -> c_long
pub fn added(&self) -> c_long
Gets the timestamp (seconds from system’s Epoch) when the resource was added to the recently used resources list.
§Returns
the number of seconds elapsed from system’s Epoch when the resource was added to the list, or -1 on failure.
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, c_long)>
pub fn application_info(&self, app_name: &str) -> Option<(GString, u32, c_long)>
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
§time_
return location for the timestamp this item was last registered for this application
Sourcepub fn applications(&self) -> Vec<GString>
pub fn applications(&self) -> Vec<GString>
Sourcepub fn description(&self) -> Option<GString>
pub fn description(&self) -> Option<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) -> Option<GString>
pub fn display_name(&self) -> Option<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 icon(&self, size: i32) -> Option<Pixbuf>
pub fn icon(&self, size: i32) -> Option<Pixbuf>
Retrieves the icon of size size associated to the resource MIME type.
§size
the size of the icon in pixels
§Returns
a gdk_pixbuf::Pixbuf containing the icon,
or None. Use g_object_unref() when finished using the icon.
Sourcepub fn mime_type(&self) -> Option<GString>
pub fn mime_type(&self) -> Option<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) -> c_long
pub fn modified(&self) -> c_long
Gets the timestamp (seconds from system’s Epoch) when the meta-data for the resource was last modified.
§Returns
the number of seconds elapsed from system’s Epoch when the resource was last modified, or -1 on failure.
Sourcepub fn is_private_hint(&self) -> bool
pub fn is_private_hint(&self) -> bool
Sourcepub fn short_name(&self) -> Option<GString>
pub fn short_name(&self) -> Option<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) -> Option<GString>
pub fn uri(&self) -> Option<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) -> c_long
pub fn visited(&self) -> c_long
Gets the timestamp (seconds from system’s Epoch) when the meta-data for the resource was last visited.
§Returns
the number of seconds elapsed from system’s Epoch when the resource was last visited, or -1 on failure.
Sourcepub fn has_application(&self, app_name: &str) -> bool
pub fn has_application(&self, app_name: &str) -> bool
Sourcepub fn last_application(&self) -> Option<GString>
pub fn last_application(&self) -> Option<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
impl Eq 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
Source§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 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Source§impl PartialEq for RecentInfo
impl PartialEq for RecentInfo
Source§impl PartialOrd for RecentInfo
impl PartialOrd for RecentInfo
Source§impl StaticType for RecentInfo
impl StaticType for RecentInfo
Source§fn static_type() -> Type
fn static_type() -> Type
Self.