1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
|
/*
* Copyright (C) 2003 Marco Pesenti Gritti
* Copyright (C) 2003 Christian Persch
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2, or (at your option)
* any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*
* $Id$
*/
#ifndef EPHY_PERMISSION_MANAGER_H
#define EPHY_PERMISSION_MANAGER_H
#include <glib-object.h>
#include <glib.h>
G_BEGIN_DECLS
#define EPHY_TYPE_PERMISSION_MANAGER (ephy_permission_manager_get_type ())
#define EPHY_PERMISSION_MANAGER(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), EPHY_TYPE_PERMISSION_MANAGER, EphyPermissionManager))
#define EPHY_PERMISSION_MANAGER_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), EPHY_TYPE_PERMISSION_MANAGER, EphyPermissionManagerClass))
#define EPHY_IS_PERMISSION_MANAGER(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), EPHY_TYPE_PERMISSION_MANAGER))
#define EPHY_IS_PERMISSION_MANAGER_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), EPHY_TYPE_PERMISSION_MANAGER))
#define EPHY_PERMISSION_MANAGER_GET_IFACE(inst) (G_TYPE_INSTANCE_GET_INTERFACE ((inst), EPHY_TYPE_PERMISSION_MANAGER, EphyPermissionManagerIFace))
#define EPHY_TYPE_PERMISSION_INFO (ephy_permission_info_get_type ())
typedef struct EphyPermissionManager EphyPermissionManager;
typedef struct EphyPermissionManagerIFace EphyPermissionManagerIFace;
typedef enum
{
EPT_COOKIE,
EPT_IMAGE,
EPT_POPUP
} EphyPermissionType;
typedef struct
{
char *host;
EphyPermissionType type;
gboolean allowed;
} EphyPermissionInfo;
struct EphyPermissionManagerIFace
{
GTypeInterface base_iface;
/* Signals */
void (* added) (EphyPermissionManager *manager,
EphyPermissionInfo *info);
void (* changed) (EphyPermissionManager *manager,
EphyPermissionInfo *info);
void (* deleted) (EphyPermissionManager *manager,
EphyPermissionInfo *info);
void (* cleared) (EphyPermissionManager *manager);
/* Methods */
void (* add) (EphyPermissionManager *manager,
const char *host,
EphyPermissionType type,
gboolean allow);
void (* remove) (EphyPermissionManager *manager,
const char *host,
EphyPermissionType type);
void (* clear) (EphyPermissionManager *manager);
gboolean (* test) (EphyPermissionManager *manager,
const char *host,
EphyPermissionType type);
GList * (* list) (EphyPermissionManager *manager,
EphyPermissionType type);
};
/* EphyPermissionInfo */
GType ephy_permission_info_get_type (void);
EphyPermissionInfo *ephy_permission_info_new (const char *host,
EphyPermissionType type,
gboolean allowed);
EphyPermissionInfo *ephy_permission_info_copy (const EphyPermissionInfo *info);
void ephy_permission_info_free (EphyPermissionInfo *info);
/* EphyPermissionManager */
GType ephy_permission_manager_get_type (void);
void ephy_permission_manager_add (EphyPermissionManager *manager,
const char *host,
EphyPermissionType type,
gboolean allow);
void ephy_permission_manager_remove (EphyPermissionManager *manager,
const char *host,
EphyPermissionType type);
void ephy_permission_manager_clear (EphyPermissionManager *manager);
gboolean ephy_permission_manager_test (EphyPermissionManager *manager,
const char *host,
EphyPermissionType type);
GList * ephy_permission_manager_list (EphyPermissionManager *manager,
EphyPermissionType type);
G_END_DECLS
#endif
|