Struct gtk::RecentInfo [−][src]
pub struct RecentInfo(_);
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
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
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.
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
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
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.
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.
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.
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.
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.
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()
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.
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.
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
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.
Trait Implementations
This method tests for self and other values to be equal, and is used
by ==. Read more
This method tests for !=.
This method returns an ordering between self and other values if one exists. Read more
This method tests less than (for self and other) and is used by the < operator. Read more
This method tests less than or equal to (for self and other) and is used by the <=
operator. Read more
This method tests greater than (for self and other) and is used by the > operator. Read more
Returns the type identifier of Self.
Auto Trait Implementations
impl RefUnwindSafe for RecentInfoimpl !Send for RecentInfoimpl !Sync for RecentInfoimpl Unpin for RecentInfoimpl UnwindSafe for RecentInfoBlanket Implementations
Mutably borrows from an owned value. Read more
impl<'a, T, C> FromValueOptional<'a> for T where
C: ValueTypeChecker<Error = ValueTypeMismatchOrNoneError>,
T: FromValue<'a, Checker = C>,