]> www.fi.muni.cz Git - evince.git/blob - libdocument/ev-document-forms.c
cdefb46730d686d1c0f8c6e11d551102844a45b9
[evince.git] / libdocument / ev-document-forms.c
1 /* ev-document-forms.c
2  *  this file is part of evince, a gnome document viewer
3  * 
4  * Copyright (C) 2007 Carlos Garcia Campos <carlosgc@gnome.org>
5  *
6  * Evince is free software; you can redistribute it and/or modify it
7  * under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * Evince is distributed in the hope that it will be useful, but
12  * WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
19  */
20
21 #include "ev-document-forms.h"
22
23 GType
24 ev_document_forms_get_type (void)
25 {
26         static GType type = 0;
27
28         if (G_UNLIKELY (type == 0)) {
29                 const GTypeInfo our_info = {
30                         sizeof (EvDocumentFormsIface),
31                         NULL,
32                         NULL,
33                 };
34
35                 type = g_type_register_static (G_TYPE_INTERFACE,
36                                                "EvDocumentForms",
37                                                &our_info, (GTypeFlags)0);
38         }
39
40         return type;
41 }
42
43 GList *
44 ev_document_forms_get_form_fields (EvDocumentForms *document_forms,
45                                    gint             page)
46 {
47         EvDocumentFormsIface *iface = EV_DOCUMENT_FORMS_GET_IFACE (document_forms);
48
49         return iface->get_form_fields (document_forms, page);
50 }
51
52 gchar *
53 ev_document_forms_form_field_text_get_text (EvDocumentForms *document_forms, 
54                                             EvFormField     *field)
55 {
56         EvDocumentFormsIface *iface = EV_DOCUMENT_FORMS_GET_IFACE (document_forms);
57
58         return iface->form_field_text_get_text (document_forms, field);
59 }
60
61 void
62 ev_document_forms_form_field_text_set_text (EvDocumentForms *document_forms, 
63                                             EvFormField     *field, 
64                                             const gchar     *text)
65 {
66         EvDocumentFormsIface *iface = EV_DOCUMENT_FORMS_GET_IFACE (document_forms);
67
68         iface->form_field_text_set_text (document_forms, field, text);
69 }
70
71 gboolean
72 ev_document_forms_form_field_button_get_state (EvDocumentForms   *document_forms,
73                                                EvFormField       *field)
74 {
75         EvDocumentFormsIface *iface = EV_DOCUMENT_FORMS_GET_IFACE (document_forms);
76
77         return iface->form_field_button_get_state (document_forms, field);
78 }
79
80 void
81 ev_document_forms_form_field_button_set_state (EvDocumentForms   *document_forms, 
82                                                EvFormField       *field, 
83                                                gboolean           state)
84 {
85         EvDocumentFormsIface *iface = EV_DOCUMENT_FORMS_GET_IFACE (document_forms);
86
87         iface->form_field_button_set_state (document_forms, field, state);
88 }
89
90 gchar *
91 ev_document_forms_form_field_choice_get_item (EvDocumentForms   *document_forms, 
92                                               EvFormField       *field, 
93                                               gint               index)
94 {
95         EvDocumentFormsIface *iface = EV_DOCUMENT_FORMS_GET_IFACE (document_forms);
96
97         return iface->form_field_choice_get_item (document_forms, field, index);
98 }
99
100 gint
101 ev_document_forms_form_field_choice_get_n_items (EvDocumentForms   *document_forms, 
102                                                  EvFormField       *field)
103 {
104         EvDocumentFormsIface *iface = EV_DOCUMENT_FORMS_GET_IFACE (document_forms);
105
106         return iface->form_field_choice_get_n_items (document_forms, field);
107 }
108
109 gboolean
110 ev_document_forms_form_field_choice_is_item_selected (EvDocumentForms   *document_forms, 
111                                                       EvFormField       *field, 
112                                                       gint               index)
113 {
114         EvDocumentFormsIface *iface = EV_DOCUMENT_FORMS_GET_IFACE (document_forms);
115
116         return iface->form_field_choice_is_item_selected (document_forms, field, index);
117 }
118
119 void
120 ev_document_forms_form_field_choice_select_item (EvDocumentForms   *document_forms, 
121                                                  EvFormField       *field, 
122                                                  gint               index)
123 {
124         EvDocumentFormsIface *iface = EV_DOCUMENT_FORMS_GET_IFACE (document_forms);
125
126         iface->form_field_choice_select_item (document_forms, field, index);
127 }
128
129 void
130 ev_document_forms_form_field_choice_toggle_item (EvDocumentForms   *document_forms, 
131                                                  EvFormField       *field, 
132                                                  gint               index)
133 {
134         EvDocumentFormsIface *iface = EV_DOCUMENT_FORMS_GET_IFACE (document_forms);
135
136         iface->form_field_choice_toggle_item (document_forms, field, index);
137 }
138
139 void
140 ev_document_forms_form_field_choice_unselect_all (EvDocumentForms   *document_forms, 
141                                                   EvFormField       *field)
142 {
143         EvDocumentFormsIface *iface = EV_DOCUMENT_FORMS_GET_IFACE (document_forms);
144
145         iface->form_field_choice_unselect_all (document_forms, field);
146 }
147
148 void
149 ev_document_forms_form_field_choice_set_text (EvDocumentForms   *document_forms,
150                                               EvFormField       *field,
151                                               const gchar       *text)
152 {
153         EvDocumentFormsIface *iface = EV_DOCUMENT_FORMS_GET_IFACE (document_forms);
154
155         iface->form_field_choice_set_text (document_forms, field, text);
156 }
157
158 gchar *
159 ev_document_forms_form_field_choice_get_text (EvDocumentForms   *document_forms,
160                                               EvFormField       *field)
161 {
162         EvDocumentFormsIface *iface = EV_DOCUMENT_FORMS_GET_IFACE (document_forms);
163
164         return iface->form_field_choice_get_text (document_forms, field);
165 }