removing spatial navigation.
[surf.git] / surf.c
1 /* See LICENSE file for copyright and license details.
2  *
3  * To understand surf, start reading main().
4  */
5 #include <signal.h>
6 #include <X11/X.h>
7 #include <X11/Xatom.h>
8 #include <gtk/gtk.h>
9 #include <gdk/gdkx.h>
10 #include <gdk/gdk.h>
11 #include <gdk/gdkkeysyms.h>
12 #include <string.h>
13 #include <sys/types.h>
14 #include <sys/wait.h>
15 #include <unistd.h>
16 #include <stdlib.h>
17 #include <stdio.h>
18 #include <webkit/webkit.h>
19 #include <glib/gstdio.h>
20 #include <JavaScriptCore/JavaScript.h>
21 #include <sys/file.h>
22
23 #define LENGTH(x)               (sizeof x / sizeof x[0])
24 #define CLEANMASK(mask)         (mask & ~(GDK_MOD2_MASK))
25
26 enum { AtomFind, AtomGo, AtomUri, AtomHiLight, AtomLast };
27
28 typedef union Arg Arg;
29 union Arg {
30         gboolean b;
31         gint i;
32         const void *v;
33 };
34
35 typedef struct Client {
36         GtkWidget *win, *scroll, *vbox, *indicator;
37         WebKitWebView *view;
38         char *title, *linkhover;
39         const char *uri, *needle;
40         gint progress;
41         struct Client *next;
42         gboolean zoomed;
43 } Client;
44
45 typedef struct {
46         char *label;
47         void (*func)(Client *c, const Arg *arg);
48         const Arg arg;
49 } Item;
50
51 typedef struct {
52         guint mod;
53         guint keyval;
54         void (*func)(Client *c, const Arg *arg);
55         const Arg arg;
56 } Key;
57
58 static Display *dpy;
59 static Atom atoms[AtomLast];
60 static Client *clients = NULL;
61 static GdkNativeWindow embed = 0;
62 static gboolean showxid = FALSE;
63 static char winid[64];
64 static char *progname;
65 static gboolean loadimage = 1, plugin = 1, script = 1;
66
67 static char *buildpath(const char *path);
68 static void cleanup(void);
69 static void clipboard(Client *c, const Arg *arg);
70 static char *copystr(char **str, const char *src);
71 static WebKitWebView *createwindow(WebKitWebView *v, WebKitWebFrame *f, Client *c);
72 static gboolean decidedownload(WebKitWebView *v, WebKitWebFrame *f, WebKitNetworkRequest *r, gchar *m,  WebKitWebPolicyDecision *p, Client *c);
73 static gboolean decidewindow(WebKitWebView *v, WebKitWebFrame *f, WebKitNetworkRequest *r, WebKitWebNavigationAction *n, WebKitWebPolicyDecision *p, Client *c);
74 static void destroyclient(Client *c);
75 static void destroywin(GtkWidget* w, Client *c);
76 static void die(char *str);
77 static void drawindicator(Client *c);
78 static gboolean exposeindicator(GtkWidget *w, GdkEventExpose *e, Client *c);
79 static void find(Client *c, const Arg *arg);
80 static const char *getatom(Client *c, int a);
81 static const char *getcookies(SoupURI *uri);
82 static char *geturi(Client *c);
83 void gotheaders(SoupMessage *msg, gpointer user_data);
84 static gboolean keypress(GtkWidget *w, GdkEventKey *ev, Client *c);
85 static void linkhover(WebKitWebView *v, const char* t, const char* l, Client *c);
86 static void loadstatuschange(WebKitWebView *view, GParamSpec *pspec, Client *c);
87 static void loaduri(Client *c, const Arg *arg);
88 static void mousemove(GtkWidget *w, GdkEventMotion *e, Client *c);
89 static void navigate(Client *c, const Arg *arg);
90 static Client *newclient(void);
91 static void newwindow(Client *c, const Arg *arg);
92 static void newrequest(SoupSession *s, SoupMessage *msg, gpointer v);
93 static void pasteuri(GtkClipboard *clipboard, const char *text, gpointer d);
94 static void print(Client *c, const Arg *arg);
95 static GdkFilterReturn processx(GdkXEvent *xevent, GdkEvent *event, gpointer d);
96 static void progresschange(WebKitWebView *view, GParamSpec *pspec, Client *c);
97 static void reload(Client *c, const Arg *arg);
98 static void resize(GtkWidget *w, GtkAllocation *a, Client *c);
99 static void scroll(Client *c, const Arg *arg);
100 static void setatom(Client *c, int a, const char *v);
101 static void setcookie(SoupCookie *c);
102 static void setup(void);
103 static void sigchld(int unused);
104 static void source(Client *c, const Arg *arg);
105 static void spawn(Client *c, const Arg *arg);
106 static void stop(Client *c, const Arg *arg);
107 static void titlechange(WebKitWebView *v, WebKitWebFrame* frame, const char* title, Client *c);
108 static void update(Client *c);
109 static void updatewinid(Client *c);
110 static void usage(void);
111 static void windowobjectcleared(GtkWidget *w, WebKitWebFrame *frame, JSContextRef js, JSObjectRef win, Client *c);
112 static void zoom(Client *c, const Arg *arg);
113
114 /* configuration, allows nested code to access above variables */
115 #include "config.h"
116
117 char *
118 buildpath(const char *path) {
119         char *apath, *p;
120         FILE *f;
121
122         /* creating directory */
123         if(path[0] == '/')
124                 apath = g_strdup(path);
125         else
126                 apath = g_strconcat(g_get_home_dir(), "/", path, NULL);
127         if((p = strrchr(apath, '/'))) {
128                 *p = '\0';
129                 g_mkdir_with_parents(apath, 0755);
130                 *p = '/';
131         }
132         /* creating file (gives error when apath ends with "/") */
133         if((f = fopen(apath, "a")))
134                 fclose(f);
135         return apath;
136 }
137
138 void
139 cleanup(void) {
140         while(clients)
141                 destroyclient(clients);
142         g_free(cookiefile);
143         g_free(scriptfile);
144         g_free(stylefile);
145 }
146
147 void
148 runscript(WebKitWebFrame *frame, JSContextRef js) {
149         JSStringRef jsscript;
150         char *script;
151         JSValueRef exception = NULL;
152         GError *error;
153         
154         if(g_file_get_contents(scriptfile, &script, NULL, &error)) {
155                 jsscript = JSStringCreateWithUTF8CString(script);
156                 JSEvaluateScript(js, jsscript, JSContextGetGlobalObject(js), NULL, 0, &exception);
157         }
158 }
159
160 void
161 clipboard(Client *c, const Arg *arg) {
162         gboolean paste = *(gboolean *)arg;
163
164         if(paste)
165                 gtk_clipboard_request_text(gtk_clipboard_get(GDK_SELECTION_PRIMARY), pasteuri, c);
166         else
167                 gtk_clipboard_set_text(gtk_clipboard_get(GDK_SELECTION_PRIMARY), c->linkhover ? c->linkhover : geturi(c), -1);
168 }
169
170 char *
171 copystr(char **str, const char *src) {
172         char *tmp;
173         tmp = g_strdup(src);
174
175         if(str && *str) {
176                 g_free(*str);
177                 *str = tmp;
178         }
179         return tmp;
180 }
181
182 WebKitWebView *
183 createwindow(WebKitWebView  *v, WebKitWebFrame *f, Client *c) {
184         Client *n = newclient();
185         return n->view;
186 }
187
188 gboolean
189 decidedownload(WebKitWebView *v, WebKitWebFrame *f, WebKitNetworkRequest *r, gchar *m,  WebKitWebPolicyDecision *p, Client *c) {
190         if(!webkit_web_view_can_show_mime_type(v, m)) {
191                 webkit_web_policy_decision_ignore(p);
192                 webkit_web_view_load_html_string(c->view,
193                                 "Can't display content.",
194                                 webkit_network_request_get_uri(r));
195                 return TRUE;
196         }
197         return FALSE;
198 }
199
200 gboolean
201 decidewindow(WebKitWebView *view, WebKitWebFrame *f, WebKitNetworkRequest *r, WebKitWebNavigationAction *n, WebKitWebPolicyDecision *p, Client *c) {
202         Arg arg;
203
204         if(webkit_web_navigation_action_get_reason(n) == WEBKIT_WEB_NAVIGATION_REASON_LINK_CLICKED) {
205                 webkit_web_policy_decision_ignore(p);
206                 arg.v = (void *)webkit_network_request_get_uri(r);
207                 newwindow(NULL, &arg);
208                 return TRUE;
209         }
210         return FALSE;
211 }
212
213 void
214 destroyclient(Client *c) {
215         Client *p;
216
217         gtk_widget_destroy(c->indicator);
218         gtk_widget_destroy(GTK_WIDGET(c->view));
219         gtk_widget_destroy(c->scroll);
220         gtk_widget_destroy(c->vbox);
221         gtk_widget_destroy(c->win);
222
223         for(p = clients; p && p->next != c; p = p->next);
224         if(p)
225                 p->next = c->next;
226         else
227                 clients = c->next;
228         free(c);
229         if(clients == NULL)
230                 gtk_main_quit();
231 }
232
233 void
234 destroywin(GtkWidget* w, Client *c) {
235         destroyclient(c);
236 }
237
238 void
239 die(char *str) {
240         fputs(str, stderr);
241         exit(EXIT_FAILURE);
242 }
243
244 void
245 drawindicator(Client *c) {
246         gint width;
247         const char *uri;
248         GtkWidget *w;
249         GdkGC *gc;
250         GdkColor fg;
251
252         uri = geturi(c);
253         w = c->indicator;
254         width = c->progress * w->allocation.width / 100;
255         gc = gdk_gc_new(w->window);
256         gdk_color_parse(strstr(uri, "https://") == uri ?
257                         progress_trust : progress, &fg);
258         gdk_gc_set_rgb_fg_color(gc, &fg);
259         gdk_draw_rectangle(w->window,
260                         w->style->bg_gc[GTK_WIDGET_STATE(w)],
261                         TRUE, 0, 0, w->allocation.width, w->allocation.height);
262         gdk_draw_rectangle(w->window, gc, TRUE, 0, 0, width,
263                         w->allocation.height);
264         g_object_unref(gc);
265 }
266
267 gboolean
268 exposeindicator(GtkWidget *w, GdkEventExpose *e, Client *c) {
269         drawindicator(c);
270         return TRUE;
271 }
272
273 void
274 find(Client *c, const Arg *arg) {
275         const char *s;
276
277         s = getatom(c, AtomFind);
278         gboolean forward = *(gboolean *)arg;
279         webkit_web_view_search_text(c->view, s, FALSE, forward, TRUE);
280 }
281
282 const char *
283 getcookies(SoupURI *uri) {
284         const char *c;
285         SoupCookieJar *j = soup_cookie_jar_text_new(cookiefile, TRUE);
286         c = soup_cookie_jar_get_cookies(j, uri, TRUE);
287         g_object_unref(j);
288         return c;
289 }
290
291 const char *
292 getatom(Client *c, int a) {
293         static char buf[BUFSIZ];
294         Atom adummy;
295         int idummy;
296         unsigned long ldummy;
297         unsigned char *p = NULL;
298
299         XGetWindowProperty(dpy, GDK_WINDOW_XID(GTK_WIDGET(c->win)->window),
300                         atoms[a], 0L, BUFSIZ, False, XA_STRING,
301                         &adummy, &idummy, &ldummy, &ldummy, &p);
302         if(p)
303                 strncpy(buf, (char *)p, LENGTH(buf)-1);
304         else
305                 buf[0] = '\0';
306         XFree(p);
307         return buf;
308 }
309
310 char *
311 geturi(Client *c) {
312         char *uri;
313
314         if(!(uri = (char *)webkit_web_view_get_uri(c->view)))
315                 uri = "about:blank";
316         return uri;
317 }
318
319 void
320 gotheaders(SoupMessage *msg, gpointer v) {
321         SoupURI *uri;
322         GSList *l, *p;
323
324         uri = soup_message_get_uri(msg);
325         for(p = l = soup_cookies_from_response(msg); p;
326                 p = g_slist_next(p))  {
327                 setcookie((SoupCookie *)p->data);
328         }
329         soup_cookies_free(l);
330 }
331
332 gboolean
333 keypress(GtkWidget* w, GdkEventKey *ev, Client *c) {
334         guint i;
335         gboolean processed = FALSE;
336
337         updatewinid(c);
338         for(i = 0; i < LENGTH(keys); i++) {
339                 if(gdk_keyval_to_lower(ev->keyval) == keys[i].keyval
340                                 && CLEANMASK(ev->state) == keys[i].mod
341                                 && keys[i].func) {
342                         keys[i].func(c, &(keys[i].arg));
343                         processed = TRUE;
344                 }
345         }
346         return processed;
347 }
348
349 void
350 linkhover(WebKitWebView *v, const char* t, const char* l, Client *c) {
351         if(l) {
352                 c->linkhover = copystr(&c->linkhover, l);
353         }
354         else if(c->linkhover) {
355                 free(c->linkhover);
356                 c->linkhover = NULL;
357         }
358         update(c);
359 }
360
361 void
362 loadstatuschange(WebKitWebView *view, GParamSpec *pspec, Client *c) {
363         switch(webkit_web_view_get_load_status (c->view)) {
364         case WEBKIT_LOAD_COMMITTED:
365                 setatom(c, AtomUri, geturi(c));
366                 break;
367         case WEBKIT_LOAD_FINISHED:
368                 c->progress = 0;
369                 update(c);
370                 break;
371         default:
372                 break;
373         }
374 }
375
376 void
377 loaduri(Client *c, const Arg *arg) {
378         char *u;
379         const char *uri = (char *)arg->v;
380         Arg a = { .b = FALSE };
381
382         if(strcmp(uri, "") == 0)
383                 return;
384         u = g_strrstr(uri, "://") ? g_strdup(uri)
385                 : g_strdup_printf("http://%s", uri);
386         /* prevents endless loop */
387         if(c->uri && strcmp(u, c->uri) == 0) {
388                 reload(c, &a);
389         }
390         else {
391                 webkit_web_view_load_uri(c->view, u);
392                 c->progress = 0;
393                 c->title = copystr(&c->title, u);
394                 g_free(u);
395                 update(c);
396         }
397 }
398
399 void
400 mousemove(GtkWidget *w, GdkEventMotion *e, Client *c) {
401         int result;
402         GdkEventButton coord;
403         WebKitHitTestResult *hit;
404
405         coord.x = e->x;
406         coord.y = e->y;
407         hit = webkit_web_view_get_hit_test_result(c->view, &coord);
408         g_object_get(hit, "context", &result, NULL);
409         if(result & WEBKIT_HIT_TEST_RESULT_CONTEXT_IMAGE && !c->linkhover) {
410                 puts("Picture");
411         }
412 }
413
414 void
415 navigate(Client *c, const Arg *arg) {
416         int steps = *(int *)arg;
417         webkit_web_view_go_back_or_forward(c->view, steps);
418 }
419
420 Client *
421 newclient(void) {
422         Client *c;
423         WebKitWebSettings *settings;
424         WebKitWebFrame *frame;
425         GdkGeometry hints = { 1, 1 };
426         char *uri, *ua;
427
428         if(!(c = calloc(1, sizeof(Client))))
429                 die("Cannot malloc!\n");
430         /* Window */
431         if(embed) {
432                 c->win = gtk_plug_new(embed);
433         }
434         else {
435                 c->win = gtk_window_new(GTK_WINDOW_TOPLEVEL);
436                 /* TA:  20091214:  Despite what the GNOME docs say, the ICCCM
437                  * is always correct, so we should still call this function.
438                  * But when doing so, we *must* differentiate between a
439                  * WM_CLASS and a resource on the window.  By convention, the
440                  * window class (WM_CLASS) is capped, while the resource is in
441                  * lowercase.   Both these values come as a pair.
442                  */
443                 gtk_window_set_wmclass(GTK_WINDOW(c->win), "surf", "surf");
444
445                 /* TA:  20091214:  And set the role here as well -- so that
446                  * sessions can pick this up.
447                  */
448                 gtk_window_set_role(GTK_WINDOW(c->win), "Surf");
449         }
450         gtk_window_set_default_size(GTK_WINDOW(c->win), 800, 600);
451         g_signal_connect(G_OBJECT(c->win), "destroy", G_CALLBACK(destroywin), c);
452         g_signal_connect(G_OBJECT(c->win), "key-press-event", G_CALLBACK(keypress), c);
453         g_signal_connect(G_OBJECT(c->win), "size-allocate", G_CALLBACK(resize), c);
454
455         /* VBox */
456         c->vbox = gtk_vbox_new(FALSE, 0);
457
458         /* Scrolled Window */
459         c->scroll = gtk_scrolled_window_new(NULL, NULL);
460         gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(c->scroll),
461                         GTK_POLICY_NEVER, GTK_POLICY_NEVER);
462
463         /* Webview */
464         c->view = WEBKIT_WEB_VIEW(webkit_web_view_new());
465         g_signal_connect(G_OBJECT(c->view), "title-changed", G_CALLBACK(titlechange), c);
466         g_signal_connect(G_OBJECT(c->view), "hovering-over-link", G_CALLBACK(linkhover), c);
467         g_signal_connect(G_OBJECT(c->view), "create-web-view", G_CALLBACK(createwindow), c);
468         g_signal_connect(G_OBJECT(c->view), "new-window-policy-decision-requested", G_CALLBACK(decidewindow), c);
469         g_signal_connect(G_OBJECT(c->view), "mime-type-policy-decision-requested", G_CALLBACK(decidedownload), c);
470         g_signal_connect(G_OBJECT(c->view), "window-object-cleared", G_CALLBACK(windowobjectcleared), c);
471         g_signal_connect(G_OBJECT(c->view), "notify::load-status", G_CALLBACK(loadstatuschange), c);
472         g_signal_connect(G_OBJECT(c->view), "notify::progress", G_CALLBACK(progresschange), c);
473         g_signal_connect(G_OBJECT(c->view), "motion-notify-event", G_CALLBACK(mousemove), c);
474
475         /* Indicator */
476         c->indicator = gtk_drawing_area_new();
477         gtk_widget_set_size_request(c->indicator, 0, 2);
478         g_signal_connect (G_OBJECT (c->indicator), "expose_event",
479                         G_CALLBACK (exposeindicator), c);
480
481         /* Arranging */
482         gtk_container_add(GTK_CONTAINER(c->scroll), GTK_WIDGET(c->view));
483         gtk_container_add(GTK_CONTAINER(c->win), c->vbox);
484         gtk_container_add(GTK_CONTAINER(c->vbox), c->scroll);
485         gtk_container_add(GTK_CONTAINER(c->vbox), c->indicator);
486
487         /* Setup */
488         gtk_box_set_child_packing(GTK_BOX(c->vbox), c->indicator, FALSE, FALSE, 0, GTK_PACK_START);
489         gtk_box_set_child_packing(GTK_BOX(c->vbox), c->scroll, TRUE, TRUE, 0, GTK_PACK_START);
490         gtk_widget_grab_focus(GTK_WIDGET(c->view));
491         gtk_widget_show(c->vbox);
492         gtk_widget_show(c->indicator);
493         gtk_widget_show(c->scroll);
494         gtk_widget_show(GTK_WIDGET(c->view));
495         gtk_widget_show(c->win);
496         gtk_window_set_geometry_hints(GTK_WINDOW(c->win), NULL, &hints, GDK_HINT_MIN_SIZE);
497         gdk_window_set_events(GTK_WIDGET(c->win)->window, GDK_ALL_EVENTS_MASK);
498         gdk_window_add_filter(GTK_WIDGET(c->win)->window, processx, c);
499         webkit_web_view_set_full_content_zoom(c->view, TRUE);
500         frame = webkit_web_view_get_main_frame(c->view);
501         runscript(frame, webkit_web_frame_get_global_context(frame));
502         settings = webkit_web_view_get_settings(c->view);
503         if(!(ua = getenv("SURF_USERAGENT")))
504                 ua = useragent;
505         g_object_set(G_OBJECT(settings), "user-agent", ua, NULL);
506         uri = g_strconcat("file://", stylefile, NULL);
507         g_object_set(G_OBJECT(settings), "user-stylesheet-uri", uri, NULL);
508         g_object_set(G_OBJECT(settings), "auto-load-images", loadimage, NULL);
509         g_object_set(G_OBJECT(settings), "enable-plugins", plugin, NULL);
510         g_object_set(G_OBJECT(settings), "enable-scripts", script, NULL);
511         g_free(uri);
512
513         setatom(c, AtomFind, "");
514         setatom(c, AtomUri, "about:blank");
515         setatom(c, AtomHiLight, "about:blank");
516         if(NOBACKGROUND)
517                 webkit_web_view_set_transparent(c->view, TRUE);
518
519         c->title = NULL;
520         c->next = clients;
521         clients = c;
522         if(showxid) {
523                 gdk_display_sync(gtk_widget_get_display(c->win));
524                 printf("%u\n", (guint)GDK_WINDOW_XID(GTK_WIDGET(c->win)->window));
525                 fflush(NULL);
526         }
527         return c;
528 }
529
530 void
531 newrequest(SoupSession *s, SoupMessage *msg, gpointer v) {
532         SoupMessageHeaders *h = msg->request_headers;
533         SoupURI *uri;
534         const char *c;
535
536         soup_message_headers_remove(h, "Cookie");
537         uri = soup_message_get_uri(msg);
538         if((c = getcookies(uri)))
539                 soup_message_headers_append(h, "Cookie", c);
540         g_signal_connect_after(G_OBJECT(msg), "got-headers", G_CALLBACK(gotheaders), NULL);
541 }
542
543 void
544 newwindow(Client *c, const Arg *arg) {
545         guint i = 0;
546         const char *cmd[10], *uri;
547         const Arg a = { .v = (void *)cmd };
548         char tmp[64];
549
550         cmd[i++] = progname;
551         if(embed) {
552                 cmd[i++] = "-e";
553                 snprintf(tmp, LENGTH(tmp), "%u\n", (int)embed);
554                 cmd[i++] = tmp;
555         }
556         if(!script)
557                 cmd[i++] = "-s";
558         if(!plugin)
559                 cmd[i++] = "-p";
560         if(!loadimage)
561                 cmd[i++] = "-i";
562         if(showxid)
563                 cmd[i++] = "-x";
564         cmd[i++] = "--";
565         uri = arg->v ? (char *)arg->v : c->linkhover;
566         if(uri)
567                 cmd[i++] = uri;
568         cmd[i++] = NULL;
569         spawn(NULL, &a);
570 }
571
572 void
573 pasteuri(GtkClipboard *clipboard, const char *text, gpointer d) {
574         Arg arg = {.v = text };
575         if(text != NULL)
576                 loaduri((Client *) d, &arg);
577 }
578
579 void
580 print(Client *c, const Arg *arg) {
581         webkit_web_frame_print(webkit_web_view_get_main_frame(c->view));
582 }
583
584 GdkFilterReturn
585 processx(GdkXEvent *e, GdkEvent *event, gpointer d) {
586         Client *c = (Client *)d;
587         XPropertyEvent *ev;
588         Arg arg;
589
590         if(((XEvent *)e)->type == PropertyNotify) {
591                 ev = &((XEvent *)e)->xproperty;
592                 if(ev->state == PropertyNewValue) {
593                         if(ev->atom == atoms[AtomFind]) {
594                                 arg.b = TRUE;
595                                 find(c, &arg);
596                                 return GDK_FILTER_REMOVE;
597                         }
598                         else if(ev->atom == atoms[AtomGo]) {
599                                 arg.v = getatom(c, AtomGo);
600                                 loaduri(c, &arg);
601                                 return GDK_FILTER_REMOVE;
602                         }
603                 }
604         }
605         return GDK_FILTER_CONTINUE;
606 }
607
608 void
609 progresschange(WebKitWebView *view, GParamSpec *pspec, Client *c) {
610         c->progress = webkit_web_view_get_progress(c->view) * 100;
611         update(c);
612 }
613
614 void
615 reload(Client *c, const Arg *arg) {
616         gboolean nocache = *(gboolean *)arg;
617         if(nocache)
618                  webkit_web_view_reload_bypass_cache(c->view);
619         else
620                  webkit_web_view_reload(c->view);
621 }
622
623 void
624 resize(GtkWidget *w, GtkAllocation *a, Client *c) {
625         double zoom;
626
627         if(c->zoomed)
628                 return;
629         zoom = webkit_web_view_get_zoom_level(c->view);
630         if(a->width * a->height < 300 * 400 && zoom != 0.2)
631                 webkit_web_view_set_zoom_level(c->view, 0.2);
632         else if(zoom != 1.0)
633                 webkit_web_view_set_zoom_level(c->view, 1.0);
634 }
635
636 void
637 scroll(Client *c, const Arg *arg) {
638         gdouble v;
639         GtkAdjustment *a;
640
641         a = gtk_scrolled_window_get_vadjustment(GTK_SCROLLED_WINDOW(c->scroll));
642         v = gtk_adjustment_get_value(a);
643         v += gtk_adjustment_get_step_increment(a) * arg->i;
644         v = MAX(v, 0.0);
645         v = MIN(v, gtk_adjustment_get_upper(a) - gtk_adjustment_get_page_size(a));
646         gtk_adjustment_set_value(a, v);
647 }
648
649 void
650 setcookie(SoupCookie *c) {
651         int lock;
652
653         lock = open(cookiefile, 0);
654         flock(lock, LOCK_EX);
655         SoupDate *e;
656         SoupCookieJar *j = soup_cookie_jar_text_new(cookiefile, FALSE);
657         c = soup_cookie_copy(c);
658         if(c->expires == NULL && sessiontime) {
659                 e = soup_date_new_from_time_t(time(NULL) + sessiontime);
660                 soup_cookie_set_expires(c, e);
661         }
662         soup_cookie_jar_add_cookie(j, c);
663         g_object_unref(j);
664         flock(lock, LOCK_UN);
665         close(lock);
666 }
667
668 void
669 setatom(Client *c, int a, const char *v) {
670         XSync(dpy, False);
671         XChangeProperty(dpy, GDK_WINDOW_XID(GTK_WIDGET(c->win)->window), atoms[a],
672                         XA_STRING, 8, PropModeReplace, (unsigned char *)v,
673                         strlen(v) + 1);
674 }
675
676 void
677 setup(void) {
678         char *proxy;
679         char *new_proxy;
680         SoupURI *puri;
681         SoupSession *s;
682
683         /* clean up any zombies immediately */
684         sigchld(0);
685         gtk_init(NULL, NULL);
686         if (!g_thread_supported())
687                 g_thread_init(NULL);
688
689         dpy = GDK_DISPLAY();
690         s = webkit_get_default_session();
691
692         /* atoms */
693         atoms[AtomFind] = XInternAtom(dpy, "_SURF_FIND", False);
694         atoms[AtomGo] = XInternAtom(dpy, "_SURF_GO", False);
695         atoms[AtomUri] = XInternAtom(dpy, "_SURF_URI", False);
696         atoms[AtomHiLight] = XInternAtom(dpy, "_SURF_HILIGHT", False);
697
698         /* dirs and files */
699         cookiefile = buildpath(cookiefile);
700         scriptfile = buildpath(scriptfile);
701         stylefile = buildpath(stylefile);
702
703         /* request handler */
704         s = webkit_get_default_session();
705         soup_session_remove_feature_by_type(s, soup_cookie_get_type());
706         soup_session_remove_feature_by_type(s, soup_cookie_jar_get_type());
707         g_signal_connect_after(G_OBJECT(s), "request-started", G_CALLBACK(newrequest), NULL);
708
709         /* proxy */
710         if((proxy = getenv("http_proxy")) && strcmp(proxy, "")) {
711                 new_proxy = g_strrstr(proxy, "http://") ? g_strdup(proxy) :
712                         g_strdup_printf("http://%s", proxy);
713                 puri = soup_uri_new(new_proxy);
714                 g_object_set(G_OBJECT(s), "proxy-uri", puri, NULL);
715                 soup_uri_free(puri);
716                 g_free(new_proxy);
717         }
718 }
719
720 void
721 sigchld(int unused) {
722         if(signal(SIGCHLD, sigchld) == SIG_ERR)
723                 die("Can't install SIGCHLD handler");
724         while(0 < waitpid(-1, NULL, WNOHANG));
725 }
726
727 void
728 source(Client *c, const Arg *arg) {
729         Arg a = { .b = FALSE };
730         gboolean s;
731
732         s = webkit_web_view_get_view_source_mode(c->view);
733         webkit_web_view_set_view_source_mode(c->view, !s);
734         reload(c, &a);
735 }
736
737 void
738 spawn(Client *c, const Arg *arg) {
739         if(fork() == 0) {
740                 if(dpy)
741                         close(ConnectionNumber(dpy));
742                 setsid();
743                 execvp(((char **)arg->v)[0], (char **)arg->v);
744                 fprintf(stderr, "surf: execvp %s", ((char **)arg->v)[0]);
745                 perror(" failed");
746                 exit(0);
747         }
748 }
749
750 void
751 stop(Client *c, const Arg *arg) {
752         webkit_web_view_stop_loading(c->view);
753 }
754
755 void
756 titlechange(WebKitWebView *v, WebKitWebFrame *f, const char *t, Client *c) {
757         c->title = copystr(&c->title, t);
758         update(c);
759 }
760
761 void
762 update(Client *c) {
763         char *t;
764
765         if(c->progress != 100) {
766                 t = g_strdup_printf("[%i%%] %s", c->progress, c->title);
767         }
768         else if(c->linkhover)
769                 t = g_strdup(c->linkhover);
770         else
771                 t = g_strdup(c->title);
772         setatom(c, AtomHiLight, c->linkhover ? c->linkhover : geturi(c));
773         drawindicator(c);
774         gtk_window_set_title(GTK_WINDOW(c->win), t);
775         g_free(t);
776 }
777
778 void
779 updatewinid(Client *c) {
780         snprintf(winid, LENGTH(winid), "%u",
781                         (int)GDK_WINDOW_XID(GTK_WIDGET(c->win)->window));
782 }
783
784 void
785 usage(void) {
786         fputs("surf - simple browser\n", stderr);
787         die("usage: surf [-e xid] [-i] [-p] [-s] [-v] [-x] [uri]\n");
788 }
789
790 void
791 windowobjectcleared(GtkWidget *w, WebKitWebFrame *frame, JSContextRef js, JSObjectRef win, Client *c) {
792         runscript(frame, js);
793 }
794
795 void
796 zoom(Client *c, const Arg *arg) {
797         c->zoomed = TRUE;
798         if(arg->i < 0)          /* zoom out */
799                 webkit_web_view_zoom_out(c->view);
800         else if(arg->i > 0)     /* zoom in */
801                 webkit_web_view_zoom_in(c->view);
802         else {                  /* reset */
803                 c->zoomed = FALSE;
804                 webkit_web_view_set_zoom_level(c->view, 1.0);
805         }
806 }
807
808 int
809 main(int argc, char *argv[]) {
810         int i;
811         Arg arg;
812
813         progname = argv[0];
814         /* command line args */
815         for(i = 1, arg.v = NULL; i < argc && argv[i][0] == '-' &&
816                         argv[i][1] != '\0' && argv[i][2] == '\0'; i++) {
817                 if(!strcmp(argv[i], "--")) {
818                         i++;
819                         break;
820                 }
821                 switch(argv[i][1]) {
822                 case 'e':
823                         if(++i < argc)
824                                 embed = atoi(argv[i]);
825                         else
826                                 usage();
827                         break;
828                 case 'i':
829                         loadimage = 0;
830                         break;
831                 case 'p':
832                         plugin = 0;
833                         break;
834                 case 's':
835                         script = 0;
836                         break;
837                 case 'x':
838                         showxid = TRUE;
839                         break;
840                 case 'v':
841                         die("surf-"VERSION", © 2009 surf engineers, see LICENSE for details\n");
842                 default:
843                         usage();
844                 }
845         }
846         if(i < argc)
847                 arg.v = argv[i];
848         setup();
849         newclient();
850         if(arg.v)
851                 loaduri(clients, &arg);
852         gtk_main();
853         cleanup();
854         return EXIT_SUCCESS;
855 }