Evince
Evince is a document viewer capable of displaying multiple and single page document formats like PDF and Postscript.
|
Go to the source code of this file.
Macros | |
#define | EV_TYPE_APPLICATION (ev_application_get_type ()) |
#define | EV_APPLICATION(object) (G_TYPE_CHECK_INSTANCE_CAST((object), EV_TYPE_APPLICATION, EvApplication)) |
#define | EV_APPLICATION_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass), EV_TYPE_APPLICATION, EvApplicationClass)) |
#define | EV_IS_APPLICATION(object) (G_TYPE_CHECK_INSTANCE_TYPE((object), EV_TYPE_APPLICATION)) |
#define | EV_IS_APPLICATION_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass), EV_TYPE_APPLICATION)) |
#define | EV_APPLICATION_GET_CLASS(object) (G_TYPE_INSTANCE_GET_CLASS((object), EV_TYPE_APPLICATION, EvApplicationClass)) |
#define | EV_APP ((EvApplication *) g_application_get_default ()) |
Typedefs | |
typedef typedefG_BEGIN_DECLS struct _EvApplication | EvApplication |
typedef struct _EvApplicationClass | EvApplicationClass |
Functions | |
GType | ev_application_get_type (void) G_GNUC_CONST |
EvApplication * | ev_application_new (void) |
void | ev_application_open_recent_view (EvApplication *application, GdkScreen *screen, guint32 timestamp) |
void | ev_application_open_uri_at_dest (EvApplication *application, const char *uri, GdkScreen *screen, EvLinkDest *dest, EvWindowRunMode mode, const gchar *search_string, guint32 timestamp) |
void | ev_application_open_uri_list (EvApplication *application, GSList *uri_list, GdkScreen *screen, guint32 timestamp) |
gboolean | ev_application_has_window (EvApplication *application) |
guint | ev_application_get_n_windows (EvApplication *application) |
const gchar * | ev_application_get_uri (EvApplication *application) |
GObject * | ev_application_get_media_keys (EvApplication *application) |
const gchar * | ev_application_get_dot_dir (EvApplication *application, gboolean create) |
void | ev_application_show_help (EvApplication *application, GdkScreen *screen, const char *topic) |
#define EV_APP ((EvApplication *) g_application_get_default ()) |
Definition at line 47 of file ev-application.h.
#define EV_APPLICATION | ( | object) | (G_TYPE_CHECK_INSTANCE_CAST((object), EV_TYPE_APPLICATION, EvApplication)) |
Definition at line 41 of file ev-application.h.
#define EV_APPLICATION_CLASS | ( | klass) | (G_TYPE_CHECK_CLASS_CAST((klass), EV_TYPE_APPLICATION, EvApplicationClass)) |
Definition at line 42 of file ev-application.h.
#define EV_APPLICATION_GET_CLASS | ( | object) | (G_TYPE_INSTANCE_GET_CLASS((object), EV_TYPE_APPLICATION, EvApplicationClass)) |
Definition at line 45 of file ev-application.h.
#define EV_IS_APPLICATION | ( | object) | (G_TYPE_CHECK_INSTANCE_TYPE((object), EV_TYPE_APPLICATION)) |
Definition at line 43 of file ev-application.h.
#define EV_IS_APPLICATION_CLASS | ( | klass) | (G_TYPE_CHECK_CLASS_TYPE((klass), EV_TYPE_APPLICATION)) |
Definition at line 44 of file ev-application.h.
#define EV_TYPE_APPLICATION (ev_application_get_type ()) |
Definition at line 40 of file ev-application.h.
typedef typedefG_BEGIN_DECLS struct _EvApplication EvApplication |
Definition at line 37 of file ev-application.h.
typedef struct _EvApplicationClass EvApplicationClass |
Definition at line 38 of file ev-application.h.
const gchar* ev_application_get_dot_dir | ( | EvApplication * | application, |
gboolean | create | ||
) |
GObject* ev_application_get_media_keys | ( | EvApplication * | application) |
ev_application_get_media_keys: : The instance of the application.
It gives you access to the media player keys handler object.
Returns: A EvMediaPlayerKeys.
Definition at line 1279 of file ev-application.c.
guint ev_application_get_n_windows | ( | EvApplication * | application) |
Definition at line 1248 of file ev-application.c.
GType ev_application_get_type | ( | void | ) |
const gchar* ev_application_get_uri | ( | EvApplication * | application) |
gboolean ev_application_has_window | ( | EvApplication * | application) |
EvApplication* ev_application_new | ( | void | ) |
ev_application_new:
Creates a new EvApplication instance.
Returns: (transfer full): a newly created EvApplication
Definition at line 100 of file ev-application.c.
void ev_application_open_recent_view | ( | EvApplication * | application, |
GdkScreen * | screen, | ||
guint32 | timestamp | ||
) |
ev_application_open_recent_view: : The instance of the application. : Current time value.
Creates a new window showing the recent view
Definition at line 665 of file ev-application.c.
void ev_application_open_uri_at_dest | ( | EvApplication * | application, |
const char * | uri, | ||
GdkScreen * | screen, | ||
EvLinkDest * | dest, | ||
EvWindowRunMode | mode, | ||
const gchar * | search_string, | ||
guint32 | timestamp | ||
) |
void ev_application_open_uri_list | ( | EvApplication * | application, |
GSList * | uri_list, | ||
GdkScreen * | screen, | ||
guint32 | timestamp | ||
) |
void ev_application_show_help | ( | EvApplication * | application, |
GdkScreen * | screen, | ||
const char * | topic | ||
) |
ev_application_show_help: : the EvApplication : (allow-none): a #GdkScreen, or NULL to use the default screen : (allow-none): the help topic, or NULL to show the index
Launches the help viewer on to show the evince help. If is NULL, shows the help index; otherwise the topic.
Definition at line 1308 of file ev-application.c.