Struct

GtkRecentFilterInfo

Description [src]

struct GtkRecentFilterInfo {
  GtkRecentFilterFlags contains;
  const gchar* uri;
  const gchar* display_name;
  const gchar* mime_type;
  gchar* applications[];
  gchar* groups[];
  gint age;
}

A GtkRecentFilterInfo struct is used to pass information about the tested file to gtk_recent_filter_filter().

Structure members
contains: GtkRecentFilterFlags

GtkRecentFilterFlags to indicate which fields are set.

uri: const gchar*

The URI of the file being tested.

display_name: const gchar*

The string that will be used to display the file in the recent chooser.

mime_type: const gchar*

MIME type of the file.

applications: gchar*

The list of applications that have registered the file.

groups: gchar*

The groups to which the file belongs to.

age: gint

The number of days elapsed since the file has been registered.