diff options
author | Xan Lopez <xan@src.gnome.org> | 2008-12-12 19:44:53 +0800 |
---|---|---|
committer | Xan Lopez <xan@src.gnome.org> | 2008-12-12 19:44:53 +0800 |
commit | e3ee4502fee7f40dbbe06b8a7f90399e9b2f8938 (patch) | |
tree | 4b6f767ee011981831272bdefa31c0bb5291212b /embed/ephy-cookie-manager.h | |
parent | 666d79684f69b4ca1bc775dff0f157747c5e6204 (diff) | |
download | gsoc2013-epiphany-e3ee4502fee7f40dbbe06b8a7f90399e9b2f8938.tar gsoc2013-epiphany-e3ee4502fee7f40dbbe06b8a7f90399e9b2f8938.tar.gz gsoc2013-epiphany-e3ee4502fee7f40dbbe06b8a7f90399e9b2f8938.tar.bz2 gsoc2013-epiphany-e3ee4502fee7f40dbbe06b8a7f90399e9b2f8938.tar.lz gsoc2013-epiphany-e3ee4502fee7f40dbbe06b8a7f90399e9b2f8938.tar.xz gsoc2013-epiphany-e3ee4502fee7f40dbbe06b8a7f90399e9b2f8938.tar.zst gsoc2013-epiphany-e3ee4502fee7f40dbbe06b8a7f90399e9b2f8938.zip |
And re-add ephy-cookie-manager too.
svn path=/trunk/; revision=8635
Diffstat (limited to 'embed/ephy-cookie-manager.h')
-rw-r--r-- | embed/ephy-cookie-manager.h | 105 |
1 files changed, 105 insertions, 0 deletions
diff --git a/embed/ephy-cookie-manager.h b/embed/ephy-cookie-manager.h new file mode 100644 index 000000000..58d8788bd --- /dev/null +++ b/embed/ephy-cookie-manager.h @@ -0,0 +1,105 @@ + /* + * Copyright © 2003 Marco Pesenti Gritti + * Copyright © 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + * + * $Id$ + */ + +#if !defined (__EPHY_EPIPHANY_H_INSIDE__) && !defined (EPIPHANY_COMPILATION) +#error "Only <epiphany/epiphany.h> can be included directly." +#endif + +#ifndef EPHY_COOKIE_MANAGER_H +#define EPHY_COOKIE_MANAGER_H + +#include <glib-object.h> +#include <glib.h> +#include <time.h> + +G_BEGIN_DECLS + +#define EPHY_TYPE_COOKIE_MANAGER (ephy_cookie_manager_get_type ()) +#define EPHY_COOKIE_MANAGER(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), EPHY_TYPE_COOKIE_MANAGER, EphyCookieManager)) +#define EPHY_COOKIE_MANAGER_IFACE(k) (G_TYPE_CHECK_CLASS_CAST((k), EPHY_TYPE_COOKIE_MANAGER, EphyCookieManagerIface)) +#define EPHY_IS_COOKIE_MANAGER(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), EPHY_TYPE_COOKIE_MANAGER)) +#define EPHY_IS_COOKIE_MANAGER_IFACE(k) (G_TYPE_CHECK_CLASS_TYPE ((k), EPHY_TYPE_COOKIE_MANAGER)) +#define EPHY_COOKIE_MANAGER_GET_IFACE(inst) (G_TYPE_INSTANCE_GET_INTERFACE ((inst), EPHY_TYPE_COOKIE_MANAGER, EphyCookieManagerIface)) + +#define EPHY_TYPE_COOKIE (ephy_cookie_get_type ()) + +typedef struct _EphyCookieManager EphyCookieManager; +typedef struct _EphyCookieManagerIface EphyCookieManagerIface; + +typedef struct +{ + char *name; + char *value; + char *domain; + char *path; + time_t expires; + glong real_expires; + guint is_secure : 1; + guint is_session : 1; + guint is_http_only : 1; +} EphyCookie; + +struct _EphyCookieManagerIface +{ + GTypeInterface base_iface; + + /* Signals */ + void (* added) (EphyCookieManager *manager, + EphyCookie *cookie); + void (* changed) (EphyCookieManager *manager, + EphyCookie *cookie); + void (* deleted) (EphyCookieManager *manager, + EphyCookie *cookie); + void (* rejected) (EphyCookieManager *manager, + const char *url); + void (* cleared) (EphyCookieManager *manager); + + /* Methods */ + GList * (* list) (EphyCookieManager *manager); + void (* remove) (EphyCookieManager *manager, + const EphyCookie *cookie); + void (* clear) (EphyCookieManager *manager); +}; + +/* EphyCookie */ + +GType ephy_cookie_get_type (void); + +EphyCookie *ephy_cookie_new (void); + +EphyCookie *ephy_cookie_copy (const EphyCookie *cookie); + +void ephy_cookie_free (EphyCookie *cookie); + +/* EphyCookieManager */ + +GType ephy_cookie_manager_get_type (void); + +GList * ephy_cookie_manager_list_cookies (EphyCookieManager *manager); + +void ephy_cookie_manager_remove_cookie (EphyCookieManager *manager, + const EphyCookie *cookie); + +void ephy_cookie_manager_clear (EphyCookieManager *manager); + +G_END_DECLS + +#endif |