Evince
Evince is a document viewer capable of displaying multiple and single page document formats like PDF and Postscript.
|
#include <glib-object.h>
#include "ev-document.h"
#include "ev-form-field.h"
#include "ev-mapping-list.h"
Go to the source code of this file.
Data Structures | |
struct | _EvDocumentFormsInterface |
Macros | |
#define | EV_TYPE_DOCUMENT_FORMS (ev_document_forms_get_type ()) |
#define | EV_DOCUMENT_FORMS(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), EV_TYPE_DOCUMENT_FORMS, EvDocumentForms)) |
#define | EV_DOCUMENT_FORMS_IFACE(k) (G_TYPE_CHECK_CLASS_CAST((k), EV_TYPE_DOCUMENT_FORMS, EvDocumentFormsInterface)) |
#define | EV_IS_DOCUMENT_FORMS(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), EV_TYPE_DOCUMENT_FORMS)) |
#define | EV_IS_DOCUMENT_FORMS_IFACE(k) (G_TYPE_CHECK_CLASS_TYPE ((k), EV_TYPE_DOCUMENT_FORMS)) |
#define | EV_DOCUMENT_FORMS_GET_IFACE(inst) (G_TYPE_INSTANCE_GET_INTERFACE ((inst), EV_TYPE_DOCUMENT_FORMS, EvDocumentFormsInterface)) |
Typedefs | |
typedef struct _EvDocumentForms | EvDocumentForms |
typedef struct _EvDocumentFormsInterface | EvDocumentFormsInterface |
#define EV_DOCUMENT_FORMS | ( | o) | (G_TYPE_CHECK_INSTANCE_CAST ((o), EV_TYPE_DOCUMENT_FORMS, EvDocumentForms)) |
Definition at line 37 of file ev-document-forms.h.
#define EV_DOCUMENT_FORMS_GET_IFACE | ( | inst) | (G_TYPE_INSTANCE_GET_INTERFACE ((inst), EV_TYPE_DOCUMENT_FORMS, EvDocumentFormsInterface)) |
Definition at line 41 of file ev-document-forms.h.
#define EV_DOCUMENT_FORMS_IFACE | ( | k) | (G_TYPE_CHECK_CLASS_CAST((k), EV_TYPE_DOCUMENT_FORMS, EvDocumentFormsInterface)) |
Definition at line 38 of file ev-document-forms.h.
#define EV_IS_DOCUMENT_FORMS | ( | o) | (G_TYPE_CHECK_INSTANCE_TYPE ((o), EV_TYPE_DOCUMENT_FORMS)) |
Definition at line 39 of file ev-document-forms.h.
#define EV_IS_DOCUMENT_FORMS_IFACE | ( | k) | (G_TYPE_CHECK_CLASS_TYPE ((k), EV_TYPE_DOCUMENT_FORMS)) |
Definition at line 40 of file ev-document-forms.h.
#define EV_TYPE_DOCUMENT_FORMS (ev_document_forms_get_type ()) |
Definition at line 36 of file ev-document-forms.h.
typedef struct _EvDocumentForms EvDocumentForms |
Definition at line 43 of file ev-document-forms.h.
typedef struct _EvDocumentFormsInterface EvDocumentFormsInterface |
Definition at line 44 of file ev-document-forms.h.
gboolean ev_document_forms_document_is_modified | ( | EvDocumentForms * | document_forms) |
gboolean ev_document_forms_form_field_button_get_state | ( | EvDocumentForms * | document_forms, |
EvFormField * | field | ||
) |
void ev_document_forms_form_field_button_set_state | ( | EvDocumentForms * | document_forms, |
EvFormField * | field, | ||
gboolean | state | ||
) |
gchar* ev_document_forms_form_field_choice_get_item | ( | EvDocumentForms * | document_forms, |
EvFormField * | field, | ||
gint | index | ||
) |
gint ev_document_forms_form_field_choice_get_n_items | ( | EvDocumentForms * | document_forms, |
EvFormField * | field | ||
) |
gchar* ev_document_forms_form_field_choice_get_text | ( | EvDocumentForms * | document_forms, |
EvFormField * | field | ||
) |
gboolean ev_document_forms_form_field_choice_is_item_selected | ( | EvDocumentForms * | document_forms, |
EvFormField * | field, | ||
gint | index | ||
) |
void ev_document_forms_form_field_choice_select_item | ( | EvDocumentForms * | document_forms, |
EvFormField * | field, | ||
gint | index | ||
) |
void ev_document_forms_form_field_choice_set_text | ( | EvDocumentForms * | document_forms, |
EvFormField * | field, | ||
const gchar * | text | ||
) |
void ev_document_forms_form_field_choice_toggle_item | ( | EvDocumentForms * | document_forms, |
EvFormField * | field, | ||
gint | index | ||
) |
Definition at line 126 of file ev-document-forms.c.
void ev_document_forms_form_field_choice_unselect_all | ( | EvDocumentForms * | document_forms, |
EvFormField * | field | ||
) |
gchar* ev_document_forms_form_field_text_get_text | ( | EvDocumentForms * | document_forms, |
EvFormField * | field | ||
) |
void ev_document_forms_form_field_text_set_text | ( | EvDocumentForms * | document_forms, |
EvFormField * | field, | ||
const gchar * | text | ||
) |
EvMappingList* ev_document_forms_get_form_fields | ( | EvDocumentForms * | document_forms, |
EvPage * | page | ||
) |
GType ev_document_forms_get_type | ( | void | ) |