GtkRecentManager {RGtk2} | R Documentation |
Managing Recently Used Files
gtkRecentManagerNew()
gtkRecentManagerGetDefault()
gtkRecentManagerGetForScreen(screen)
gtkRecentManagerGetForScreen(screen)
gtkRecentManagerSetScreen(object, screen)
gtkRecentManagerSetScreen(object, screen)
gtkRecentManagerAddItem(object, uri)
gtkRecentManagerAddFull(object, uri, recent.data)
gtkRecentManagerRemoveItem(object, uri, .errwarn = TRUE)
gtkRecentManagerLookupItem(object, uri, .errwarn = TRUE)
gtkRecentManagerHasItem(object, uri)
gtkRecentManagerMoveItem(object, uri, new.uri, .errwarn = TRUE)
gtkRecentManagerGetLimit(object)
gtkRecentManagerSetLimit(object, limit)
gtkRecentManagerGetItems(object)
gtkRecentManagerPurgeItems(object, .errwarn = TRUE)
gtkRecentInfoRef(object)
gtkRecentInfoUnref(object)
gtkRecentInfoGetUri(object)
gtkRecentInfoGetDisplayName(object)
gtkRecentInfoGetDescription(object)
gtkRecentInfoGetMimeType(object)
gtkRecentInfoGetAdded(object)
gtkRecentInfoGetModified(object)
gtkRecentInfoGetVisited(object)
gtkRecentInfoGetPrivateHint(object)
gtkRecentInfoGetApplicationInfo(object, app.name)
gtkRecentInfoGetApplications(object, length)
gtkRecentInfoLastApplication(object)
gtkRecentInfoGetGroups(object)
gtkRecentInfoHasGroup(object, group.name)
gtkRecentInfoHasApplication(object, app.name)
gtkRecentInfoGetIcon(object, size)
gtkRecentInfoGetShortName(object)
gtkRecentInfoGetUriDisplay(object)
gtkRecentInfoGetAge(object)
gtkRecentInfoIsLocal(object)
gtkRecentInfoExists(object)
gtkRecentInfoMatch(object, info.b)
gtkRecentManager()
GObject +----GtkRecentManager
GtkRecentManager
provides a facility for adding, removing and
looking up recently used files. Each recently used file is
identified by its URI, and has meta-data associated to it, like
the names and command lines of the applications that have
registered it, the number of time each application has registered
the same file, the mime type of the file and whether the file
should be displayed only by the applications that have
registered it.
The GtkRecentManager
acts like a database of all the recently
used files. You can create new GtkRecentManager
objects, but
it is more efficient to use the standard recent manager for
the GdkScreen
so that informations about the recently used
files is shared with other people using them. In case the
default screen is being used, adding a new recently used
file is as simple as:
manager <- gtkRecentManagerGetDefault() manager$addItem(file_uri)
manager <- gtkRecentManagerGetDefault() lookup <- manager$lookupItem(file_uri) if (lookup$error) warning("Could not find the file:", lookup$error$message) else use_info_object(lookup$retval)Recently used files are supported since GTK+ 2.10.
GtkRecentManager
gtkRecentManagerGetForScreen
and it will contain information about current recent manager
for that screen.
GtkRecentInfo
GtkRecentData
gtkRecentManagerAddFull
when
registering a recently used resource.
GtkRecentData
is a transparent-type.
displayName
NULL
;description
NULL
;mimeType
appName
appExec
groups
isPrivate
gtkRecentManager
is the equivalent of gtkRecentManagerNew
.
GtkRecentManagerError
not-found
invalid-uri
invalid-encoding
not-registered
read
write
unknown
The (recent.manager, user.data)
Since 2.10
recent.manager
GtkRecentManager
] the recent manageruser.data
filename
[character : Read / Write / Construct Only]The full path to the file to be used to store and read the recently used resources list
Default value: NULL Since 2.10
limit
[integer : Read / Write]
The maximum number of items to be returned by the
gtkRecentManagerGetItems
function.
Allowed values: >= -1 Default value: -1 Since 2.10
size
[integer : Read]The size of the recently used resources list.
Allowed values: >= -1 Default value: 0 Since 2.10
Derived by RGtkGen from GTK+ documentation
http://developer.gnome.org/doc/API/2.0/gtk/GtkRecentManager.html