]> www.fi.muni.cz Git - evince.git/blob - libdocument/ev-document-security.c
Reorganize source tree.
[evince.git] / libdocument / ev-document-security.c
1 /* ev-document-links.h
2  *  this file is part of evince, a gnome document_links viewer
3  * 
4  * Copyright (C) 2004 Red Hat, Inc.
5  *
6  * Author:
7  *   Jonathan Blandford <jrb@alum.mit.edu>
8  *
9  * Evince is free software; you can redistribute it and/or modify it
10  * under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * Evince is distributed in the hope that it will be useful, but
15  * WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17  * General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
22  */
23
24 #include "config.h"
25
26 #include "ev-document-security.h"
27
28 GType
29 ev_document_security_get_type (void)
30 {
31         static GType type = 0;
32         
33         if (G_UNLIKELY (type == 0))
34         {
35                 const GTypeInfo our_info =
36                 {
37                         sizeof (EvDocumentSecurityIface),
38                         NULL,
39                         NULL,
40                 };
41
42                 type = g_type_register_static (G_TYPE_INTERFACE,
43                                                "EvDocumentSecurity",
44                                                &our_info, (GTypeFlags)0);
45         }
46
47         return type;
48 }
49
50 gboolean
51 ev_document_security_has_document_security (EvDocumentSecurity *document_security)
52 {
53         EvDocumentSecurityIface *iface = EV_DOCUMENT_SECURITY_GET_IFACE (document_security);
54         return iface->has_document_security (document_security);
55 }
56
57 void
58 ev_document_security_set_password (EvDocumentSecurity *document_security,
59                                    const char         *password)
60 {
61         EvDocumentSecurityIface *iface = EV_DOCUMENT_SECURITY_GET_IFACE (document_security);
62         iface->set_password (document_security, password);
63 }