/* * Claws Mail -- A GTK+ based, lightweight, and fast e-mail client * Copyright(C) 1999-2014 the Claws Mail Team * == Fancy Plugin == * This file Copyright (C) 2009 -2014 Salvatore De Paolis * and the Claws Mail Team * 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 3 of the License, 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 tothe Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ #ifndef FANCY_PREFS_H #define FANCY_PREFS_H #include #include typedef struct _FancyPrefs FancyPrefs; struct _FancyPrefs { WebKitWebSettings *web_settings; gboolean enable_images; gboolean enable_remote_content; gboolean enable_scripts; gboolean enable_plugins; gboolean enable_java; gboolean open_external; gint zoom_level; #ifdef HAVE_LIBSOUP_GNOME gboolean enable_gnome_proxy; #endif gboolean enable_proxy; gchar *proxy_str; gchar *stylesheet; }; extern FancyPrefs fancy_prefs; void fancy_prefs_init(void); void fancy_prefs_done(void); #endif