2009-06-05 18:16:10 +00:00
|
|
|
/* See LICENSE file for copyright and license details.
|
|
|
|
*
|
|
|
|
* To understand surf, start reading main().
|
|
|
|
*/
|
2013-05-21 19:30:00 +00:00
|
|
|
|
2009-10-15 14:31:49 +00:00
|
|
|
#include <signal.h>
|
2009-06-05 15:46:11 +00:00
|
|
|
#include <X11/X.h>
|
|
|
|
#include <X11/Xatom.h>
|
2009-06-05 11:22:40 +00:00
|
|
|
#include <gtk/gtk.h>
|
2009-06-05 15:46:11 +00:00
|
|
|
#include <gdk/gdkx.h>
|
|
|
|
#include <gdk/gdk.h>
|
2009-06-06 07:35:50 +00:00
|
|
|
#include <gdk/gdkkeysyms.h>
|
2009-06-05 11:22:40 +00:00
|
|
|
#include <string.h>
|
2009-10-15 14:31:49 +00:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/wait.h>
|
2009-06-05 11:22:40 +00:00
|
|
|
#include <unistd.h>
|
2012-11-25 21:31:46 +00:00
|
|
|
#include <limits.h>
|
2009-06-05 11:22:40 +00:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <webkit/webkit.h>
|
2009-06-07 10:50:18 +00:00
|
|
|
#include <glib/gstdio.h>
|
2009-09-16 08:06:21 +00:00
|
|
|
#include <JavaScriptCore/JavaScript.h>
|
2010-05-06 11:58:49 +00:00
|
|
|
#include <sys/file.h>
|
2013-01-26 14:53:33 +00:00
|
|
|
#include <libgen.h>
|
|
|
|
#include <stdarg.h>
|
2009-06-05 11:22:40 +00:00
|
|
|
|
2012-10-31 20:13:50 +00:00
|
|
|
#include "arg.h"
|
|
|
|
|
|
|
|
char *argv0;
|
|
|
|
|
2009-09-11 07:38:53 +00:00
|
|
|
#define LENGTH(x) (sizeof x / sizeof x[0])
|
2013-01-26 15:00:52 +00:00
|
|
|
#define CLEANMASK(mask) (mask & (MODKEY|GDK_SHIFT_MASK))
|
2012-10-16 19:54:37 +00:00
|
|
|
#define COOKIEJAR_TYPE (cookiejar_get_type ())
|
|
|
|
#define COOKIEJAR(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), COOKIEJAR_TYPE, CookieJar))
|
2009-06-05 11:22:40 +00:00
|
|
|
|
2010-05-28 11:20:17 +00:00
|
|
|
enum { AtomFind, AtomGo, AtomUri, AtomLast };
|
2010-05-17 09:45:28 +00:00
|
|
|
|
2009-09-06 11:40:41 +00:00
|
|
|
typedef union Arg Arg;
|
|
|
|
union Arg {
|
2009-10-20 21:46:54 +00:00
|
|
|
gboolean b;
|
|
|
|
gint i;
|
2009-09-06 11:40:41 +00:00
|
|
|
const void *v;
|
2009-09-16 23:09:00 +00:00
|
|
|
};
|
2009-09-06 11:40:41 +00:00
|
|
|
|
2009-06-05 18:16:10 +00:00
|
|
|
typedef struct Client {
|
2013-02-12 19:36:56 +00:00
|
|
|
GtkWidget *win, *scroll, *vbox, *pane;
|
2009-06-05 18:16:10 +00:00
|
|
|
WebKitWebView *view;
|
2013-01-26 14:53:33 +00:00
|
|
|
WebKitWebInspector *inspector;
|
2009-10-16 14:33:18 +00:00
|
|
|
char *title, *linkhover;
|
2009-10-20 21:46:54 +00:00
|
|
|
const char *uri, *needle;
|
2009-06-05 18:16:10 +00:00
|
|
|
gint progress;
|
|
|
|
struct Client *next;
|
2013-01-26 20:01:23 +00:00
|
|
|
gboolean zoomed, fullscreen, isinspecting, sslfailed;
|
2009-06-05 18:16:10 +00:00
|
|
|
} Client;
|
2009-09-06 11:15:53 +00:00
|
|
|
|
2009-09-06 11:40:41 +00:00
|
|
|
typedef struct {
|
|
|
|
guint mod;
|
|
|
|
guint keyval;
|
|
|
|
void (*func)(Client *c, const Arg *arg);
|
|
|
|
const Arg arg;
|
|
|
|
} Key;
|
|
|
|
|
2012-10-16 19:54:37 +00:00
|
|
|
typedef struct {
|
|
|
|
SoupCookieJarText parent_instance;
|
|
|
|
int lock;
|
|
|
|
} CookieJar;
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
SoupCookieJarTextClass parent_class;
|
|
|
|
} CookieJarClass;
|
|
|
|
|
|
|
|
G_DEFINE_TYPE(CookieJar, cookiejar, SOUP_TYPE_COOKIE_JAR_TEXT)
|
|
|
|
|
2009-09-16 08:06:21 +00:00
|
|
|
static Display *dpy;
|
2010-05-17 09:45:28 +00:00
|
|
|
static Atom atoms[AtomLast];
|
2009-09-13 14:15:28 +00:00
|
|
|
static Client *clients = NULL;
|
|
|
|
static GdkNativeWindow embed = 0;
|
|
|
|
static gboolean showxid = FALSE;
|
2009-10-16 14:33:18 +00:00
|
|
|
static char winid[64];
|
2013-01-26 14:53:33 +00:00
|
|
|
static gboolean usingproxy = 0;
|
2013-04-28 19:26:56 +00:00
|
|
|
static char togglestat[7];
|
2013-02-14 23:57:36 +00:00
|
|
|
static char pagestat[3];
|
2009-06-05 11:22:40 +00:00
|
|
|
|
2013-03-15 17:37:12 +00:00
|
|
|
static void addaccelgroup(Client *c);
|
2012-12-06 12:32:52 +00:00
|
|
|
static void beforerequest(WebKitWebView *w, WebKitWebFrame *f,
|
|
|
|
WebKitWebResource *r, WebKitNetworkRequest *req,
|
|
|
|
WebKitNetworkResponse *resp, gpointer d);
|
2009-10-16 14:33:18 +00:00
|
|
|
static char *buildpath(const char *path);
|
2012-12-06 12:32:52 +00:00
|
|
|
static gboolean buttonrelease(WebKitWebView *web, GdkEventButton *e,
|
|
|
|
GList *gl);
|
2009-06-05 11:22:40 +00:00
|
|
|
static void cleanup(void);
|
2009-09-06 11:40:41 +00:00
|
|
|
static void clipboard(Client *c, const Arg *arg);
|
2013-01-26 14:53:33 +00:00
|
|
|
|
2012-12-06 12:32:52 +00:00
|
|
|
static void cookiejar_changed(SoupCookieJar *self, SoupCookie *old_cookie,
|
|
|
|
SoupCookie *new_cookie);
|
2012-10-16 19:54:37 +00:00
|
|
|
static void cookiejar_finalize(GObject *self);
|
|
|
|
static SoupCookieJar *cookiejar_new(const char *filename, gboolean read_only);
|
2012-12-06 12:32:52 +00:00
|
|
|
static void cookiejar_set_property(GObject *self, guint prop_id,
|
|
|
|
const GValue *value, GParamSpec *pspec);
|
2013-01-26 14:53:33 +00:00
|
|
|
|
2009-10-16 14:33:18 +00:00
|
|
|
static char *copystr(char **str, const char *src);
|
2012-12-06 12:32:52 +00:00
|
|
|
static WebKitWebView *createwindow(WebKitWebView *v, WebKitWebFrame *f,
|
|
|
|
Client *c);
|
|
|
|
static gboolean decidedownload(WebKitWebView *v, WebKitWebFrame *f,
|
|
|
|
WebKitNetworkRequest *r, gchar *m, WebKitWebPolicyDecision *p,
|
|
|
|
Client *c);
|
|
|
|
static gboolean decidewindow(WebKitWebView *v, WebKitWebFrame *f,
|
|
|
|
WebKitNetworkRequest *r, WebKitWebNavigationAction *n,
|
|
|
|
WebKitWebPolicyDecision *p, Client *c);
|
2013-03-15 16:32:13 +00:00
|
|
|
static gboolean deletion_interface(WebKitWebView *view,
|
|
|
|
WebKitDOMHTMLElement *arg1, Client *c);
|
2009-06-06 18:26:04 +00:00
|
|
|
static void destroyclient(Client *c);
|
2009-06-09 08:29:47 +00:00
|
|
|
static void destroywin(GtkWidget* w, Client *c);
|
2013-01-26 14:53:33 +00:00
|
|
|
static void die(const char *errstr, ...);
|
|
|
|
static void eval(Client *c, const Arg *arg);
|
2009-10-28 19:43:30 +00:00
|
|
|
static void find(Client *c, const Arg *arg);
|
2012-12-03 20:19:16 +00:00
|
|
|
static void fullscreen(Client *c, const Arg *arg);
|
2013-04-28 19:26:56 +00:00
|
|
|
static void geopolicyrequested(WebKitWebView *v, WebKitWebFrame *f,
|
|
|
|
WebKitGeolocationPolicyDecision *d, Client *c);
|
2010-05-17 09:45:28 +00:00
|
|
|
static const char *getatom(Client *c, int a);
|
2013-01-26 14:53:33 +00:00
|
|
|
static void gettogglestat(Client *c);
|
2013-02-12 19:36:56 +00:00
|
|
|
static void getpagestat(Client *c);
|
2009-10-28 19:43:30 +00:00
|
|
|
static char *geturi(Client *c);
|
2010-05-26 13:33:01 +00:00
|
|
|
static gboolean initdownload(WebKitWebView *v, WebKitDownload *o, Client *c);
|
2013-01-26 14:53:33 +00:00
|
|
|
|
|
|
|
static void inspector(Client *c, const Arg *arg);
|
|
|
|
static WebKitWebView *inspector_new(WebKitWebInspector *i, WebKitWebView *v,
|
|
|
|
Client *c);
|
|
|
|
static gboolean inspector_show(WebKitWebInspector *i, Client *c);
|
|
|
|
static gboolean inspector_close(WebKitWebInspector *i, Client *c);
|
|
|
|
static void inspector_finished(WebKitWebInspector *i, Client *c);
|
|
|
|
|
2013-03-15 15:12:15 +00:00
|
|
|
static gboolean keypress(GtkAccelGroup *group,
|
|
|
|
GObject *obj, guint key, GdkModifierType mods,
|
|
|
|
Client *c);
|
2012-12-06 12:32:52 +00:00
|
|
|
static void linkhover(WebKitWebView *v, const char* t, const char* l,
|
|
|
|
Client *c);
|
|
|
|
static void loadstatuschange(WebKitWebView *view, GParamSpec *pspec,
|
|
|
|
Client *c);
|
2009-09-06 11:40:41 +00:00
|
|
|
static void loaduri(Client *c, const Arg *arg);
|
|
|
|
static void navigate(Client *c, const Arg *arg);
|
2010-09-09 09:15:02 +00:00
|
|
|
static Client *newclient(void);
|
2012-10-13 05:16:08 +00:00
|
|
|
static void newwindow(Client *c, const Arg *arg, gboolean noembed);
|
2009-10-16 14:33:18 +00:00
|
|
|
static void pasteuri(GtkClipboard *clipboard, const char *text, gpointer d);
|
2012-10-13 05:28:16 +00:00
|
|
|
static void populatepopup(WebKitWebView *web, GtkMenu *menu, Client *c);
|
|
|
|
static void popupactivate(GtkMenuItem *menu, Client *);
|
2009-09-06 11:54:29 +00:00
|
|
|
static void print(Client *c, const Arg *arg);
|
2012-12-06 12:32:52 +00:00
|
|
|
static GdkFilterReturn processx(GdkXEvent *xevent, GdkEvent *event,
|
|
|
|
gpointer d);
|
2010-03-08 08:24:55 +00:00
|
|
|
static void progresschange(WebKitWebView *view, GParamSpec *pspec, Client *c);
|
2009-09-06 11:40:41 +00:00
|
|
|
static void reload(Client *c, const Arg *arg);
|
2012-05-31 09:46:24 +00:00
|
|
|
static void scroll_h(Client *c, const Arg *arg);
|
|
|
|
static void scroll_v(Client *c, const Arg *arg);
|
|
|
|
static void scroll(GtkAdjustment *a, const Arg *arg);
|
2010-05-17 09:45:28 +00:00
|
|
|
static void setatom(Client *c, int a, const char *v);
|
2009-09-10 07:25:08 +00:00
|
|
|
static void setup(void);
|
2009-10-28 19:43:30 +00:00
|
|
|
static void sigchld(int unused);
|
2009-09-09 12:00:31 +00:00
|
|
|
static void source(Client *c, const Arg *arg);
|
2009-10-28 19:43:30 +00:00
|
|
|
static void spawn(Client *c, const Arg *arg);
|
2009-09-06 11:40:41 +00:00
|
|
|
static void stop(Client *c, const Arg *arg);
|
2012-12-06 12:32:52 +00:00
|
|
|
static void titlechange(WebKitWebView *v, WebKitWebFrame *frame,
|
|
|
|
const char *title, Client *c);
|
2012-11-15 13:52:22 +00:00
|
|
|
static void toggle(Client *c, const Arg *arg);
|
2013-04-28 19:26:56 +00:00
|
|
|
static void togglegeolocation(Client *c, const Arg *arg);
|
2013-02-21 14:59:07 +00:00
|
|
|
static void togglescrollbars(Client *c, const Arg *arg);
|
2013-02-16 15:18:05 +00:00
|
|
|
static void togglestyle(Client *c, const Arg *arg);
|
2013-04-14 12:26:44 +00:00
|
|
|
static void updatetitle(Client *c);
|
2009-10-15 14:31:49 +00:00
|
|
|
static void updatewinid(Client *c);
|
2009-10-28 19:43:30 +00:00
|
|
|
static void usage(void);
|
2012-12-06 12:32:52 +00:00
|
|
|
static void windowobjectcleared(GtkWidget *w, WebKitWebFrame *frame,
|
|
|
|
JSContextRef js, JSObjectRef win, Client *c);
|
2009-09-07 07:51:51 +00:00
|
|
|
static void zoom(Client *c, const Arg *arg);
|
2009-09-06 11:40:41 +00:00
|
|
|
|
2009-09-21 17:28:39 +00:00
|
|
|
/* configuration, allows nested code to access above variables */
|
2009-09-06 11:40:41 +00:00
|
|
|
#include "config.h"
|
2009-06-06 18:26:04 +00:00
|
|
|
|
2013-03-15 15:12:15 +00:00
|
|
|
static void
|
2013-03-15 17:37:12 +00:00
|
|
|
addaccelgroup(Client *c) {
|
2013-03-15 15:12:15 +00:00
|
|
|
int i;
|
|
|
|
GtkAccelGroup *group = gtk_accel_group_new();
|
2013-03-15 17:37:12 +00:00
|
|
|
GClosure *closure;
|
|
|
|
|
2013-03-15 15:12:15 +00:00
|
|
|
for(i = 0; i < LENGTH(keys); i++) {
|
2013-03-15 17:37:12 +00:00
|
|
|
closure = g_cclosure_new(G_CALLBACK(keypress), c, NULL);
|
2013-03-15 15:12:15 +00:00
|
|
|
gtk_accel_group_connect(group, keys[i].keyval, keys[i].mod,
|
|
|
|
0, closure);
|
|
|
|
}
|
|
|
|
gtk_window_add_accel_group(GTK_WINDOW(c->win), group);
|
|
|
|
}
|
|
|
|
|
2012-12-06 12:32:52 +00:00
|
|
|
static void
|
|
|
|
beforerequest(WebKitWebView *w, WebKitWebFrame *f, WebKitWebResource *r,
|
|
|
|
WebKitNetworkRequest *req, WebKitNetworkResponse *resp,
|
|
|
|
gpointer d) {
|
|
|
|
const gchar *uri = webkit_network_request_get_uri(req);
|
2013-02-16 23:37:43 +00:00
|
|
|
|
2012-12-06 12:32:52 +00:00
|
|
|
if(g_str_has_suffix(uri, "/favicon.ico"))
|
|
|
|
webkit_network_request_set_uri(req, "about:blank");
|
|
|
|
}
|
|
|
|
|
|
|
|
static char *
|
2009-10-16 14:33:18 +00:00
|
|
|
buildpath(const char *path) {
|
|
|
|
char *apath, *p;
|
2009-10-13 19:52:43 +00:00
|
|
|
FILE *f;
|
|
|
|
|
|
|
|
/* creating directory */
|
2012-10-31 20:13:50 +00:00
|
|
|
if(path[0] == '/') {
|
2009-10-13 19:52:43 +00:00
|
|
|
apath = g_strdup(path);
|
2012-10-31 20:13:50 +00:00
|
|
|
} else if(path[0] == '~') {
|
|
|
|
if(path[1] == '/') {
|
|
|
|
apath = g_strconcat(g_get_home_dir(), &path[1], NULL);
|
|
|
|
} else {
|
|
|
|
apath = g_strconcat(g_get_home_dir(), "/",
|
|
|
|
&path[1], NULL);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
apath = g_strconcat(g_get_current_dir(), "/", path, NULL);
|
|
|
|
}
|
|
|
|
|
2009-10-13 19:52:43 +00:00
|
|
|
if((p = strrchr(apath, '/'))) {
|
|
|
|
*p = '\0';
|
2012-02-11 09:40:32 +00:00
|
|
|
g_mkdir_with_parents(apath, 0700);
|
2012-02-11 16:51:48 +00:00
|
|
|
g_chmod(apath, 0700); /* in case it existed */
|
2009-10-13 19:52:43 +00:00
|
|
|
*p = '/';
|
|
|
|
}
|
|
|
|
/* creating file (gives error when apath ends with "/") */
|
2012-02-11 16:51:48 +00:00
|
|
|
if((f = fopen(apath, "a"))) {
|
|
|
|
g_chmod(apath, 0600); /* always */
|
2009-10-13 19:52:43 +00:00
|
|
|
fclose(f);
|
2012-02-11 16:51:48 +00:00
|
|
|
}
|
2012-10-31 20:13:50 +00:00
|
|
|
|
2009-10-13 19:52:43 +00:00
|
|
|
return apath;
|
|
|
|
}
|
|
|
|
|
2012-10-13 05:16:08 +00:00
|
|
|
static gboolean
|
|
|
|
buttonrelease(WebKitWebView *web, GdkEventButton *e, GList *gl) {
|
|
|
|
WebKitHitTestResultContext context;
|
2012-12-06 12:32:52 +00:00
|
|
|
WebKitHitTestResult *result = webkit_web_view_get_hit_test_result(web,
|
|
|
|
e);
|
2012-10-13 05:16:08 +00:00
|
|
|
Arg arg;
|
|
|
|
|
|
|
|
g_object_get(result, "context", &context, NULL);
|
|
|
|
if(context & WEBKIT_HIT_TEST_RESULT_CONTEXT_LINK) {
|
|
|
|
if(e->button == 2) {
|
|
|
|
g_object_get(result, "link-uri", &arg.v, NULL);
|
|
|
|
newwindow(NULL, &arg, e->state & GDK_CONTROL_MASK);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2012-12-06 12:32:52 +00:00
|
|
|
static void
|
2009-06-05 18:16:10 +00:00
|
|
|
cleanup(void) {
|
2009-06-06 07:35:50 +00:00
|
|
|
while(clients)
|
|
|
|
destroyclient(clients);
|
2009-10-13 19:58:35 +00:00
|
|
|
g_free(cookiefile);
|
|
|
|
g_free(scriptfile);
|
|
|
|
g_free(stylefile);
|
2009-06-05 11:22:40 +00:00
|
|
|
}
|
2009-06-06 14:30:11 +00:00
|
|
|
|
2012-10-16 19:54:37 +00:00
|
|
|
static void
|
2012-12-06 12:32:52 +00:00
|
|
|
cookiejar_changed(SoupCookieJar *self, SoupCookie *old_cookie,
|
|
|
|
SoupCookie *new_cookie) {
|
2012-10-16 19:54:37 +00:00
|
|
|
flock(COOKIEJAR(self)->lock, LOCK_EX);
|
2012-12-06 12:32:52 +00:00
|
|
|
if(new_cookie && !new_cookie->expires && sessiontime) {
|
|
|
|
soup_cookie_set_expires(new_cookie,
|
|
|
|
soup_date_new_from_now(sessiontime));
|
|
|
|
}
|
|
|
|
SOUP_COOKIE_JAR_CLASS(cookiejar_parent_class)->changed(self,
|
|
|
|
old_cookie, new_cookie);
|
2012-10-16 19:54:37 +00:00
|
|
|
flock(COOKIEJAR(self)->lock, LOCK_UN);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
cookiejar_class_init(CookieJarClass *klass) {
|
|
|
|
SOUP_COOKIE_JAR_CLASS(klass)->changed = cookiejar_changed;
|
2012-12-06 12:32:52 +00:00
|
|
|
G_OBJECT_CLASS(klass)->get_property =
|
|
|
|
G_OBJECT_CLASS(cookiejar_parent_class)->get_property;
|
2012-10-16 19:54:37 +00:00
|
|
|
G_OBJECT_CLASS(klass)->set_property = cookiejar_set_property;
|
|
|
|
G_OBJECT_CLASS(klass)->finalize = cookiejar_finalize;
|
|
|
|
g_object_class_override_property(G_OBJECT_CLASS(klass), 1, "filename");
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
cookiejar_finalize(GObject *self) {
|
|
|
|
close(COOKIEJAR(self)->lock);
|
|
|
|
G_OBJECT_CLASS(cookiejar_parent_class)->finalize(self);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
cookiejar_init(CookieJar *self) {
|
|
|
|
self->lock = open(cookiefile, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
static SoupCookieJar *
|
|
|
|
cookiejar_new(const char *filename, gboolean read_only) {
|
|
|
|
return g_object_new(COOKIEJAR_TYPE,
|
|
|
|
SOUP_COOKIE_JAR_TEXT_FILENAME, filename,
|
|
|
|
SOUP_COOKIE_JAR_READ_ONLY, read_only, NULL);
|
2012-10-31 20:13:50 +00:00
|
|
|
}
|
2012-10-16 19:54:37 +00:00
|
|
|
|
|
|
|
static void
|
2012-12-06 12:32:52 +00:00
|
|
|
cookiejar_set_property(GObject *self, guint prop_id, const GValue *value,
|
|
|
|
GParamSpec *pspec) {
|
2012-10-16 19:54:37 +00:00
|
|
|
flock(COOKIEJAR(self)->lock, LOCK_SH);
|
2012-12-06 12:32:52 +00:00
|
|
|
G_OBJECT_CLASS(cookiejar_parent_class)->set_property(self, prop_id,
|
|
|
|
value, pspec);
|
2012-10-16 19:54:37 +00:00
|
|
|
flock(COOKIEJAR(self)->lock, LOCK_UN);
|
|
|
|
}
|
|
|
|
|
2012-12-06 12:32:52 +00:00
|
|
|
static void
|
2012-06-11 14:45:48 +00:00
|
|
|
evalscript(JSContextRef js, char *script, char* scriptname) {
|
2011-11-03 13:09:19 +00:00
|
|
|
JSStringRef jsscript, jsscriptname;
|
|
|
|
JSValueRef exception = NULL;
|
|
|
|
|
|
|
|
jsscript = JSStringCreateWithUTF8CString(script);
|
|
|
|
jsscriptname = JSStringCreateWithUTF8CString(scriptname);
|
2013-02-16 23:37:43 +00:00
|
|
|
JSEvaluateScript(js, jsscript, JSContextGetGlobalObject(js),
|
|
|
|
jsscriptname, 0, &exception);
|
2011-11-03 13:09:19 +00:00
|
|
|
JSStringRelease(jsscript);
|
|
|
|
JSStringRelease(jsscriptname);
|
|
|
|
}
|
|
|
|
|
2012-12-06 12:32:52 +00:00
|
|
|
static void
|
2012-06-11 14:45:48 +00:00
|
|
|
runscript(WebKitWebFrame *frame) {
|
2010-05-09 17:37:46 +00:00
|
|
|
char *script;
|
|
|
|
GError *error;
|
2011-11-03 13:09:19 +00:00
|
|
|
|
2010-05-09 17:37:46 +00:00
|
|
|
if(g_file_get_contents(scriptfile, &script, NULL, &error)) {
|
2013-02-16 23:37:43 +00:00
|
|
|
evalscript(webkit_web_frame_get_global_context(frame),
|
|
|
|
script, scriptfile);
|
2010-05-09 17:37:46 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-12-06 12:32:52 +00:00
|
|
|
static void
|
2009-09-06 11:40:41 +00:00
|
|
|
clipboard(Client *c, const Arg *arg) {
|
|
|
|
gboolean paste = *(gboolean *)arg;
|
2009-09-10 06:57:47 +00:00
|
|
|
|
2013-02-16 23:37:43 +00:00
|
|
|
if(paste) {
|
|
|
|
gtk_clipboard_request_text(
|
|
|
|
gtk_clipboard_get(GDK_SELECTION_PRIMARY),
|
|
|
|
pasteuri, c);
|
|
|
|
} else {
|
|
|
|
gtk_clipboard_set_text(
|
|
|
|
gtk_clipboard_get(GDK_SELECTION_PRIMARY),
|
|
|
|
c->linkhover ? c->linkhover : geturi(c), -1);
|
|
|
|
}
|
2009-09-06 11:40:41 +00:00
|
|
|
}
|
|
|
|
|
2012-12-06 12:32:52 +00:00
|
|
|
static char *
|
2009-10-16 14:33:18 +00:00
|
|
|
copystr(char **str, const char *src) {
|
|
|
|
char *tmp;
|
2009-09-10 06:57:47 +00:00
|
|
|
tmp = g_strdup(src);
|
|
|
|
|
|
|
|
if(str && *str) {
|
|
|
|
g_free(*str);
|
|
|
|
*str = tmp;
|
|
|
|
}
|
|
|
|
return tmp;
|
|
|
|
}
|
|
|
|
|
2012-12-06 12:32:52 +00:00
|
|
|
static WebKitWebView *
|
2009-10-28 19:43:30 +00:00
|
|
|
createwindow(WebKitWebView *v, WebKitWebFrame *f, Client *c) {
|
2010-09-09 09:15:02 +00:00
|
|
|
Client *n = newclient();
|
2009-10-28 19:43:30 +00:00
|
|
|
return n->view;
|
2009-06-05 11:22:40 +00:00
|
|
|
}
|
|
|
|
|
2012-12-06 12:32:52 +00:00
|
|
|
static gboolean
|
|
|
|
decidedownload(WebKitWebView *v, WebKitWebFrame *f, WebKitNetworkRequest *r,
|
|
|
|
gchar *m, WebKitWebPolicyDecision *p, Client *c) {
|
2009-10-27 07:26:21 +00:00
|
|
|
if(!webkit_web_view_can_show_mime_type(v, m)) {
|
2010-05-28 11:20:17 +00:00
|
|
|
webkit_web_policy_decision_download(p);
|
2009-10-27 07:26:21 +00:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
return FALSE;
|
2009-10-27 07:11:44 +00:00
|
|
|
}
|
|
|
|
|
2012-12-06 12:32:52 +00:00
|
|
|
static gboolean
|
|
|
|
decidewindow(WebKitWebView *view, WebKitWebFrame *f, WebKitNetworkRequest *r,
|
|
|
|
WebKitWebNavigationAction *n, WebKitWebPolicyDecision *p,
|
|
|
|
Client *c) {
|
2009-10-16 12:19:25 +00:00
|
|
|
Arg arg;
|
2009-10-21 06:35:58 +00:00
|
|
|
|
2012-12-06 12:32:52 +00:00
|
|
|
if(webkit_web_navigation_action_get_reason(n) ==
|
|
|
|
WEBKIT_WEB_NAVIGATION_REASON_LINK_CLICKED) {
|
2009-10-15 14:31:49 +00:00
|
|
|
webkit_web_policy_decision_ignore(p);
|
2009-10-16 12:19:25 +00:00
|
|
|
arg.v = (void *)webkit_network_request_get_uri(r);
|
2012-10-13 05:16:08 +00:00
|
|
|
newwindow(NULL, &arg, 0);
|
2009-10-15 14:31:49 +00:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2013-03-15 16:32:13 +00:00
|
|
|
static gboolean
|
|
|
|
deletion_interface(WebKitWebView *view,
|
|
|
|
WebKitDOMHTMLElement *arg1, Client *c) {
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2012-12-06 12:32:52 +00:00
|
|
|
static void
|
2009-10-28 19:43:30 +00:00
|
|
|
destroyclient(Client *c) {
|
|
|
|
Client *p;
|
|
|
|
|
2010-09-09 09:15:02 +00:00
|
|
|
webkit_web_view_stop_loading(c->view);
|
2009-10-28 19:43:30 +00:00
|
|
|
gtk_widget_destroy(GTK_WIDGET(c->view));
|
|
|
|
gtk_widget_destroy(c->scroll);
|
|
|
|
gtk_widget_destroy(c->vbox);
|
|
|
|
gtk_widget_destroy(c->win);
|
|
|
|
|
|
|
|
for(p = clients; p && p->next != c; p = p->next);
|
2012-12-06 12:32:52 +00:00
|
|
|
if(p) {
|
2009-10-28 19:43:30 +00:00
|
|
|
p->next = c->next;
|
2012-12-06 12:32:52 +00:00
|
|
|
} else {
|
2009-10-28 19:43:30 +00:00
|
|
|
clients = c->next;
|
2012-12-06 12:32:52 +00:00
|
|
|
}
|
2009-10-28 19:43:30 +00:00
|
|
|
free(c);
|
|
|
|
if(clients == NULL)
|
|
|
|
gtk_main_quit();
|
|
|
|
}
|
|
|
|
|
2012-12-06 12:32:52 +00:00
|
|
|
static void
|
2009-06-09 08:29:47 +00:00
|
|
|
destroywin(GtkWidget* w, Client *c) {
|
2009-06-06 18:34:55 +00:00
|
|
|
destroyclient(c);
|
2009-06-05 11:22:40 +00:00
|
|
|
}
|
|
|
|
|
2012-12-06 12:32:52 +00:00
|
|
|
static void
|
2013-01-26 14:53:33 +00:00
|
|
|
die(const char *errstr, ...) {
|
|
|
|
va_list ap;
|
|
|
|
|
|
|
|
va_start(ap, errstr);
|
|
|
|
vfprintf(stderr, errstr, ap);
|
|
|
|
va_end(ap);
|
2009-06-06 18:34:55 +00:00
|
|
|
exit(EXIT_FAILURE);
|
2009-06-05 11:22:40 +00:00
|
|
|
}
|
|
|
|
|
2012-12-06 12:32:52 +00:00
|
|
|
static void
|
2009-10-28 19:43:30 +00:00
|
|
|
find(Client *c, const Arg *arg) {
|
|
|
|
const char *s;
|
2009-06-08 14:34:46 +00:00
|
|
|
|
2010-05-17 09:45:28 +00:00
|
|
|
s = getatom(c, AtomFind);
|
2009-10-28 19:43:30 +00:00
|
|
|
gboolean forward = *(gboolean *)arg;
|
|
|
|
webkit_web_view_search_text(c->view, s, FALSE, forward, TRUE);
|
2009-06-08 09:47:56 +00:00
|
|
|
}
|
|
|
|
|
2012-12-06 12:32:52 +00:00
|
|
|
static void
|
2012-12-03 20:19:16 +00:00
|
|
|
fullscreen(Client *c, const Arg *arg) {
|
|
|
|
if(c->fullscreen) {
|
|
|
|
gtk_window_unfullscreen(GTK_WINDOW(c->win));
|
|
|
|
} else {
|
|
|
|
gtk_window_fullscreen(GTK_WINDOW(c->win));
|
|
|
|
}
|
|
|
|
c->fullscreen = !c->fullscreen;
|
|
|
|
}
|
|
|
|
|
2013-04-28 19:26:56 +00:00
|
|
|
static void
|
|
|
|
geopolicyrequested(WebKitWebView *v, WebKitWebFrame *f,
|
|
|
|
WebKitGeolocationPolicyDecision *d, Client *c) {
|
|
|
|
if(allowgeolocation) {
|
|
|
|
webkit_geolocation_policy_allow(d);
|
|
|
|
} else {
|
|
|
|
webkit_geolocation_policy_deny(d);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-12-06 12:32:52 +00:00
|
|
|
static const char *
|
2010-05-17 09:45:28 +00:00
|
|
|
getatom(Client *c, int a) {
|
2009-10-20 21:46:54 +00:00
|
|
|
static char buf[BUFSIZ];
|
|
|
|
Atom adummy;
|
|
|
|
int idummy;
|
|
|
|
unsigned long ldummy;
|
|
|
|
unsigned char *p = NULL;
|
|
|
|
|
|
|
|
XGetWindowProperty(dpy, GDK_WINDOW_XID(GTK_WIDGET(c->win)->window),
|
2010-05-17 09:45:28 +00:00
|
|
|
atoms[a], 0L, BUFSIZ, False, XA_STRING,
|
2009-10-20 21:46:54 +00:00
|
|
|
&adummy, &idummy, &ldummy, &ldummy, &p);
|
2013-02-16 23:37:43 +00:00
|
|
|
if(p) {
|
2009-10-20 21:46:54 +00:00
|
|
|
strncpy(buf, (char *)p, LENGTH(buf)-1);
|
2013-02-16 23:37:43 +00:00
|
|
|
} else {
|
2009-10-20 21:46:54 +00:00
|
|
|
buf[0] = '\0';
|
2013-02-16 23:37:43 +00:00
|
|
|
}
|
2009-10-20 21:46:54 +00:00
|
|
|
XFree(p);
|
2013-02-16 23:37:43 +00:00
|
|
|
|
2009-10-20 21:46:54 +00:00
|
|
|
return buf;
|
|
|
|
}
|
|
|
|
|
2012-12-06 12:32:52 +00:00
|
|
|
static char *
|
2009-10-28 19:43:30 +00:00
|
|
|
geturi(Client *c) {
|
|
|
|
char *uri;
|
|
|
|
|
|
|
|
if(!(uri = (char *)webkit_web_view_get_uri(c->view)))
|
|
|
|
uri = "about:blank";
|
|
|
|
return uri;
|
|
|
|
}
|
|
|
|
|
2012-12-06 12:32:52 +00:00
|
|
|
static gboolean
|
2010-05-26 13:33:01 +00:00
|
|
|
initdownload(WebKitWebView *view, WebKitDownload *o, Client *c) {
|
|
|
|
Arg arg;
|
|
|
|
|
|
|
|
updatewinid(c);
|
2012-11-20 10:53:29 +00:00
|
|
|
arg = (Arg)DOWNLOAD((char *)webkit_download_get_uri(o), geturi(c));
|
2010-05-26 13:34:09 +00:00
|
|
|
spawn(c, &arg);
|
2010-05-26 13:33:01 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2013-01-26 14:53:33 +00:00
|
|
|
static void
|
|
|
|
inspector(Client *c, const Arg *arg) {
|
2013-01-26 20:01:23 +00:00
|
|
|
if(c->isinspecting) {
|
|
|
|
webkit_web_inspector_close(c->inspector);
|
|
|
|
} else {
|
|
|
|
webkit_web_inspector_show(c->inspector);
|
|
|
|
}
|
2013-01-26 14:53:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static WebKitWebView *
|
|
|
|
inspector_new(WebKitWebInspector *i, WebKitWebView *v, Client *c) {
|
2013-01-26 20:01:23 +00:00
|
|
|
return WEBKIT_WEB_VIEW(webkit_web_view_new());
|
2013-01-26 14:53:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
inspector_show(WebKitWebInspector *i, Client *c) {
|
2013-01-26 20:01:23 +00:00
|
|
|
WebKitWebView *w;
|
|
|
|
|
|
|
|
if(c->isinspecting)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
w = webkit_web_inspector_get_web_view(i);
|
|
|
|
gtk_paned_pack2(GTK_PANED(c->pane), GTK_WIDGET(w), TRUE, TRUE);
|
|
|
|
gtk_widget_show(GTK_WIDGET(w));
|
|
|
|
c->isinspecting = true;
|
|
|
|
|
2013-01-26 14:53:33 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
inspector_close(WebKitWebInspector *i, Client *c) {
|
2013-01-26 20:01:23 +00:00
|
|
|
GtkWidget *w;
|
|
|
|
|
|
|
|
if(!c->isinspecting)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
w = GTK_WIDGET(webkit_web_inspector_get_web_view(i));
|
|
|
|
gtk_widget_hide(w);
|
|
|
|
gtk_widget_destroy(w);
|
|
|
|
c->isinspecting = false;
|
|
|
|
|
2013-01-26 14:53:33 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
inspector_finished(WebKitWebInspector *i, Client *c) {
|
|
|
|
g_free(c->inspector);
|
|
|
|
}
|
|
|
|
|
2012-12-06 12:32:52 +00:00
|
|
|
static gboolean
|
2013-03-15 15:12:15 +00:00
|
|
|
keypress(GtkAccelGroup *group, GObject *obj,
|
|
|
|
guint key, GdkModifierType mods, Client *c) {
|
2012-11-16 09:13:23 +00:00
|
|
|
guint i;
|
2009-09-07 07:44:21 +00:00
|
|
|
gboolean processed = FALSE;
|
2009-09-06 11:40:41 +00:00
|
|
|
|
2013-03-15 15:12:15 +00:00
|
|
|
mods = CLEANMASK(mods);
|
|
|
|
key = gdk_keyval_to_lower(key);
|
2009-10-15 14:31:49 +00:00
|
|
|
updatewinid(c);
|
2009-09-07 07:44:21 +00:00
|
|
|
for(i = 0; i < LENGTH(keys); i++) {
|
2013-03-15 15:12:15 +00:00
|
|
|
if(key == keys[i].keyval
|
|
|
|
&& mods == keys[i].mod
|
2009-09-07 07:44:21 +00:00
|
|
|
&& keys[i].func) {
|
2012-11-16 09:13:23 +00:00
|
|
|
keys[i].func(c, &(keys[i].arg));
|
|
|
|
processed = TRUE;
|
2009-06-08 14:34:46 +00:00
|
|
|
}
|
|
|
|
}
|
2012-11-15 14:26:48 +00:00
|
|
|
|
2009-09-07 07:44:21 +00:00
|
|
|
return processed;
|
2009-06-05 11:22:40 +00:00
|
|
|
}
|
|
|
|
|
2012-12-06 12:32:52 +00:00
|
|
|
static void
|
2009-10-16 14:33:18 +00:00
|
|
|
linkhover(WebKitWebView *v, const char* t, const char* l, Client *c) {
|
2010-05-17 08:58:08 +00:00
|
|
|
if(l) {
|
2009-10-16 13:35:11 +00:00
|
|
|
c->linkhover = copystr(&c->linkhover, l);
|
2012-11-08 21:05:40 +00:00
|
|
|
} else if(c->linkhover) {
|
2009-10-16 13:35:11 +00:00
|
|
|
free(c->linkhover);
|
|
|
|
c->linkhover = NULL;
|
|
|
|
}
|
2013-04-14 12:26:44 +00:00
|
|
|
updatetitle(c);
|
2009-06-05 18:16:10 +00:00
|
|
|
}
|
|
|
|
|
2012-12-06 12:32:52 +00:00
|
|
|
static void
|
2010-03-08 08:24:55 +00:00
|
|
|
loadstatuschange(WebKitWebView *view, GParamSpec *pspec, Client *c) {
|
2011-11-04 12:23:57 +00:00
|
|
|
WebKitWebFrame *frame;
|
|
|
|
WebKitWebDataSource *src;
|
|
|
|
WebKitNetworkRequest *request;
|
|
|
|
SoupMessage *msg;
|
|
|
|
char *uri;
|
|
|
|
|
2010-03-08 08:24:55 +00:00
|
|
|
switch(webkit_web_view_get_load_status (c->view)) {
|
|
|
|
case WEBKIT_LOAD_COMMITTED:
|
2011-11-04 12:23:57 +00:00
|
|
|
uri = geturi(c);
|
|
|
|
if(strstr(uri, "https://") == uri) {
|
|
|
|
frame = webkit_web_view_get_main_frame(c->view);
|
|
|
|
src = webkit_web_frame_get_data_source(frame);
|
|
|
|
request = webkit_web_data_source_get_request(src);
|
|
|
|
msg = webkit_network_request_get_message(request);
|
|
|
|
c->sslfailed = soup_message_get_flags(msg)
|
|
|
|
^ SOUP_MESSAGE_CERTIFICATE_TRUSTED;
|
|
|
|
}
|
|
|
|
setatom(c, AtomUri, uri);
|
2010-03-08 08:24:55 +00:00
|
|
|
break;
|
|
|
|
case WEBKIT_LOAD_FINISHED:
|
2012-10-13 05:16:08 +00:00
|
|
|
c->progress = 100;
|
2013-04-14 12:26:44 +00:00
|
|
|
updatetitle(c);
|
2010-03-08 08:24:55 +00:00
|
|
|
break;
|
2010-05-06 11:09:54 +00:00
|
|
|
default:
|
2010-03-08 08:24:55 +00:00
|
|
|
break;
|
|
|
|
}
|
2009-06-08 14:34:46 +00:00
|
|
|
}
|
|
|
|
|
2012-12-06 12:32:52 +00:00
|
|
|
static void
|
2009-09-06 11:40:41 +00:00
|
|
|
loaduri(Client *c, const Arg *arg) {
|
2012-11-25 21:31:46 +00:00
|
|
|
char *u, *rp;
|
2009-10-16 14:33:18 +00:00
|
|
|
const char *uri = (char *)arg->v;
|
2010-01-29 08:44:14 +00:00
|
|
|
Arg a = { .b = FALSE };
|
2013-03-14 18:14:44 +00:00
|
|
|
struct stat st;
|
2009-10-16 13:35:11 +00:00
|
|
|
|
2010-01-29 08:44:14 +00:00
|
|
|
if(strcmp(uri, "") == 0)
|
|
|
|
return;
|
2012-11-25 21:31:46 +00:00
|
|
|
|
|
|
|
/* In case it's a file path. */
|
2013-03-14 18:14:44 +00:00
|
|
|
if(stat(uri, &st) == 0) {
|
2012-11-25 21:31:46 +00:00
|
|
|
rp = realpath(uri, NULL);
|
|
|
|
u = g_strdup_printf("file://%s", rp);
|
|
|
|
free(rp);
|
|
|
|
} else {
|
|
|
|
u = g_strrstr(uri, "://") ? g_strdup(uri)
|
|
|
|
: g_strdup_printf("http://%s", uri);
|
|
|
|
}
|
|
|
|
|
2010-01-29 08:44:14 +00:00
|
|
|
/* prevents endless loop */
|
|
|
|
if(c->uri && strcmp(u, c->uri) == 0) {
|
|
|
|
reload(c, &a);
|
2012-11-08 21:05:40 +00:00
|
|
|
} else {
|
2010-01-29 08:44:14 +00:00
|
|
|
webkit_web_view_load_uri(c->view, u);
|
|
|
|
c->progress = 0;
|
|
|
|
c->title = copystr(&c->title, u);
|
|
|
|
g_free(u);
|
2013-04-14 12:26:44 +00:00
|
|
|
updatetitle(c);
|
2010-01-29 08:44:14 +00:00
|
|
|
}
|
2009-06-05 18:16:10 +00:00
|
|
|
}
|
|
|
|
|
2012-12-06 12:32:52 +00:00
|
|
|
static void
|
2009-09-06 11:40:41 +00:00
|
|
|
navigate(Client *c, const Arg *arg) {
|
2010-03-08 08:30:26 +00:00
|
|
|
int steps = *(int *)arg;
|
2009-09-06 12:22:55 +00:00
|
|
|
webkit_web_view_go_back_or_forward(c->view, steps);
|
2009-09-06 11:40:41 +00:00
|
|
|
}
|
|
|
|
|
2012-12-06 12:32:52 +00:00
|
|
|
static Client *
|
2010-09-09 09:15:02 +00:00
|
|
|
newclient(void) {
|
2009-06-05 18:16:10 +00:00
|
|
|
Client *c;
|
2009-09-10 15:41:56 +00:00
|
|
|
WebKitWebSettings *settings;
|
2010-05-09 17:37:46 +00:00
|
|
|
WebKitWebFrame *frame;
|
2009-10-21 13:52:36 +00:00
|
|
|
GdkGeometry hints = { 1, 1 };
|
2013-07-20 06:52:10 +00:00
|
|
|
GdkScreen *screen;
|
|
|
|
gdouble dpi;
|
2009-11-02 08:27:32 +00:00
|
|
|
char *uri, *ua;
|
2009-09-10 15:41:56 +00:00
|
|
|
|
2009-06-05 18:16:10 +00:00
|
|
|
if(!(c = calloc(1, sizeof(Client))))
|
|
|
|
die("Cannot malloc!\n");
|
2012-11-16 09:31:42 +00:00
|
|
|
|
2009-06-06 14:30:11 +00:00
|
|
|
/* Window */
|
2009-06-05 15:46:11 +00:00
|
|
|
if(embed) {
|
2009-09-11 05:21:18 +00:00
|
|
|
c->win = gtk_plug_new(embed);
|
2012-11-16 09:31:42 +00:00
|
|
|
} else {
|
2009-06-05 18:16:10 +00:00
|
|
|
c->win = gtk_window_new(GTK_WINDOW_TOPLEVEL);
|
2012-11-16 09:31:42 +00:00
|
|
|
|
2009-12-15 16:16:01 +00:00
|
|
|
/* TA: 20091214: Despite what the GNOME docs say, the ICCCM
|
|
|
|
* is always correct, so we should still call this function.
|
|
|
|
* But when doing so, we *must* differentiate between a
|
|
|
|
* WM_CLASS and a resource on the window. By convention, the
|
|
|
|
* window class (WM_CLASS) is capped, while the resource is in
|
|
|
|
* lowercase. Both these values come as a pair.
|
|
|
|
*/
|
2011-11-04 12:57:04 +00:00
|
|
|
gtk_window_set_wmclass(GTK_WINDOW(c->win), "surf", "Surf");
|
2009-12-15 16:16:01 +00:00
|
|
|
|
|
|
|
/* TA: 20091214: And set the role here as well -- so that
|
|
|
|
* sessions can pick this up.
|
|
|
|
*/
|
|
|
|
gtk_window_set_role(GTK_WINDOW(c->win), "Surf");
|
2009-06-05 15:46:11 +00:00
|
|
|
}
|
2009-06-05 18:16:10 +00:00
|
|
|
gtk_window_set_default_size(GTK_WINDOW(c->win), 800, 600);
|
2012-12-06 12:32:52 +00:00
|
|
|
g_signal_connect(G_OBJECT(c->win),
|
|
|
|
"destroy",
|
|
|
|
G_CALLBACK(destroywin), c);
|
2013-03-15 17:37:12 +00:00
|
|
|
|
|
|
|
if(!kioskmode)
|
|
|
|
addaccelgroup(c);
|
2009-06-05 11:22:40 +00:00
|
|
|
|
2013-01-26 20:01:23 +00:00
|
|
|
/* Pane */
|
|
|
|
c->pane = gtk_vpaned_new();
|
|
|
|
|
2009-06-06 14:30:11 +00:00
|
|
|
/* VBox */
|
|
|
|
c->vbox = gtk_vbox_new(FALSE, 0);
|
2013-01-26 20:01:23 +00:00
|
|
|
gtk_paned_pack1(GTK_PANED(c->pane), c->vbox, TRUE, TRUE);
|
2009-06-06 14:30:11 +00:00
|
|
|
|
2009-10-28 18:27:11 +00:00
|
|
|
/* Webview */
|
2009-06-05 18:16:10 +00:00
|
|
|
c->view = WEBKIT_WEB_VIEW(webkit_web_view_new());
|
2013-02-21 14:59:07 +00:00
|
|
|
|
2012-12-06 12:32:52 +00:00
|
|
|
g_signal_connect(G_OBJECT(c->view),
|
|
|
|
"title-changed",
|
|
|
|
G_CALLBACK(titlechange), c);
|
|
|
|
g_signal_connect(G_OBJECT(c->view),
|
|
|
|
"hovering-over-link",
|
|
|
|
G_CALLBACK(linkhover), c);
|
2013-04-28 19:26:56 +00:00
|
|
|
g_signal_connect(G_OBJECT(c->view),
|
|
|
|
"geolocation-policy-decision-requested",
|
|
|
|
G_CALLBACK(geopolicyrequested), c);
|
2012-12-06 12:32:52 +00:00
|
|
|
g_signal_connect(G_OBJECT(c->view),
|
|
|
|
"create-web-view",
|
|
|
|
G_CALLBACK(createwindow), c);
|
|
|
|
g_signal_connect(G_OBJECT(c->view),
|
|
|
|
"new-window-policy-decision-requested",
|
|
|
|
G_CALLBACK(decidewindow), c);
|
|
|
|
g_signal_connect(G_OBJECT(c->view),
|
|
|
|
"mime-type-policy-decision-requested",
|
|
|
|
G_CALLBACK(decidedownload), c);
|
|
|
|
g_signal_connect(G_OBJECT(c->view),
|
|
|
|
"window-object-cleared",
|
|
|
|
G_CALLBACK(windowobjectcleared), c);
|
|
|
|
g_signal_connect(G_OBJECT(c->view),
|
|
|
|
"notify::load-status",
|
|
|
|
G_CALLBACK(loadstatuschange), c);
|
|
|
|
g_signal_connect(G_OBJECT(c->view),
|
|
|
|
"notify::progress",
|
|
|
|
G_CALLBACK(progresschange), c);
|
|
|
|
g_signal_connect(G_OBJECT(c->view),
|
|
|
|
"download-requested",
|
|
|
|
G_CALLBACK(initdownload), c);
|
|
|
|
g_signal_connect(G_OBJECT(c->view),
|
|
|
|
"button-release-event",
|
|
|
|
G_CALLBACK(buttonrelease), c);
|
|
|
|
g_signal_connect(G_OBJECT(c->view),
|
|
|
|
"populate-popup",
|
|
|
|
G_CALLBACK(populatepopup), c);
|
|
|
|
g_signal_connect(G_OBJECT(c->view),
|
|
|
|
"resource-request-starting",
|
|
|
|
G_CALLBACK(beforerequest), c);
|
2013-03-15 16:32:13 +00:00
|
|
|
g_signal_connect(G_OBJECT(c->view),
|
|
|
|
"should-show-delete-interface-for-element",
|
|
|
|
G_CALLBACK(deletion_interface), c);
|
2009-06-05 11:22:40 +00:00
|
|
|
|
2013-02-21 14:59:07 +00:00
|
|
|
/* Scrolled Window */
|
|
|
|
c->scroll = gtk_scrolled_window_new(NULL, NULL);
|
|
|
|
|
|
|
|
frame = webkit_web_view_get_main_frame(WEBKIT_WEB_VIEW(c->view));
|
|
|
|
g_signal_connect(G_OBJECT(frame), "scrollbars-policy-changed",
|
|
|
|
G_CALLBACK(gtk_true), NULL);
|
|
|
|
|
|
|
|
if(!enablescrollbars) {
|
|
|
|
gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(c->scroll),
|
|
|
|
GTK_POLICY_NEVER, GTK_POLICY_NEVER);
|
|
|
|
} else {
|
|
|
|
gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(c->scroll),
|
|
|
|
GTK_POLICY_AUTOMATIC, GTK_POLICY_AUTOMATIC);
|
|
|
|
}
|
|
|
|
|
2009-06-06 14:30:11 +00:00
|
|
|
/* Arranging */
|
|
|
|
gtk_container_add(GTK_CONTAINER(c->scroll), GTK_WIDGET(c->view));
|
2013-01-26 20:01:23 +00:00
|
|
|
gtk_container_add(GTK_CONTAINER(c->win), c->pane);
|
2009-06-06 15:12:16 +00:00
|
|
|
gtk_container_add(GTK_CONTAINER(c->vbox), c->scroll);
|
2009-06-06 14:30:11 +00:00
|
|
|
|
|
|
|
/* Setup */
|
2012-12-06 12:32:52 +00:00
|
|
|
gtk_box_set_child_packing(GTK_BOX(c->vbox), c->scroll, TRUE,
|
|
|
|
TRUE, 0, GTK_PACK_START);
|
2009-06-05 18:16:10 +00:00
|
|
|
gtk_widget_grab_focus(GTK_WIDGET(c->view));
|
2013-01-26 20:01:23 +00:00
|
|
|
gtk_widget_show(c->pane);
|
2009-06-06 14:30:11 +00:00
|
|
|
gtk_widget_show(c->vbox);
|
|
|
|
gtk_widget_show(c->scroll);
|
|
|
|
gtk_widget_show(GTK_WIDGET(c->view));
|
|
|
|
gtk_widget_show(c->win);
|
2012-12-06 12:32:52 +00:00
|
|
|
gtk_window_set_geometry_hints(GTK_WINDOW(c->win), NULL, &hints,
|
|
|
|
GDK_HINT_MIN_SIZE);
|
2009-06-05 18:16:10 +00:00
|
|
|
gdk_window_set_events(GTK_WIDGET(c->win)->window, GDK_ALL_EVENTS_MASK);
|
|
|
|
gdk_window_add_filter(GTK_WIDGET(c->win)->window, processx, c);
|
2009-06-08 15:25:52 +00:00
|
|
|
webkit_web_view_set_full_content_zoom(c->view, TRUE);
|
2012-11-16 09:31:42 +00:00
|
|
|
|
2012-06-11 14:45:48 +00:00
|
|
|
runscript(frame);
|
2013-02-21 14:59:07 +00:00
|
|
|
|
2009-09-10 15:41:56 +00:00
|
|
|
settings = webkit_web_view_get_settings(c->view);
|
2009-11-02 08:27:32 +00:00
|
|
|
if(!(ua = getenv("SURF_USERAGENT")))
|
|
|
|
ua = useragent;
|
|
|
|
g_object_set(G_OBJECT(settings), "user-agent", ua, NULL);
|
2009-10-13 19:52:43 +00:00
|
|
|
uri = g_strconcat("file://", stylefile, NULL);
|
|
|
|
g_object_set(G_OBJECT(settings), "user-stylesheet-uri", uri, NULL);
|
2013-01-26 14:53:33 +00:00
|
|
|
g_object_set(G_OBJECT(settings), "auto-load-images", loadimages,
|
|
|
|
NULL);
|
|
|
|
g_object_set(G_OBJECT(settings), "enable-plugins", enableplugins,
|
|
|
|
NULL);
|
|
|
|
g_object_set(G_OBJECT(settings), "enable-scripts", enablescripts,
|
|
|
|
NULL);
|
2012-11-20 15:02:57 +00:00
|
|
|
g_object_set(G_OBJECT(settings), "enable-spatial-navigation",
|
2013-01-26 14:53:33 +00:00
|
|
|
enablespatialbrowsing, NULL);
|
|
|
|
g_object_set(G_OBJECT(settings), "enable-developer-extras",
|
|
|
|
enableinspector, NULL);
|
2013-03-11 20:26:22 +00:00
|
|
|
g_object_set(G_OBJECT(settings), "enable-default-context-menu",
|
|
|
|
kioskmode ^ 1, NULL);
|
2013-03-14 05:35:42 +00:00
|
|
|
g_object_set(G_OBJECT(settings), "default-font-size",
|
|
|
|
defaultfontsize, NULL);
|
2013-01-26 14:53:33 +00:00
|
|
|
|
2013-08-08 23:36:51 +00:00
|
|
|
/*
|
|
|
|
* While stupid, CSS specifies that a pixel represents 1/96 of an inch.
|
2013-07-20 06:52:10 +00:00
|
|
|
* This ensures websites are not unusably small with a high DPI screen.
|
2013-08-08 23:36:51 +00:00
|
|
|
* It is equivalent to firefox's "layout.css.devPixelsPerPx" setting.
|
|
|
|
*/
|
2013-07-20 06:52:10 +00:00
|
|
|
if(zoomto96dpi) {
|
|
|
|
screen = gdk_window_get_screen(GTK_WIDGET(c->win)->window);
|
|
|
|
dpi = gdk_screen_get_resolution(screen);
|
|
|
|
if(dpi != -1) {
|
|
|
|
g_object_set(G_OBJECT(settings), "enforce-96-dpi", true,
|
|
|
|
NULL);
|
|
|
|
webkit_web_view_set_zoom_level(c->view, dpi/96);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-01-26 14:53:33 +00:00
|
|
|
if(enableinspector) {
|
|
|
|
c->inspector = WEBKIT_WEB_INSPECTOR(
|
|
|
|
webkit_web_view_get_inspector(c->view));
|
|
|
|
g_signal_connect(G_OBJECT(c->inspector), "inspect-web-view",
|
|
|
|
G_CALLBACK(inspector_new), c);
|
|
|
|
g_signal_connect(G_OBJECT(c->inspector), "show-window",
|
|
|
|
G_CALLBACK(inspector_show), c);
|
|
|
|
g_signal_connect(G_OBJECT(c->inspector), "close-window",
|
|
|
|
G_CALLBACK(inspector_close), c);
|
|
|
|
g_signal_connect(G_OBJECT(c->inspector), "finished",
|
|
|
|
G_CALLBACK(inspector_finished), c);
|
2013-01-26 20:01:23 +00:00
|
|
|
c->isinspecting = false;
|
2013-01-26 14:53:33 +00:00
|
|
|
}
|
2010-05-28 11:20:17 +00:00
|
|
|
|
2013-08-25 17:50:40 +00:00
|
|
|
if(runinfullscreen) {
|
|
|
|
c->fullscreen = 0;
|
|
|
|
fullscreen(c, NULL);
|
|
|
|
}
|
|
|
|
|
2009-10-13 19:52:43 +00:00
|
|
|
g_free(uri);
|
2010-05-17 09:45:28 +00:00
|
|
|
|
|
|
|
setatom(c, AtomFind, "");
|
|
|
|
setatom(c, AtomUri, "about:blank");
|
2012-11-16 09:53:30 +00:00
|
|
|
if(hidebackground)
|
2010-05-08 19:43:53 +00:00
|
|
|
webkit_web_view_set_transparent(c->view, TRUE);
|
2009-09-10 15:41:56 +00:00
|
|
|
|
2009-06-08 15:01:12 +00:00
|
|
|
c->title = NULL;
|
2009-06-06 14:30:11 +00:00
|
|
|
c->next = clients;
|
|
|
|
clients = c;
|
2013-01-26 20:01:23 +00:00
|
|
|
|
2009-09-07 22:00:43 +00:00
|
|
|
if(showxid) {
|
2009-09-09 09:00:38 +00:00
|
|
|
gdk_display_sync(gtk_widget_get_display(c->win));
|
2012-12-06 12:32:52 +00:00
|
|
|
printf("%u\n",
|
|
|
|
(guint)GDK_WINDOW_XID(GTK_WIDGET(c->win)->window));
|
2009-09-07 22:00:43 +00:00
|
|
|
fflush(NULL);
|
2012-02-21 11:00:01 +00:00
|
|
|
if (fclose(stdout) != 0) {
|
|
|
|
die("Error closing stdout");
|
|
|
|
}
|
2009-09-07 22:00:43 +00:00
|
|
|
}
|
2013-01-26 20:01:23 +00:00
|
|
|
|
2009-06-05 18:16:10 +00:00
|
|
|
return c;
|
2009-06-05 11:22:40 +00:00
|
|
|
}
|
|
|
|
|
2012-12-06 12:32:52 +00:00
|
|
|
static void
|
2012-10-13 05:16:08 +00:00
|
|
|
newwindow(Client *c, const Arg *arg, gboolean noembed) {
|
2009-10-16 13:35:11 +00:00
|
|
|
guint i = 0;
|
2013-07-12 04:52:37 +00:00
|
|
|
const char *cmd[14], *uri;
|
2009-10-16 12:19:25 +00:00
|
|
|
const Arg a = { .v = (void *)cmd };
|
2009-10-16 14:33:18 +00:00
|
|
|
char tmp[64];
|
2009-10-15 14:31:49 +00:00
|
|
|
|
2012-10-31 20:13:50 +00:00
|
|
|
cmd[i++] = argv0;
|
2013-02-21 14:59:07 +00:00
|
|
|
if(!enablescrollbars)
|
|
|
|
cmd[i++] = "-b";
|
2012-10-13 05:16:08 +00:00
|
|
|
if(embed && !noembed) {
|
2009-10-15 14:31:49 +00:00
|
|
|
cmd[i++] = "-e";
|
|
|
|
snprintf(tmp, LENGTH(tmp), "%u\n", (int)embed);
|
|
|
|
cmd[i++] = tmp;
|
|
|
|
}
|
2012-11-20 15:02:57 +00:00
|
|
|
if(!loadimages)
|
2010-03-26 20:44:48 +00:00
|
|
|
cmd[i++] = "-i";
|
2013-03-11 21:08:14 +00:00
|
|
|
if(kioskmode)
|
2013-03-11 20:26:22 +00:00
|
|
|
cmd[i++] = "-k";
|
2013-02-21 14:59:07 +00:00
|
|
|
if(!enableplugins)
|
|
|
|
cmd[i++] = "-p";
|
|
|
|
if(!enablescripts)
|
|
|
|
cmd[i++] = "-s";
|
2010-03-24 18:16:10 +00:00
|
|
|
if(showxid)
|
2009-10-15 14:31:49 +00:00
|
|
|
cmd[i++] = "-x";
|
2013-07-12 04:52:37 +00:00
|
|
|
cmd[i++] = "-c";
|
|
|
|
cmd[i++] = cookiefile;
|
2009-10-15 14:31:49 +00:00
|
|
|
cmd[i++] = "--";
|
2009-10-20 21:46:54 +00:00
|
|
|
uri = arg->v ? (char *)arg->v : c->linkhover;
|
2009-10-16 13:35:11 +00:00
|
|
|
if(uri)
|
|
|
|
cmd[i++] = uri;
|
2009-10-15 14:31:49 +00:00
|
|
|
cmd[i++] = NULL;
|
2009-10-16 12:19:25 +00:00
|
|
|
spawn(NULL, &a);
|
2009-10-15 14:31:49 +00:00
|
|
|
}
|
|
|
|
|
2012-10-13 05:28:16 +00:00
|
|
|
static void
|
|
|
|
populatepopup(WebKitWebView *web, GtkMenu *menu, Client *c) {
|
|
|
|
GList *items = gtk_container_get_children(GTK_CONTAINER(menu));
|
|
|
|
|
|
|
|
for(GList *l = items; l; l = l->next) {
|
|
|
|
g_signal_connect(l->data, "activate", G_CALLBACK(popupactivate), c);
|
|
|
|
}
|
|
|
|
|
|
|
|
g_list_free(items);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
popupactivate(GtkMenuItem *menu, Client *c) {
|
|
|
|
/*
|
|
|
|
* context-menu-action-2000 open link
|
|
|
|
* context-menu-action-1 open link in window
|
|
|
|
* context-menu-action-2 download linked file
|
|
|
|
* context-menu-action-3 copy link location
|
|
|
|
* context-menu-action-13 reload
|
|
|
|
* context-menu-action-10 back
|
|
|
|
* context-menu-action-11 forward
|
|
|
|
* context-menu-action-12 stop
|
|
|
|
*/
|
|
|
|
|
|
|
|
GtkAction *a = NULL;
|
|
|
|
const char *name;
|
|
|
|
GtkClipboard *prisel;
|
|
|
|
|
|
|
|
a = gtk_activatable_get_related_action(GTK_ACTIVATABLE(menu));
|
|
|
|
if(a == NULL)
|
|
|
|
return;
|
|
|
|
|
|
|
|
name = gtk_action_get_name(a);
|
|
|
|
if(!g_strcmp0(name, "context-menu-action-3")) {
|
|
|
|
prisel = gtk_clipboard_get(GDK_SELECTION_PRIMARY);
|
|
|
|
gtk_clipboard_set_text(prisel, c->linkhover, -1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-12-06 12:32:52 +00:00
|
|
|
static void
|
2009-10-16 14:33:18 +00:00
|
|
|
pasteuri(GtkClipboard *clipboard, const char *text, gpointer d) {
|
2009-10-20 16:57:08 +00:00
|
|
|
Arg arg = {.v = text };
|
2009-06-12 12:41:09 +00:00
|
|
|
if(text != NULL)
|
2009-09-06 11:40:41 +00:00
|
|
|
loaduri((Client *) d, &arg);
|
2009-06-09 20:08:59 +00:00
|
|
|
}
|
|
|
|
|
2012-12-06 12:32:52 +00:00
|
|
|
static void
|
2009-10-28 19:43:30 +00:00
|
|
|
print(Client *c, const Arg *arg) {
|
|
|
|
webkit_web_frame_print(webkit_web_view_get_main_frame(c->view));
|
|
|
|
}
|
|
|
|
|
2012-12-06 12:32:52 +00:00
|
|
|
static GdkFilterReturn
|
2009-06-06 18:34:55 +00:00
|
|
|
processx(GdkXEvent *e, GdkEvent *event, gpointer d) {
|
|
|
|
Client *c = (Client *)d;
|
2009-06-09 08:29:47 +00:00
|
|
|
XPropertyEvent *ev;
|
2009-09-06 11:40:41 +00:00
|
|
|
Arg arg;
|
2009-09-04 11:20:48 +00:00
|
|
|
|
2009-06-06 18:34:55 +00:00
|
|
|
if(((XEvent *)e)->type == PropertyNotify) {
|
|
|
|
ev = &((XEvent *)e)->xproperty;
|
2010-05-17 09:45:28 +00:00
|
|
|
if(ev->state == PropertyNewValue) {
|
|
|
|
if(ev->atom == atoms[AtomFind]) {
|
2009-10-20 21:46:54 +00:00
|
|
|
arg.b = TRUE;
|
|
|
|
find(c, &arg);
|
2013-03-14 18:14:44 +00:00
|
|
|
|
2010-05-17 09:45:28 +00:00
|
|
|
return GDK_FILTER_REMOVE;
|
2013-03-14 18:14:44 +00:00
|
|
|
} else if(ev->atom == atoms[AtomGo]) {
|
2010-05-17 09:45:28 +00:00
|
|
|
arg.v = getatom(c, AtomGo);
|
|
|
|
loaduri(c, &arg);
|
2013-03-14 18:14:44 +00:00
|
|
|
|
2010-05-17 09:45:28 +00:00
|
|
|
return GDK_FILTER_REMOVE;
|
2009-06-08 20:55:48 +00:00
|
|
|
}
|
2009-06-06 18:34:55 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return GDK_FILTER_CONTINUE;
|
|
|
|
}
|
|
|
|
|
2012-12-06 12:32:52 +00:00
|
|
|
static void
|
2010-03-08 08:24:55 +00:00
|
|
|
progresschange(WebKitWebView *view, GParamSpec *pspec, Client *c) {
|
2010-03-08 09:06:32 +00:00
|
|
|
c->progress = webkit_web_view_get_progress(c->view) * 100;
|
2013-04-14 12:26:44 +00:00
|
|
|
updatetitle(c);
|
2009-06-09 08:29:47 +00:00
|
|
|
}
|
|
|
|
|
2012-12-06 12:32:52 +00:00
|
|
|
static void
|
2009-09-06 11:40:41 +00:00
|
|
|
reload(Client *c, const Arg *arg) {
|
|
|
|
gboolean nocache = *(gboolean *)arg;
|
2013-02-16 23:37:43 +00:00
|
|
|
if(nocache) {
|
2009-09-06 11:40:41 +00:00
|
|
|
webkit_web_view_reload_bypass_cache(c->view);
|
2013-02-16 23:37:43 +00:00
|
|
|
} else {
|
2009-09-06 11:40:41 +00:00
|
|
|
webkit_web_view_reload(c->view);
|
2013-02-16 23:37:43 +00:00
|
|
|
}
|
2009-09-06 11:40:41 +00:00
|
|
|
}
|
|
|
|
|
2012-12-06 12:32:52 +00:00
|
|
|
static void
|
2012-05-31 09:46:24 +00:00
|
|
|
scroll_h(Client *c, const Arg *arg) {
|
2012-10-12 09:48:38 +00:00
|
|
|
scroll(gtk_scrolled_window_get_hadjustment(
|
|
|
|
GTK_SCROLLED_WINDOW(c->scroll)), arg);
|
2012-05-31 09:46:24 +00:00
|
|
|
}
|
|
|
|
|
2012-12-06 12:32:52 +00:00
|
|
|
static void
|
2012-05-31 09:46:24 +00:00
|
|
|
scroll_v(Client *c, const Arg *arg) {
|
2012-10-12 09:48:38 +00:00
|
|
|
scroll(gtk_scrolled_window_get_vadjustment(
|
|
|
|
GTK_SCROLLED_WINDOW(c->scroll)), arg);
|
2012-05-31 09:46:24 +00:00
|
|
|
}
|
|
|
|
|
2012-12-06 12:32:52 +00:00
|
|
|
static void
|
2012-05-31 09:46:24 +00:00
|
|
|
scroll(GtkAdjustment *a, const Arg *arg) {
|
2012-10-12 09:48:38 +00:00
|
|
|
gdouble v;
|
|
|
|
|
|
|
|
v = gtk_adjustment_get_value(a);
|
|
|
|
switch (arg->i){
|
|
|
|
case +10000:
|
|
|
|
case -10000:
|
|
|
|
v += gtk_adjustment_get_page_increment(a) *
|
|
|
|
(arg->i / 10000);
|
|
|
|
break;
|
|
|
|
case +20000:
|
|
|
|
case -20000:
|
|
|
|
default:
|
|
|
|
v += gtk_adjustment_get_step_increment(a) * arg->i;
|
|
|
|
}
|
2012-05-31 09:46:24 +00:00
|
|
|
|
2012-10-12 09:48:38 +00:00
|
|
|
v = MAX(v, 0.0);
|
|
|
|
v = MIN(v, gtk_adjustment_get_upper(a) -
|
|
|
|
gtk_adjustment_get_page_size(a));
|
|
|
|
gtk_adjustment_set_value(a, v);
|
2009-10-15 14:31:49 +00:00
|
|
|
}
|
|
|
|
|
2012-12-06 12:32:52 +00:00
|
|
|
static void
|
2010-05-17 09:45:28 +00:00
|
|
|
setatom(Client *c, int a, const char *v) {
|
2009-11-08 23:05:45 +00:00
|
|
|
XSync(dpy, False);
|
2012-12-06 12:32:52 +00:00
|
|
|
XChangeProperty(dpy, GDK_WINDOW_XID(GTK_WIDGET(c->win)->window),
|
|
|
|
atoms[a], XA_STRING, 8, PropModeReplace,
|
|
|
|
(unsigned char *)v, strlen(v) + 1);
|
2009-10-20 21:46:54 +00:00
|
|
|
}
|
|
|
|
|
2012-12-06 12:32:52 +00:00
|
|
|
static void
|
2009-09-10 07:25:08 +00:00
|
|
|
setup(void) {
|
2009-11-02 08:27:32 +00:00
|
|
|
char *proxy;
|
2009-12-15 16:16:01 +00:00
|
|
|
char *new_proxy;
|
2009-11-02 08:27:32 +00:00
|
|
|
SoupURI *puri;
|
2010-03-10 20:38:07 +00:00
|
|
|
SoupSession *s;
|
2009-09-10 15:51:16 +00:00
|
|
|
|
2009-10-15 14:31:49 +00:00
|
|
|
/* clean up any zombies immediately */
|
|
|
|
sigchld(0);
|
2009-09-16 23:09:00 +00:00
|
|
|
gtk_init(NULL, NULL);
|
|
|
|
|
2009-06-06 18:34:55 +00:00
|
|
|
dpy = GDK_DISPLAY();
|
2010-05-17 09:45:28 +00:00
|
|
|
|
|
|
|
/* atoms */
|
|
|
|
atoms[AtomFind] = XInternAtom(dpy, "_SURF_FIND", False);
|
|
|
|
atoms[AtomGo] = XInternAtom(dpy, "_SURF_GO", False);
|
|
|
|
atoms[AtomUri] = XInternAtom(dpy, "_SURF_URI", False);
|
2009-09-10 15:41:56 +00:00
|
|
|
|
2010-03-24 17:17:19 +00:00
|
|
|
/* dirs and files */
|
2009-10-13 19:52:43 +00:00
|
|
|
cookiefile = buildpath(cookiefile);
|
|
|
|
scriptfile = buildpath(scriptfile);
|
|
|
|
stylefile = buildpath(stylefile);
|
2009-09-10 15:51:16 +00:00
|
|
|
|
2010-03-24 17:17:19 +00:00
|
|
|
/* request handler */
|
2010-03-10 20:38:07 +00:00
|
|
|
s = webkit_get_default_session();
|
2012-10-16 19:54:37 +00:00
|
|
|
|
|
|
|
/* cookie jar */
|
2012-12-06 12:32:52 +00:00
|
|
|
soup_session_add_feature(s,
|
|
|
|
SOUP_SESSION_FEATURE(cookiejar_new(cookiefile,
|
|
|
|
FALSE)));
|
2010-03-24 17:17:19 +00:00
|
|
|
|
2011-11-04 12:23:57 +00:00
|
|
|
/* ssl */
|
|
|
|
g_object_set(G_OBJECT(s), "ssl-ca-file", cafile, NULL);
|
|
|
|
g_object_set(G_OBJECT(s), "ssl-strict", strictssl, NULL);
|
|
|
|
|
2010-03-08 08:24:55 +00:00
|
|
|
/* proxy */
|
2009-11-02 08:27:32 +00:00
|
|
|
if((proxy = getenv("http_proxy")) && strcmp(proxy, "")) {
|
2009-12-15 16:16:01 +00:00
|
|
|
new_proxy = g_strrstr(proxy, "http://") ? g_strdup(proxy) :
|
2010-03-08 08:24:55 +00:00
|
|
|
g_strdup_printf("http://%s", proxy);
|
2009-12-15 16:16:01 +00:00
|
|
|
puri = soup_uri_new(new_proxy);
|
2009-11-02 08:27:32 +00:00
|
|
|
g_object_set(G_OBJECT(s), "proxy-uri", puri, NULL);
|
|
|
|
soup_uri_free(puri);
|
2009-12-15 16:16:01 +00:00
|
|
|
g_free(new_proxy);
|
2012-11-20 15:02:57 +00:00
|
|
|
usingproxy = 1;
|
2009-11-02 08:27:32 +00:00
|
|
|
}
|
2009-06-06 18:34:55 +00:00
|
|
|
}
|
|
|
|
|
2012-12-06 12:32:52 +00:00
|
|
|
static void
|
2009-10-28 19:43:30 +00:00
|
|
|
sigchld(int unused) {
|
|
|
|
if(signal(SIGCHLD, sigchld) == SIG_ERR)
|
|
|
|
die("Can't install SIGCHLD handler");
|
|
|
|
while(0 < waitpid(-1, NULL, WNOHANG));
|
|
|
|
}
|
|
|
|
|
2012-12-06 12:32:52 +00:00
|
|
|
static void
|
2009-09-09 12:00:31 +00:00
|
|
|
source(Client *c, const Arg *arg) {
|
|
|
|
Arg a = { .b = FALSE };
|
2009-10-14 13:19:00 +00:00
|
|
|
gboolean s;
|
2009-09-09 12:00:31 +00:00
|
|
|
|
|
|
|
s = webkit_web_view_get_view_source_mode(c->view);
|
2009-10-14 13:19:00 +00:00
|
|
|
webkit_web_view_set_view_source_mode(c->view, !s);
|
2009-09-09 12:00:31 +00:00
|
|
|
reload(c, &a);
|
|
|
|
}
|
|
|
|
|
2012-12-06 12:32:52 +00:00
|
|
|
static void
|
2009-10-15 14:31:49 +00:00
|
|
|
spawn(Client *c, const Arg *arg) {
|
|
|
|
if(fork() == 0) {
|
|
|
|
if(dpy)
|
|
|
|
close(ConnectionNumber(dpy));
|
|
|
|
setsid();
|
2009-10-16 14:33:18 +00:00
|
|
|
execvp(((char **)arg->v)[0], (char **)arg->v);
|
2009-10-17 18:33:27 +00:00
|
|
|
fprintf(stderr, "surf: execvp %s", ((char **)arg->v)[0]);
|
2009-10-15 14:31:49 +00:00
|
|
|
perror(" failed");
|
|
|
|
exit(0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-12-06 12:32:52 +00:00
|
|
|
static void
|
2011-11-03 13:09:19 +00:00
|
|
|
eval(Client *c, const Arg *arg) {
|
|
|
|
WebKitWebFrame *frame = webkit_web_view_get_main_frame(c->view);
|
2012-10-12 09:48:38 +00:00
|
|
|
evalscript(webkit_web_frame_get_global_context(frame),
|
|
|
|
((char **)arg->v)[0], "");
|
2011-11-03 13:09:19 +00:00
|
|
|
}
|
|
|
|
|
2012-12-06 12:32:52 +00:00
|
|
|
static void
|
2009-10-28 19:43:30 +00:00
|
|
|
stop(Client *c, const Arg *arg) {
|
2010-05-17 08:58:08 +00:00
|
|
|
webkit_web_view_stop_loading(c->view);
|
2009-06-06 18:34:55 +00:00
|
|
|
}
|
|
|
|
|
2012-12-06 12:32:52 +00:00
|
|
|
static void
|
2009-10-28 19:43:30 +00:00
|
|
|
titlechange(WebKitWebView *v, WebKitWebFrame *f, const char *t, Client *c) {
|
|
|
|
c->title = copystr(&c->title, t);
|
2013-04-14 12:26:44 +00:00
|
|
|
updatetitle(c);
|
2009-06-08 15:25:52 +00:00
|
|
|
}
|
|
|
|
|
2012-12-06 12:32:52 +00:00
|
|
|
static void
|
2012-11-15 14:26:48 +00:00
|
|
|
toggle(Client *c, const Arg *arg) {
|
2012-11-15 13:53:27 +00:00
|
|
|
WebKitWebSettings *settings;
|
|
|
|
char *name = (char *)arg->v;
|
|
|
|
gboolean value;
|
|
|
|
Arg a = { .b = FALSE };
|
2012-11-15 13:52:22 +00:00
|
|
|
|
2012-11-15 13:53:27 +00:00
|
|
|
settings = webkit_web_view_get_settings(c->view);
|
|
|
|
g_object_get(G_OBJECT(settings), name, &value, NULL);
|
|
|
|
g_object_set(G_OBJECT(settings), name, !value, NULL);
|
2012-11-15 13:52:22 +00:00
|
|
|
|
2013-04-28 19:26:56 +00:00
|
|
|
reload(c, &a);
|
2012-11-15 13:52:22 +00:00
|
|
|
}
|
|
|
|
|
2013-02-21 14:59:07 +00:00
|
|
|
static void
|
|
|
|
twitch(Client *c, const Arg *arg) {
|
|
|
|
GtkAdjustment *a;
|
|
|
|
gdouble v;
|
|
|
|
|
|
|
|
a = gtk_scrolled_window_get_vadjustment(
|
|
|
|
GTK_SCROLLED_WINDOW(c->scroll));
|
|
|
|
|
|
|
|
v = gtk_adjustment_get_value(a);
|
|
|
|
|
|
|
|
v += arg->i;
|
|
|
|
|
|
|
|
v = MAX(v, 0.0);
|
|
|
|
v = MIN(v, gtk_adjustment_get_upper(a) -
|
|
|
|
gtk_adjustment_get_page_size(a));
|
|
|
|
gtk_adjustment_set_value(a, v);
|
|
|
|
}
|
|
|
|
|
2013-04-28 19:26:56 +00:00
|
|
|
static void
|
|
|
|
togglegeolocation(Client *c, const Arg *arg) {
|
|
|
|
Arg a = { .b = FALSE };
|
|
|
|
|
|
|
|
allowgeolocation ^= 1;
|
|
|
|
|
|
|
|
reload(c, &a);
|
|
|
|
}
|
|
|
|
|
2013-02-21 14:59:07 +00:00
|
|
|
static void
|
|
|
|
togglescrollbars(Client *c, const Arg *arg) {
|
|
|
|
GtkPolicyType vspolicy;
|
|
|
|
Arg a;
|
|
|
|
|
|
|
|
gtk_scrolled_window_get_policy(GTK_SCROLLED_WINDOW(c->scroll), NULL, &vspolicy);
|
|
|
|
|
|
|
|
if(vspolicy == GTK_POLICY_AUTOMATIC) {
|
|
|
|
gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(c->scroll),
|
|
|
|
GTK_POLICY_NEVER, GTK_POLICY_NEVER);
|
|
|
|
} else {
|
|
|
|
gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(c->scroll),
|
|
|
|
GTK_POLICY_AUTOMATIC, GTK_POLICY_AUTOMATIC);
|
|
|
|
a.i = +1;
|
|
|
|
twitch(c, &a);
|
|
|
|
a.i = -1;
|
|
|
|
twitch(c, &a);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-02-16 23:37:43 +00:00
|
|
|
static void
|
|
|
|
togglestyle(Client *c, const Arg *arg) {
|
|
|
|
WebKitWebSettings *settings;
|
|
|
|
char *uri;
|
|
|
|
|
|
|
|
settings = webkit_web_view_get_settings(c->view);
|
|
|
|
g_object_get(G_OBJECT(settings), "user-stylesheet-uri", &uri, NULL);
|
|
|
|
uri = uri[0] ? g_strdup("") : g_strconcat("file://", stylefile, NULL);
|
|
|
|
g_object_set(G_OBJECT(settings), "user-stylesheet-uri", uri, NULL);
|
|
|
|
|
2013-04-14 12:26:44 +00:00
|
|
|
updatetitle(c);
|
2013-02-16 23:37:43 +00:00
|
|
|
}
|
|
|
|
|
2012-12-06 12:32:52 +00:00
|
|
|
static void
|
2012-11-15 14:26:48 +00:00
|
|
|
gettogglestat(Client *c){
|
|
|
|
gboolean value;
|
2013-02-16 15:18:05 +00:00
|
|
|
char *uri;
|
2012-11-15 14:26:48 +00:00
|
|
|
WebKitWebSettings *settings = webkit_web_view_get_settings(c->view);
|
|
|
|
|
2012-11-20 15:02:57 +00:00
|
|
|
g_object_get(G_OBJECT(settings), "enable-caret-browsing",
|
|
|
|
&value, NULL);
|
|
|
|
togglestat[0] = value? 'C': 'c';
|
|
|
|
|
2013-04-28 19:26:56 +00:00
|
|
|
togglestat[1] = allowgeolocation? 'G': 'g';
|
|
|
|
|
2012-11-15 14:26:48 +00:00
|
|
|
g_object_get(G_OBJECT(settings), "auto-load-images", &value, NULL);
|
2013-04-28 19:26:56 +00:00
|
|
|
togglestat[2] = value? 'I': 'i';
|
2012-11-20 15:02:57 +00:00
|
|
|
|
2012-11-15 14:26:48 +00:00
|
|
|
g_object_get(G_OBJECT(settings), "enable-scripts", &value, NULL);
|
2013-04-28 19:26:56 +00:00
|
|
|
togglestat[3] = value? 'S': 's';
|
2012-11-20 15:02:57 +00:00
|
|
|
|
2012-11-15 14:26:48 +00:00
|
|
|
g_object_get(G_OBJECT(settings), "enable-plugins", &value, NULL);
|
2013-04-28 19:26:56 +00:00
|
|
|
togglestat[4] = value? 'V': 'v';
|
2012-11-20 15:02:57 +00:00
|
|
|
|
2013-02-16 15:18:05 +00:00
|
|
|
g_object_get(G_OBJECT(settings), "user-stylesheet-uri", &uri, NULL);
|
2013-04-28 19:26:56 +00:00
|
|
|
togglestat[5] = uri[0] ? 'M': 'm';
|
2013-02-16 15:18:05 +00:00
|
|
|
|
2013-04-28 19:26:56 +00:00
|
|
|
togglestat[6] = '\0';
|
2012-11-15 14:26:48 +00:00
|
|
|
}
|
|
|
|
|
2013-02-12 19:36:56 +00:00
|
|
|
static void
|
|
|
|
getpagestat(Client *c) {
|
2013-02-12 20:26:24 +00:00
|
|
|
const char *uri = geturi(c);
|
|
|
|
|
2013-02-14 23:57:36 +00:00
|
|
|
if(strstr(uri, "https://") == uri) {
|
2013-02-12 20:26:24 +00:00
|
|
|
pagestat[0] = c->sslfailed ? 'U' : 'T';
|
2013-02-14 23:57:36 +00:00
|
|
|
} else {
|
2013-02-12 20:26:24 +00:00
|
|
|
pagestat[0] = '-';
|
2013-02-14 23:57:36 +00:00
|
|
|
}
|
2013-02-12 20:26:24 +00:00
|
|
|
|
2013-02-12 19:36:56 +00:00
|
|
|
pagestat[1] = usingproxy ? 'P' : '-';
|
2013-02-14 23:57:36 +00:00
|
|
|
pagestat[2] = '\0';
|
|
|
|
|
2013-02-12 19:36:56 +00:00
|
|
|
}
|
2012-11-15 14:26:48 +00:00
|
|
|
|
2012-12-06 12:32:52 +00:00
|
|
|
static void
|
2013-04-14 12:26:44 +00:00
|
|
|
updatetitle(Client *c) {
|
2009-10-16 14:33:18 +00:00
|
|
|
char *t;
|
2009-06-08 14:34:46 +00:00
|
|
|
|
2013-04-14 12:26:44 +00:00
|
|
|
if(showindicators) {
|
|
|
|
gettogglestat(c);
|
|
|
|
getpagestat(c);
|
2012-11-15 14:26:48 +00:00
|
|
|
|
2013-04-14 12:26:44 +00:00
|
|
|
if(c->linkhover) {
|
|
|
|
t = g_strdup_printf("%s:%s | %s", togglestat,
|
|
|
|
pagestat, c->linkhover);
|
|
|
|
} else if(c->progress != 100) {
|
|
|
|
t = g_strdup_printf("[%i%%] %s:%s | %s", c->progress,
|
|
|
|
togglestat, pagestat, c->title);
|
|
|
|
} else {
|
|
|
|
t = g_strdup_printf("%s:%s | %s", togglestat, pagestat,
|
|
|
|
c->title);
|
|
|
|
}
|
|
|
|
|
|
|
|
gtk_window_set_title(GTK_WINDOW(c->win), t);
|
|
|
|
g_free(t);
|
2012-10-28 13:06:17 +00:00
|
|
|
} else {
|
2013-04-14 12:26:44 +00:00
|
|
|
gtk_window_set_title(GTK_WINDOW(c->win), c->title);
|
2012-10-28 13:06:17 +00:00
|
|
|
}
|
2009-10-27 07:11:44 +00:00
|
|
|
}
|
|
|
|
|
2012-12-06 12:32:52 +00:00
|
|
|
static void
|
2009-10-15 14:31:49 +00:00
|
|
|
updatewinid(Client *c) {
|
|
|
|
snprintf(winid, LENGTH(winid), "%u",
|
|
|
|
(int)GDK_WINDOW_XID(GTK_WIDGET(c->win)->window));
|
|
|
|
}
|
|
|
|
|
2012-12-06 12:32:52 +00:00
|
|
|
static void
|
2009-10-28 19:43:30 +00:00
|
|
|
usage(void) {
|
2013-03-11 20:26:22 +00:00
|
|
|
die("usage: %s [-biknpsvx] [-c cookiefile] [-e xid] [-r scriptfile]"
|
2013-01-26 14:53:33 +00:00
|
|
|
" [-t stylefile] [-u useragent] [uri]\n", basename(argv0));
|
2009-10-28 19:43:30 +00:00
|
|
|
}
|
|
|
|
|
2012-12-06 12:32:52 +00:00
|
|
|
static void
|
|
|
|
windowobjectcleared(GtkWidget *w, WebKitWebFrame *frame, JSContextRef js,
|
|
|
|
JSObjectRef win, Client *c) {
|
2012-06-11 14:45:48 +00:00
|
|
|
runscript(frame);
|
2009-09-16 08:06:21 +00:00
|
|
|
}
|
|
|
|
|
2012-12-06 12:32:52 +00:00
|
|
|
static void
|
2009-09-07 07:51:51 +00:00
|
|
|
zoom(Client *c, const Arg *arg) {
|
2009-10-20 18:49:33 +00:00
|
|
|
c->zoomed = TRUE;
|
2012-12-02 21:41:18 +00:00
|
|
|
if(arg->i < 0) {
|
|
|
|
/* zoom out */
|
2009-09-06 11:40:41 +00:00
|
|
|
webkit_web_view_zoom_out(c->view);
|
2012-12-02 21:41:18 +00:00
|
|
|
} else if(arg->i > 0) {
|
|
|
|
/* zoom in */
|
2009-09-06 11:40:41 +00:00
|
|
|
webkit_web_view_zoom_in(c->view);
|
2012-12-02 21:41:18 +00:00
|
|
|
} else {
|
|
|
|
/* reset */
|
2009-10-20 18:49:33 +00:00
|
|
|
c->zoomed = FALSE;
|
2009-09-07 07:44:21 +00:00
|
|
|
webkit_web_view_set_zoom_level(c->view, 1.0);
|
2009-10-20 18:49:33 +00:00
|
|
|
}
|
2009-09-06 11:40:41 +00:00
|
|
|
}
|
|
|
|
|
2010-03-24 19:56:56 +00:00
|
|
|
int
|
|
|
|
main(int argc, char *argv[]) {
|
2009-09-06 11:40:41 +00:00
|
|
|
Arg arg;
|
2009-06-05 11:22:40 +00:00
|
|
|
|
2012-11-08 21:05:40 +00:00
|
|
|
memset(&arg, 0, sizeof(arg));
|
|
|
|
|
2009-09-16 23:09:00 +00:00
|
|
|
/* command line args */
|
2012-10-31 20:13:50 +00:00
|
|
|
ARGBEGIN {
|
2013-02-21 14:59:07 +00:00
|
|
|
case 'b':
|
|
|
|
enablescrollbars = 0;
|
|
|
|
break;
|
2013-05-21 19:30:00 +00:00
|
|
|
case 'B':
|
|
|
|
enablescrollbars = 1;
|
|
|
|
break;
|
2012-10-31 20:13:50 +00:00
|
|
|
case 'c':
|
|
|
|
cookiefile = EARGF(usage());
|
|
|
|
break;
|
|
|
|
case 'e':
|
|
|
|
embed = strtol(EARGF(usage()), NULL, 0);
|
|
|
|
break;
|
2013-08-25 17:50:40 +00:00
|
|
|
case 'f':
|
|
|
|
runinfullscreen = 1;
|
|
|
|
break;
|
2013-04-28 19:26:56 +00:00
|
|
|
case 'g':
|
|
|
|
allowgeolocation = 0;
|
|
|
|
break;
|
2013-05-21 19:30:00 +00:00
|
|
|
case 'G':
|
|
|
|
allowgeolocation = 1;
|
|
|
|
break;
|
2012-10-31 20:13:50 +00:00
|
|
|
case 'i':
|
2012-11-20 15:02:57 +00:00
|
|
|
loadimages = 0;
|
2012-10-31 20:13:50 +00:00
|
|
|
break;
|
2013-05-21 19:30:00 +00:00
|
|
|
case 'I':
|
|
|
|
loadimages = 1;
|
|
|
|
break;
|
2013-03-11 20:26:22 +00:00
|
|
|
case 'k':
|
2013-05-21 19:30:00 +00:00
|
|
|
kioskmode = 0;
|
|
|
|
break;
|
|
|
|
case 'K':
|
2013-03-11 20:26:22 +00:00
|
|
|
kioskmode = 1;
|
|
|
|
break;
|
2013-01-26 14:53:33 +00:00
|
|
|
case 'n':
|
|
|
|
enableinspector = 0;
|
|
|
|
break;
|
2013-05-21 19:30:00 +00:00
|
|
|
case 'N':
|
|
|
|
enableinspector = 1;
|
|
|
|
break;
|
2012-10-31 20:13:50 +00:00
|
|
|
case 'p':
|
2012-11-20 15:02:57 +00:00
|
|
|
enableplugins = 0;
|
2012-10-31 20:13:50 +00:00
|
|
|
break;
|
2013-05-21 19:30:00 +00:00
|
|
|
case 'P':
|
|
|
|
enableplugins = 1;
|
|
|
|
break;
|
2012-10-31 20:13:50 +00:00
|
|
|
case 'r':
|
|
|
|
scriptfile = EARGF(usage());
|
|
|
|
break;
|
|
|
|
case 's':
|
2012-11-20 15:02:57 +00:00
|
|
|
enablescripts = 0;
|
2012-10-31 20:13:50 +00:00
|
|
|
break;
|
2013-05-21 19:30:00 +00:00
|
|
|
case 'S':
|
|
|
|
enablescripts = 1;
|
|
|
|
break;
|
2012-10-31 20:13:50 +00:00
|
|
|
case 't':
|
|
|
|
stylefile = EARGF(usage());
|
|
|
|
break;
|
2012-10-31 20:25:14 +00:00
|
|
|
case 'u':
|
|
|
|
useragent = EARGF(usage());
|
|
|
|
break;
|
2013-01-26 14:53:33 +00:00
|
|
|
case 'v':
|
|
|
|
die("surf-"VERSION", ©2009-2012 surf engineers, "
|
|
|
|
"see LICENSE for details\n");
|
2012-10-31 20:13:50 +00:00
|
|
|
case 'x':
|
|
|
|
showxid = TRUE;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
usage();
|
|
|
|
} ARGEND;
|
|
|
|
if(argc > 0)
|
|
|
|
arg.v = argv[0];
|
|
|
|
|
2009-09-13 14:15:28 +00:00
|
|
|
setup();
|
2010-09-09 09:15:02 +00:00
|
|
|
newclient();
|
2009-10-28 18:27:11 +00:00
|
|
|
if(arg.v)
|
2009-10-13 21:22:25 +00:00
|
|
|
loaduri(clients, &arg);
|
2012-11-08 21:05:40 +00:00
|
|
|
|
2009-06-05 11:22:40 +00:00
|
|
|
gtk_main();
|
|
|
|
cleanup();
|
2012-10-31 20:13:50 +00:00
|
|
|
|
2009-06-05 11:22:40 +00:00
|
|
|
return EXIT_SUCCESS;
|
|
|
|
}
|
2012-10-31 20:13:50 +00:00
|
|
|
|