|
Evince
Evince is a document viewer capable of displaying multiple and single page document formats like PDF and Postscript.
|
Include dependency graph for ev-history.h:
This graph shows which files directly or indirectly include this file:Go to the source code of this file.
Data Structures | |
| struct | _EvHistory |
| struct | _EvHistoryClass |
Macros | |
| #define | EV_TYPE_HISTORY (ev_history_get_type ()) |
| #define | EV_HISTORY(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), EV_TYPE_HISTORY, EvHistory)) |
| #define | EV_HISTORY_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), EV_TYPE_HISTORY, EvHistoryClass)) |
| #define | EV_IS_HISTORY(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), EV_TYPE_HISTORY)) |
| #define | EV_IS_HISTORY_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((obj), EV_TYPE_HISTORY)) |
| #define | EV_HISTORY_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS((obj), EV_TYPE_HISTORY, EvHistoryClass)) |
Typedefs | |
| typedef struct _EvHistory | EvHistory |
| typedef struct _EvHistoryPrivate | EvHistoryPrivate |
| typedef struct _EvHistoryClass | EvHistoryClass |
Functions | |
| GType | ev_history_get_type (void) |
| EvHistory * | ev_history_new (EvDocumentModel *model) |
| void | ev_history_add_link (EvHistory *history, EvLink *link) |
| gboolean | ev_history_can_go_back (EvHistory *history) |
| void | ev_history_go_back (EvHistory *history) |
| gboolean | ev_history_can_go_forward (EvHistory *history) |
| void | ev_history_go_forward (EvHistory *history) |
| gboolean | ev_history_go_to_link (EvHistory *history, EvLink *link) |
| GList * | ev_history_get_back_list (EvHistory *history) |
| GList * | ev_history_get_forward_list (EvHistory *history) |
| void | ev_history_freeze (EvHistory *history) |
| void | ev_history_thaw (EvHistory *history) |
| gboolean | ev_history_is_frozen (EvHistory *history) |
| #define EV_HISTORY | ( | obj) | (G_TYPE_CHECK_INSTANCE_CAST ((obj), EV_TYPE_HISTORY, EvHistory)) |
Definition at line 30 of file ev-history.h.
| #define EV_HISTORY_CLASS | ( | klass) | (G_TYPE_CHECK_CLASS_CAST ((klass), EV_TYPE_HISTORY, EvHistoryClass)) |
Definition at line 31 of file ev-history.h.
| #define EV_HISTORY_GET_CLASS | ( | obj) | (G_TYPE_INSTANCE_GET_CLASS((obj), EV_TYPE_HISTORY, EvHistoryClass)) |
Definition at line 34 of file ev-history.h.
| #define EV_IS_HISTORY | ( | obj) | (G_TYPE_CHECK_INSTANCE_TYPE ((obj), EV_TYPE_HISTORY)) |
Definition at line 32 of file ev-history.h.
| #define EV_IS_HISTORY_CLASS | ( | klass) | (G_TYPE_CHECK_CLASS_TYPE ((obj), EV_TYPE_HISTORY)) |
Definition at line 33 of file ev-history.h.
| #define EV_TYPE_HISTORY (ev_history_get_type ()) |
Definition at line 29 of file ev-history.h.
| typedef struct _EvHistory EvHistory |
Definition at line 36 of file ev-history.h.
| typedef struct _EvHistoryClass EvHistoryClass |
Definition at line 38 of file ev-history.h.
| typedef struct _EvHistoryPrivate EvHistoryPrivate |
Definition at line 37 of file ev-history.h.
| gboolean ev_history_can_go_back | ( | EvHistory * | history) |
| gboolean ev_history_can_go_forward | ( | EvHistory * | history) |
| void ev_history_freeze | ( | EvHistory * | history) |
| GList* ev_history_get_back_list | ( | EvHistory * | history) |
ev_history_get_back_list: : a EvHistory
Returns: (transfer container): the back history
Definition at line 306 of file ev-history.c.
Here is the caller graph for this function:| GList* ev_history_get_forward_list | ( | EvHistory * | history) |
ev_history_get_forward_list: : a EvHistory
Returns: (transfer container): the forward history
Definition at line 332 of file ev-history.c.
Here is the caller graph for this function:| GType ev_history_get_type | ( | void | ) |
| void ev_history_go_back | ( | EvHistory * | history) |
| void ev_history_go_forward | ( | EvHistory * | history) |
| gboolean ev_history_is_frozen | ( | EvHistory * | history) |
| EvHistory* ev_history_new | ( | EvDocumentModel * | model) |
| void ev_history_thaw | ( | EvHistory * | history) |