Gtk::RecentInfo Class Reference
[RecentFiles]

Contains informations found when looking up an entry of the recently used files list. More...

List of all members.

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.
 operator bool () const
 Tests whether the RecentInfo is valid.
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.
time_t get_added () const
 Gets the timestamp (seconds from system's Epoch) when the resource was added to the recently used resources list.
time_t get_modified () const
 Gets the timestamp (seconds from system's Epoch) when the resource was last modified.
time_t get_visited () const
 Gets the timestamp (seconds from system's Epoch) when the resource was last visited.
bool get_private_hint () const
 Gets the value of the "private" flag.
bool get_application_info (const Glib::ustring& app_name, std::string& app_exec, guint&count, time_t& time_) const
 Gets the data regarding the application that has registered the resource pointed by info.
Glib::StringArrayHandle 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.
Glib::StringArrayHandle get_groups () const
 Returns all groups registered for the recently used item info.
bool has_group (const Glib::ustring& group) const
 Checks whether group_name appears inside the groups registered for the recently used item info.
Glib::RefPtr< Gdk::Pixbufget_icon (int size)
 Retrieves the icon of size size associated to the resource MIME type.
Glib::RefPtr< const Gdk::Pixbufget_icon (int size) const
 Retrieves the icon of size size 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 RecentInfo& b) const
 Checks whether two Gtk::RecentInfo structures point to the same resource.

Protected Member Functions

 RecentInfo ()
void operator delete (void*, size_t)

Related Functions

(Note that these are not member functions.)



Glib::RefPtr< Gtk::RecentInfowrap (GtkRecentInfo* object, bool take_copy=false)
 A Glib::wrap() method for this object.

Detailed Description

Contains informations found when looking up an entry of the recently used files list.

Since gtkmm 2.10:

Constructor & Destructor Documentation

Gtk::RecentInfo::RecentInfo (  )  [protected]

Member Function Documentation

bool Gtk::RecentInfo::equal ( const RecentInfo b  )  const

Checks whether two Gtk::RecentInfo structures point to the same resource.

Since gtkmm 2.10:
Parameters:
info_b A Gtk::RecentInfo.
Returns:
true if both Gtk::RecentInfo structures point to se 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.

Since gtkmm 2.10:
Returns:
true if the resource exists.
time_t Gtk::RecentInfo::get_added (  )  const

Gets the timestamp (seconds from system's Epoch) when the resource was added to the recently used resources list.

Since gtkmm 2.10:
Returns:
The number of seconds elapsed from system's Epoch when the resource was added to the list, or -1 on failure.
int Gtk::RecentInfo::get_age (  )  const

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

Since gtkmm 2.10:
Returns:
A positive integer containing the number of days elapsed since the time this resource was last modified.
bool Gtk::RecentInfo::get_application_info ( const Glib::ustring app_name,
std::string app_exec,
guint &  count,
time_t &  time_ 
) 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.

Since gtkmm 2.10:
Parameters:
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.
time Return location for the timestamp this item was last registered for this application.
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 Gtk::RecentInfo and should not be modified or freed.
Glib::StringArrayHandle Gtk::RecentInfo::get_applications (  )  const

Retrieves the list of applications that have registered this resource.

Since gtkmm 2.10:
Parameters:
length Return location for the length of the returned list.
Returns:
A newly allocated 0-terminated array of strings. Use Glib::strfreev() to free it.
Glib::ustring Gtk::RecentInfo::get_description (  )  const

Gets the (short) description of the resource.

Since gtkmm 2.10:
Returns:
The description of the resource. The returned string is owned by the recent manager, and should not be freed.
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.

Since gtkmm 2.10:
Returns:
The display name of the resource. The returned string is owned by the recent manager, and should not be freed.
Glib::StringArrayHandle Gtk::RecentInfo::get_groups (  )  const

Returns all groups registered for the recently used item info.

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

Since gtkmm 2.10:
Parameters:
length Return location for the number of groups returned.
Returns:
A newly allocated 0 terminated array of strings. Use Glib::strfreev() to free it.
Glib::RefPtr<const Gdk::Pixbuf> Gtk::RecentInfo::get_icon ( int  size  )  const

Retrieves the icon of size size associated to the resource MIME type.

Since gtkmm 2.10:
Parameters:
size The size of the icon in pixels.
Returns:
A Gdk::Pixbuf containing the icon, or 0. Use Glib::object_unref() when finished using the icon.
Glib::RefPtr<Gdk::Pixbuf> Gtk::RecentInfo::get_icon ( int  size  ) 

Retrieves the icon of size size associated to the resource MIME type.

Since gtkmm 2.10:
Parameters:
size The size of the icon in pixels.
Returns:
A Gdk::Pixbuf containing the icon, or 0. Use Glib::object_unref() when finished using the icon.
Glib::ustring Gtk::RecentInfo::get_mime_type (  )  const

Gets the MIME type of the resource.

Since gtkmm 2.10:
Returns:
The MIME type of the resource. The returned string is owned by the recent manager, and should not be freed.
time_t Gtk::RecentInfo::get_modified (  )  const

Gets the timestamp (seconds from system's Epoch) when the resource was last modified.

Since gtkmm 2.10:
Returns:
The number of seconds elapsed from system's Epoch when the resource was last modified, or -1 on failure.
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.

Since gtkmm 2.10:
Returns:
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".

Since gtkmm 2.10:
Returns:
A newly-allocated string in UTF-8 encoding; free it with Glib::free().
Glib::ustring Gtk::RecentInfo::get_uri (  )  const

Gets the URI of the resource.

Since gtkmm 2.10:
Returns:
The URI of the resource. The returned string is owned by the recent manager, and should not be freed.
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().

Since gtkmm 2.10:
Returns:
A newly allocated UTF-8 string containing the resource's URI or 0. Use Glib::free() when done using it.
time_t Gtk::RecentInfo::get_visited (  )  const

Gets the timestamp (seconds from system's Epoch) when the resource was last visited.

Since gtkmm 2.10:
Returns:
The number of seconds elapsed from system's Epoch when the resource was last visited, or -1 on failure.
const GtkRecentInfo* Gtk::RecentInfo::gobj (  )  const

Provides access to the underlying C instance.

GtkRecentInfo* Gtk::RecentInfo::gobj (  ) 

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.

Since gtkmm 2.10:
Parameters:
app_name A string containing an application name.
Returns:
true if an application with name app_name was found, false otherwise.
bool Gtk::RecentInfo::has_group ( const Glib::ustring group  )  const

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

Since gtkmm 2.10:
Parameters:
group_name Name of a group.
Returns:
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.

Since gtkmm 2.10:
Returns:
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.

Since gtkmm 2.10:
Returns:
An application name. Use Glib::free() to free it.
Gtk::RecentInfo::operator bool (  )  const

Tests whether the RecentInfo is valid.

void Gtk::RecentInfo::operator delete ( void *  ,
size_t   
) [protected]
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.


Friends And Related Function Documentation

Glib::RefPtr< Gtk::RecentInfo > wrap ( GtkRecentInfo *  object,
bool  take_copy = false 
) [related]

A Glib::wrap() method for this object.

Parameters:
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.
Returns:
A C++ instance that wraps this C instance.

The documentation for this class was generated from the following file:

Generated on Tue May 4 13:21:59 2010 for gtkmm by  doxygen 1.6.1