Fix bug #3581: sys:1: Warning: Source ID # was…
[claws.git] / src / plugins / fancy / fancy_viewer.h
blobbc497a58949cef4302a13e120c3067a6421f86fb
1 /*
2 * Claws Mail -- a GTK+ based, lightweight, and fast e-mail client
3 * == Fancy Plugin ==
4 * Copyright (C) 1999-2013 Hiroyuki Yamamoto and the Claws Mail Team
5 * This file Copyright (C) 2009-2013 Salvatore De Paolis <iwkse@claws-mail.org>
6 * and the Claws Mail Team
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 3 of the License, or
11 * (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
23 #ifndef FANCY_VIEWER_H
24 #define FANCY_VIEWER_H
26 #include <unistd.h>
27 #include <stdio.h>
29 #include <glib.h>
30 #include <glib/gi18n.h>
31 #include <gtk/gtk.h>
32 #include <webkit/webkitwebview.h>
33 #include <webkit/webkitversion.h>
34 #include <webkit/webkitwebframe.h>
35 #include <webkit/webkitnetworkrequest.h>
36 #if WEBKIT_CHECK_VERSION (1,3,13)
37 #include <webkit/webkitglobals.h>
38 #endif
39 #include <prefs_common.h>
40 #include "common/claws.h"
41 #include "common/version.h"
42 #include "common/utils.h"
43 #include "mimeview.h"
44 #include "gdk/gdkkeysyms.h"
45 #include "main.h"
46 #include "plugin.h"
47 #include "menu.h"
48 #include "defs.h"
49 #include "utils.h"
50 #include "folder.h"
51 #ifdef USE_PTHREAD
52 #include <pthread.h>
53 #endif
55 #include <curl/curl.h>
56 #include <curl/curlver.h>
57 #include "filesel.h"
59 #ifdef HAVE_LIBSOUP_GNOME
60 #include <libsoup/soup-gnome.h>
61 #endif
63 typedef enum _NavigationMode {
64 NAV_DEFAULT,
65 NAV_INNER,
66 NAV_OUTER
67 } NavigationMode;
69 typedef struct _FancyViewer FancyViewer;
70 struct _FancyViewer
72 MimeViewer mimeviewer;
73 GtkWidget *scrollwin;
74 WebKitWebView *view;
75 GtkWidget *vbox;
76 GtkWidget *l_link;
77 /* Zoom Widgets */
78 GtkWidget *zoom_100;
79 GtkWidget *ev_zoom_100;
80 GtkWidget *zoom_in;
81 GtkWidget *ev_zoom_in;
82 GtkWidget *zoom_out;
83 GtkWidget *ev_zoom_out;
84 GtkWidget *stop_loading;
85 GtkWidget *ev_stop_loading;
86 /* Preferences Widgets */
87 GtkWidget *fancy_prefs;
88 GtkWidget *ev_fancy_prefs;
89 GtkWidget *fancy_prefs_menu;
90 /* Menu Items */
91 GtkWidget *enable_images;
92 GtkWidget *enable_scripts;
93 GtkWidget *enable_plugins;
94 GtkWidget *enable_java;
95 GtkWidget *enable_remote_content;
96 GtkWidget *open_external;
97 GtkWidget *stylesheet;
99 GtkWidget *progress;
100 WebKitWebSettings *settings;
101 gboolean printing;
102 gboolean override_prefs_images;
103 gboolean override_prefs_remote_content;
104 gboolean override_prefs_scripts;
105 gboolean override_prefs_plugins;
106 gboolean override_prefs_external;
107 gboolean override_prefs_java;
108 gchar *override_stylesheet;
110 const gchar *curlfile;
111 FILE *stream;
113 gchar *cur_link;
114 gchar *filename;
115 MimeInfo *to_load;
116 gulong doc_handle;
117 gint loading;
119 /* DOM Objects */
120 #if WEBKIT_CHECK_VERSION(1,5,1)
121 WebKitDOMDocument *doc;
122 WebKitDOMDOMWindow *window;
123 WebKitDOMDOMSelection *selection;
124 WebKitDOMRange *range;
125 #endif
127 #define OPEN_INTERNAL FALSE
128 #define OPEN_EXTERNAL TRUE
129 #define CTRL_KEY 4
130 #define GOOGLE_SEARCH "http://www.google.com/search?hl=en&q="
132 #endif