gtkmm 4.17.0
|
Contains information found when looking up an entry of the recently used files list. More...
#include <gtkmm/recentinfo.h>
Public Member Functions | |
void | reference () const |
Increment the reference count for this object. | |
void | unreference () const |
Decrement the reference count for this object. | |
GtkRecentInfo * | gobj () |
Provides access to the underlying C instance. | |
const GtkRecentInfo * | gobj () const |
Provides access to the underlying C instance. | |
GtkRecentInfo * | gobj_copy () const |
Provides access to the underlying C instance. The caller is responsible for unrefing it. Use when directly setting fields in structs. | |
RecentInfo ()=delete | |
RecentInfo (const RecentInfo &)=delete | |
RecentInfo & | operator= (const RecentInfo &)=delete |
Glib::ustring | get_uri () const |
Gets the URI of the resource. | |
Glib::ustring | get_display_name () const |
Gets the name of the resource. | |
Glib::ustring | get_description () const |
Gets the (short) description of the resource. | |
Glib::ustring | get_mime_type () const |
Gets the MIME type of the resource. | |
Glib::DateTime | get_added () const |
Gets the time when the resource was added to the recently used resources list. | |
Glib::DateTime | get_modified () const |
Gets the time when the meta-data for the resource was last modified. | |
Glib::DateTime | get_visited () const |
Gets the time when the meta-data for the resource was last visited. | |
bool | get_private_hint () const |
Gets the value of the “private” flag. | |
Glib::RefPtr< Gio::AppInfo > | create_app_info (const Glib::ustring & app_name) |
Creates a Gio::AppInfo for the specified Gtk::RecentInfo | |
bool | get_application_info (const Glib::ustring & app_name, std::string & app_exec, guint &count, Glib::DateTime &stamp) const |
Gets the data regarding the application that has registered the resource pointed by info. | |
std::vector< Glib::ustring > | get_applications () const |
Retrieves the list of applications that have registered this resource. | |
Glib::ustring | last_application () const |
Gets the name of the last application that have registered the recently used resource represented by info. | |
bool | has_application (const Glib::ustring & app_name) const |
Checks whether an application registered this resource using app_name. | |
std::vector< Glib::ustring > | get_groups () const |
Returns all groups registered for the recently used item info. | |
bool | has_group (const Glib::ustring &group_name) const |
Checks whether group_name appears inside the groups registered for the recently used item info. | |
Glib::RefPtr< Gio::Icon > | get_gicon () |
Retrieves the icon associated to the resource MIME type. | |
Glib::RefPtr< const Gio::Icon > | get_gicon () const |
Retrieves the icon associated to the resource MIME type. | |
Glib::ustring | get_short_name () const |
Computes a valid UTF-8 string that can be used as the name of the item in a menu or list. | |
Glib::ustring | get_uri_display () const |
Gets a displayable version of the resource’s URI. | |
int | get_age () const |
Gets the number of days elapsed since the last update of the resource pointed by info. | |
bool | is_local () const |
Checks whether the resource is local or not by looking at the scheme of its URI. | |
bool | exists () const |
Checks whether the resource pointed by info still exists. | |
bool | equal (const Glib::RefPtr< const RecentInfo > &info_b) const |
Checks whether two Gtk::RecentInfo point to the same resource. | |
Protected Member Functions | |
void | operator delete (void *, std::size_t) |
Related Symbols | |
(Note that these are not member symbols.) | |
bool | operator== (const Glib::RefPtr< const RecentInfo > &lhs, const Glib::RefPtr< const RecentInfo > &rhs) |
bool | operator!= (const Glib::RefPtr< const RecentInfo > &lhs, const Glib::RefPtr< const RecentInfo > &rhs) |
Glib::RefPtr< Gtk::RecentInfo > | wrap (GtkRecentInfo *object, bool take_copy=false) |
A Glib::wrap() method for this object. | |
Contains information found when looking up an entry of the recently used files list.
|
delete |
|
delete |
Glib::RefPtr< Gio::AppInfo > Gtk::RecentInfo::create_app_info | ( | const Glib::ustring & | app_name | ) |
Creates a Gio::AppInfo
for the specified Gtk::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 Gio::AppInfo ; if nullptr is used then the default application for the MIME type is used. |
Gio::AppInfo
.Glib::Error |
bool Gtk::RecentInfo::equal | ( | const Glib::RefPtr< const RecentInfo > & | info_b | ) | const |
Checks whether two Gtk::RecentInfo
point to the same resource.
info_b | A Gtk::RecentInfo . |
true
if both Gtk::RecentInfo
point to the same resource, false
otherwise. bool Gtk::RecentInfo::exists | ( | ) | const |
Checks whether the resource pointed by info still exists.
At the moment this check is done only on resources pointing to local files.
true
if the resource exists. Glib::DateTime Gtk::RecentInfo::get_added | ( | ) | const |
Gets the time when the resource was added to the recently used resources list.
Glib::DateTime
for the time when the resource was added. int Gtk::RecentInfo::get_age | ( | ) | const |
Gets the number of days elapsed since the last update of the resource pointed by info.
bool Gtk::RecentInfo::get_application_info | ( | const Glib::ustring & | app_name, |
std::string & | app_exec, | ||
guint & | count, | ||
Glib::DateTime & | stamp | ||
) | const |
Gets the data regarding the application that has registered the resource pointed by info.
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. |
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. |
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 Gtk::RecentInfo
and should not be modified or freed. std::vector< Glib::ustring > Gtk::RecentInfo::get_applications | ( | ) | const |
Retrieves the list of applications that have registered this resource.
length | Return location for the length of the returned list. |
nullptr
-terminated array of strings. Glib::ustring Gtk::RecentInfo::get_description | ( | ) | const |
Gets the (short) description of the resource.
Glib::ustring Gtk::RecentInfo::get_display_name | ( | ) | const |
Gets the name of the resource.
If none has been defined, the basename of the resource is obtained.
Glib::RefPtr< Gio::Icon > Gtk::RecentInfo::get_gicon | ( | ) |
Retrieves the icon associated to the resource MIME type.
Gio::Icon
containing the icon. Glib::RefPtr< const Gio::Icon > Gtk::RecentInfo::get_gicon | ( | ) | const |
Retrieves the icon associated to the resource MIME type.
Gio::Icon
containing the icon. std::vector< Glib::ustring > Gtk::RecentInfo::get_groups | ( | ) | const |
Returns all groups registered for the recently used item info.
The array of returned group names will be nullptr
terminated, so length might optionally be nullptr
.
length | Return location for the number of groups returned. |
nullptr
terminated array of strings. Glib::ustring Gtk::RecentInfo::get_mime_type | ( | ) | const |
Gets the MIME type of the resource.
Glib::DateTime Gtk::RecentInfo::get_modified | ( | ) | const |
Gets the time when the meta-data for the resource was last modified.
Glib::DateTime
for the time when the resource was last modified. bool Gtk::RecentInfo::get_private_hint | ( | ) | const |
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.
true
if the private flag was found, false
otherwise. Glib::ustring Gtk::RecentInfo::get_short_name | ( | ) | const |
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”.
Glib::ustring Gtk::RecentInfo::get_uri | ( | ) | const |
Gets the URI of the resource.
Glib::ustring Gtk::RecentInfo::get_uri_display | ( | ) | const |
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 get_uri().
nullptr
. Glib::DateTime Gtk::RecentInfo::get_visited | ( | ) | const |
Gets the time when the meta-data for the resource was last visited.
Glib::DateTime
for the time when the resource was last visited. GtkRecentInfo * Gtk::RecentInfo::gobj | ( | ) |
Provides access to the underlying C instance.
const GtkRecentInfo * Gtk::RecentInfo::gobj | ( | ) | const |
Provides access to the underlying C instance.
GtkRecentInfo * Gtk::RecentInfo::gobj_copy | ( | ) | const |
Provides access to the underlying C instance. The caller is responsible for unrefing it. Use when directly setting fields in structs.
bool Gtk::RecentInfo::has_application | ( | const Glib::ustring & | app_name | ) | const |
Checks whether an application registered this resource using app_name.
app_name | A string containing an application name. |
true
if an application with name app_name was found, false
otherwise. bool Gtk::RecentInfo::has_group | ( | const Glib::ustring & | group_name | ) | const |
Checks whether group_name appears inside the groups registered for the recently used item info.
group_name | Name of a group. |
true
if the group was found. bool Gtk::RecentInfo::is_local | ( | ) | const |
Checks whether the resource is local or not by looking at the scheme of its URI.
true
if the resource is local. Glib::ustring Gtk::RecentInfo::last_application | ( | ) | const |
Gets the name of the last application that have registered the recently used resource represented by info.
|
delete |
void Gtk::RecentInfo::reference | ( | ) | const |
Increment the reference count for this object.
You should never need to do this manually - use the object via a RefPtr instead.
void Gtk::RecentInfo::unreference | ( | ) | const |
Decrement the reference count for this object.
You should never need to do this manually - use the object via a RefPtr instead.
|
related |
|
related |
|
related |
A Glib::wrap() method for this object.
object | The C instance. |
take_copy | False if the result should take ownership of the C instance. True if it should take a new copy or ref. |