surf/surf.c

674 lines
17 KiB
C
Raw Normal View History

/* See LICENSE file for copyright and license details.
*
* To understand surf, start reading main().
*/
#include <X11/X.h>
#include <X11/Xatom.h>
2009-06-05 06:22:40 -05:00
#include <gtk/gtk.h>
#include <gdk/gdkx.h>
#include <gdk/gdk.h>
#include <gdk/gdkkeysyms.h>
2009-06-05 06:22:40 -05:00
#include <string.h>
#include <unistd.h>
#include <getopt.h>
2009-06-05 06:22:40 -05:00
#include <stdlib.h>
#include <stdio.h>
#include <webkit/webkit.h>
2009-06-07 05:50:18 -05:00
#include <glib/gstdio.h>
2009-06-05 06:22:40 -05:00
#define LENGTH(x) (sizeof x / sizeof x[0])
2009-09-07 08:43:18 -05:00
#define CLEANMASK(mask) (mask & ~(GDK_MOD2_MASK))
2009-06-05 06:22:40 -05:00
Display *dpy;
Atom urlprop;
typedef union Arg Arg;
union Arg {
const gboolean b;
const gint i;
const void *v;
} ;
typedef struct Client {
2009-09-07 03:30:15 -05:00
GtkWidget *win, *scroll, *vbox, *urlbar, *searchbar, *indicator;
WebKitWebView *view;
2009-06-08 09:34:46 -05:00
WebKitDownload *download;
gchar *title;
gint progress;
struct Client *next;
} Client;
typedef struct Cookie {
char *name;
char *value;
char *domain;
char *path;
struct Cookie *next;
} Cookie;
typedef enum {
BROWSER = 0x0001,
SEARCHBAR = 0x0010,
URLBAR = 0x0100,
ALWAYS = ~0,
} KeyFocus;
typedef struct {
guint mod;
guint keyval;
void (*func)(Client *c, const Arg *arg);
const Arg arg;
KeyFocus focus;
} Key;
SoupCookieJar *cookiejar;
SoupSession *session;
Client *clients = NULL;
Cookie *cookies = NULL;
2009-06-05 06:22:40 -05:00
gboolean embed = FALSE;
gboolean showxid = FALSE;
gboolean ignore_once = FALSE;
extern char *optarg;
extern gint optind;
2009-06-05 06:22:40 -05:00
static void cleanup(void);
static void proccookies(SoupMessage *m, Client *c);
static void clipboard(Client *c, const Arg *arg);
2009-06-06 13:26:04 -05:00
static void destroyclient(Client *c);
static void destroywin(GtkWidget* w, Client *c);
2009-06-06 13:26:04 -05:00
static void die(char *str);
static void download(WebKitDownload *o, GParamSpec *pspec, Client *c);
2009-09-07 03:30:15 -05:00
static void drawindicator(Client *c);
static gboolean exposeindicator(GtkWidget *w, GdkEventExpose *e, Client *c);
static gboolean initdownload(WebKitWebView *view, WebKitDownload *o, Client *c);
2009-06-06 13:26:04 -05:00
static gchar *geturi(Client *c);
static void hidesearch(Client *c, const Arg *arg);
static void hideurl(Client *c, const Arg *arg);
static gboolean keypress(GtkWidget* w, GdkEventKey *ev, Client *c);
static void linkhover(WebKitWebView* page, const gchar* t, const gchar* l, Client *c);
static void loadcommit(WebKitWebView *view, WebKitWebFrame *f, Client *c);
static void loadstart(WebKitWebView *view, WebKitWebFrame *f, Client *c);
2009-06-08 09:34:46 -05:00
static void loadfile(Client *c, const gchar *f);
static void loaduri(Client *c, const Arg *arg);
static void navigate(Client *c, const Arg *arg);
2009-06-06 13:26:04 -05:00
static Client *newclient();
static WebKitWebView *newwindow(WebKitWebView *v, WebKitWebFrame *f, Client *c);
2009-06-09 15:08:59 -05:00
static void pasteurl(GtkClipboard *clipboard, const gchar *text, gpointer d);
static GdkFilterReturn processx(GdkXEvent *xevent, GdkEvent *event, gpointer d);
static void print(Client *c, const Arg *arg);
static void progresschange(WebKitWebView *view, gint p, Client *c);
static void request(SoupSession *s, SoupMessage *m, Client *c);
static void reload(Client *c, const Arg *arg);
static void rereadcookies();
static void setcookie(char *name, char *val, char *dom, char *path, long exp);
static void setup();
static void titlechange(WebKitWebView* view, WebKitWebFrame* frame,
const gchar* title, Client *c);
static void searchtext(Client *c, const Arg *arg);
static void showsearch(Client *c, const Arg *arg);
static void showurl(Client *c, const Arg *arg);
static void stop(Client *c, const Arg *arg);
static void titlechange(WebKitWebView* view, WebKitWebFrame* frame, const gchar* title, Client *c);
2009-06-08 10:25:52 -05:00
static void usage();
2009-09-07 03:30:15 -05:00
static void update(Client *c, const gchar *title);
2009-09-07 02:51:51 -05:00
static void zoom(Client *c, const Arg *arg);
#include "config.h"
2009-06-06 13:26:04 -05:00
void
cleanup(void) {
while(clients)
destroyclient(clients);
2009-06-05 06:22:40 -05:00
}
void
proccookies(SoupMessage *m, Client *c) {
GSList *l;
SoupCookie *co;
long t;
rereadcookies();
for (l = soup_cookies_from_response(m); l; l = l->next){
co = (SoupCookie *)l->data;
t = co->expires ? soup_date_to_time_t(co->expires) : 0;
setcookie(co->name, co->value, co->domain, co->value, t);
}
g_slist_free(l);
}
void
clipboard(Client *c, const Arg *arg) {
gboolean paste = *(gboolean *)arg;
if(paste)
gtk_clipboard_request_text(gtk_clipboard_get(GDK_SELECTION_PRIMARY), pasteurl, c);
else
gtk_clipboard_set_text(gtk_clipboard_get(GDK_SELECTION_PRIMARY), webkit_web_view_get_uri(c->view), -1);
}
2009-06-05 06:22:40 -05:00
void
2009-06-06 13:34:55 -05:00
destroyclient(Client *c) {
Client *p;
2009-06-06 13:34:55 -05:00
gtk_widget_destroy(GTK_WIDGET(webkit_web_view_new()));
gtk_widget_destroy(c->scroll);
gtk_widget_destroy(c->urlbar);
gtk_widget_destroy(c->searchbar);
gtk_widget_destroy(c->vbox);
gtk_widget_destroy(c->win);
for(p = clients; p && p->next != c; p = p->next);
if(p)
p->next = c->next;
else
2009-06-06 13:34:55 -05:00
clients = c->next;
free(c);
if(clients == NULL)
gtk_main_quit();
2009-06-05 06:22:40 -05:00
}
void
destroywin(GtkWidget* w, Client *c) {
2009-06-06 13:34:55 -05:00
destroyclient(c);
2009-06-05 06:22:40 -05:00
}
2009-06-08 09:49:56 -05:00
void
die(char *str) {
2009-06-06 13:34:55 -05:00
fputs(str, stderr);
exit(EXIT_FAILURE);
2009-06-05 06:22:40 -05:00
}
2009-09-07 03:30:15 -05:00
void
drawindicator(Client *c) {
gint width;
gchar *uri;
GtkWidget *w;
GdkGC *gc;
GdkColor fg;
2009-09-07 03:30:15 -05:00
uri = geturi(c);
2009-09-07 03:30:15 -05:00
w = c->indicator;
width = c->progress * w->allocation.width / 100;
gc = gdk_gc_new(w->window);
gdk_color_parse(strstr(uri, "https://") == uri ?
progress_trust : progress, &fg);
gdk_gc_set_rgb_fg_color(gc, &fg);
2009-09-07 03:30:15 -05:00
gdk_draw_rectangle(w->window,
2009-09-07 03:30:50 -05:00
w->style->bg_gc[GTK_WIDGET_STATE(w)],
TRUE, 0, 0, w->allocation.width, w->allocation.height);
gdk_draw_rectangle(w->window, gc, TRUE, 0, 0, width,
w->allocation.height);
g_object_unref(gc);/*g_free(gc);*/
2009-09-07 03:30:15 -05:00
}
gboolean
exposeindicator(GtkWidget *w, GdkEventExpose *e, Client *c) {
drawindicator(c);
return TRUE;
}
void
download(WebKitDownload *o, GParamSpec *pspec, Client *c) {
2009-06-08 09:34:46 -05:00
WebKitDownloadStatus status;
status = webkit_download_get_status(c->download);
if(status == WEBKIT_DOWNLOAD_STATUS_STARTED || status == WEBKIT_DOWNLOAD_STATUS_CREATED) {
c->progress = (gint)(webkit_download_get_progress(c->download)*100);
}
2009-09-07 03:30:15 -05:00
update(c, NULL);
}
2009-06-06 13:34:55 -05:00
gboolean
initdownload(WebKitWebView *view, WebKitDownload *o, Client *c) {
2009-06-08 09:34:46 -05:00
const gchar *home, *filename;
gchar *uri, *path, *html;
stop(c, NULL);
2009-06-08 09:34:46 -05:00
c->download = o;
home = g_get_home_dir();
2009-06-08 09:34:46 -05:00
filename = webkit_download_get_suggested_filename(o);
path = g_build_filename(home, ".surf", "dl",
filename, NULL);
uri = g_strconcat("file://", path, NULL);
webkit_download_set_destination_uri(c->download, uri);
c->progress = 0;
g_free(uri);
html = g_strdup_printf("Download <b>%s</b>...", filename);
webkit_web_view_load_html_string(c->view, html,
2009-06-08 09:34:46 -05:00
webkit_download_get_uri(c->download));
g_signal_connect(c->download, "notify::progress", G_CALLBACK(download), c);
g_signal_connect(c->download, "notify::status", G_CALLBACK(download), c);
webkit_download_start(c->download);
2009-09-07 03:30:15 -05:00
update(c, filename);
g_free(html);
return TRUE;
2009-06-05 06:22:40 -05:00
}
2009-06-06 13:34:55 -05:00
gchar *
geturi(Client *c) {
gchar *uri;
2009-06-06 13:34:55 -05:00
if(!(uri = (gchar *)webkit_web_view_get_uri(c->view)))
uri = g_strdup("about:blank");
return uri;
2009-06-05 06:22:40 -05:00
}
void
hidesearch(Client *c, const Arg *arg) {
2009-06-06 13:34:55 -05:00
gtk_widget_hide(c->searchbar);
gtk_widget_grab_focus(GTK_WIDGET(c->view));
}
void
hideurl(Client *c, const Arg *arg) {
2009-06-06 13:34:55 -05:00
gtk_widget_hide(c->urlbar);
gtk_widget_grab_focus(GTK_WIDGET(c->view));
2009-06-05 06:22:40 -05:00
}
gboolean
keypress(GtkWidget* w, GdkEventKey *ev, Client *c) {
guint i, focus;
gboolean processed = FALSE;
2009-06-06 10:12:16 -05:00
if(ev->type != GDK_KEY_PRESS)
return FALSE;
if(GTK_WIDGET_HAS_FOCUS(c->searchbar))
focus = SEARCHBAR;
else if(GTK_WIDGET_HAS_FOCUS(c->urlbar))
focus = URLBAR;
else
focus = BROWSER;
for(i = 0; i < LENGTH(keys); i++) {
if(focus & keys[i].focus && ev->keyval == keys[i].keyval &&
2009-09-07 08:43:18 -05:00
(CLEANMASK(ev->state) == keys[i].mod ||
CLEANMASK(ev->state) & keys[i].mod)
&& keys[i].func) {
keys[i].func(c, &(keys[i].arg));
processed = TRUE;
2009-06-08 09:34:46 -05:00
}
}
return processed;
2009-06-05 06:22:40 -05:00
}
2009-06-06 13:34:55 -05:00
void
linkhover(WebKitWebView* page, const gchar* t, const gchar* l, Client *c) {
2009-06-06 13:34:55 -05:00
if(l)
gtk_window_set_title(GTK_WINDOW(c->win), l);
else
2009-09-07 03:30:15 -05:00
update(c, NULL);
}
2009-06-06 13:34:55 -05:00
void
loadcommit(WebKitWebView *view, WebKitWebFrame *f, Client *c) {
2009-06-06 13:34:55 -05:00
gchar *uri;
ignore_once = TRUE;
2009-06-08 15:55:48 -05:00
uri = geturi(c);
2009-06-06 13:34:55 -05:00
XChangeProperty(dpy, GDK_WINDOW_XID(GTK_WIDGET(c->win)->window), urlprop,
XA_STRING, 8, PropModeReplace, (unsigned char *)uri,
strlen(uri) + 1);
}
void
loadstart(WebKitWebView *view, WebKitWebFrame *f, Client *c) {
c->progress = 0;
2009-09-07 03:30:15 -05:00
update(c, NULL);
2009-06-08 09:34:46 -05:00
}
void
loadfile(Client *c, const gchar *f) {
2009-06-06 13:34:55 -05:00
GIOChannel *chan = NULL;
GError *e = NULL;
GString *code;
gchar *line, *uri;
Arg arg;
2009-06-06 13:34:55 -05:00
if(strcmp(f, "-") == 0) {
chan = g_io_channel_unix_new(STDIN_FILENO);
if (chan) {
code = g_string_new("");
2009-06-07 05:50:18 -05:00
while(g_io_channel_read_line(chan, &line, NULL, NULL,
&e) == G_IO_STATUS_NORMAL) {
2009-06-06 13:34:55 -05:00
g_string_append(code, line);
g_free(line);
}
2009-06-07 05:50:18 -05:00
webkit_web_view_load_html_string(c->view, code->str,
"file://.");
2009-06-06 13:34:55 -05:00
g_io_channel_shutdown(chan, FALSE, NULL);
g_string_free(code, TRUE);
2009-06-06 13:34:55 -05:00
}
arg.v = uri = g_strdup("stdin");
2009-06-06 13:34:55 -05:00
}
else {
arg.v = uri = g_strdup_printf("file://%s", f);
loaduri(c, &arg);
2009-06-06 13:34:55 -05:00
}
2009-09-07 03:30:15 -05:00
update(c, uri);
g_free(uri);
2009-06-06 13:34:55 -05:00
}
void
loaduri(Client *c, const Arg *arg) {
gchar *u;
const gchar *uri = (gchar *)arg->v;
if(!uri)
uri = gtk_entry_get_text(GTK_ENTRY(c->urlbar));
2009-09-04 06:20:48 -05:00
u = g_strrstr(uri, "://") ? g_strdup(uri)
: g_strdup_printf("http://%s", uri);
webkit_web_view_load_uri(c->view, u);
2009-06-08 09:34:46 -05:00
c->progress = 0;
2009-09-07 03:30:15 -05:00
update(c, u);
g_free(u);
}
void
navigate(Client *c, const Arg *arg) {
2009-09-06 07:12:10 -05:00
gint steps = *(gint *)arg;
2009-09-06 07:22:55 -05:00
webkit_web_view_go_back_or_forward(c->view, steps);
}
Client *
newclient(void) {
Client *c;
if(!(c = calloc(1, sizeof(Client))))
die("Cannot malloc!\n");
/* Window */
if(embed) {
c->win = gtk_plug_new(0);
}
else {
c->win = gtk_window_new(GTK_WINDOW_TOPLEVEL);
gtk_window_set_wmclass(GTK_WINDOW(c->win), "surf", "surf");
}
gtk_window_set_default_size(GTK_WINDOW(c->win), 800, 600);
g_signal_connect(G_OBJECT(c->win), "destroy", G_CALLBACK(destroywin), c);
g_signal_connect(G_OBJECT(c->win), "key-press-event", G_CALLBACK(keypress), c);
2009-06-05 06:22:40 -05:00
/* VBox */
c->vbox = gtk_vbox_new(FALSE, 0);
/* scrolled window */
c->scroll = gtk_scrolled_window_new(NULL, NULL);
gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(c->scroll),
2009-06-05 06:22:40 -05:00
GTK_POLICY_NEVER, GTK_POLICY_NEVER);
/* webview */
c->view = WEBKIT_WEB_VIEW(webkit_web_view_new());
g_signal_connect(G_OBJECT(c->view), "title-changed", G_CALLBACK(titlechange), c);
g_signal_connect(G_OBJECT(c->view), "load-progress-changed", G_CALLBACK(progresschange), c);
g_signal_connect(G_OBJECT(c->view), "load-committed", G_CALLBACK(loadcommit), c);
2009-06-08 09:34:46 -05:00
g_signal_connect(G_OBJECT(c->view), "load-started", G_CALLBACK(loadstart), c);
g_signal_connect(G_OBJECT(c->view), "hovering-over-link", G_CALLBACK(linkhover), c);
2009-06-06 10:26:43 -05:00
g_signal_connect(G_OBJECT(c->view), "create-web-view", G_CALLBACK(newwindow), c);
2009-06-08 06:29:39 -05:00
g_signal_connect(G_OBJECT(c->view), "download-requested", G_CALLBACK(initdownload), c);
g_signal_connect_after(session, "request-started", G_CALLBACK(request), c);
2009-06-05 06:22:40 -05:00
/* urlbar */
c->urlbar = gtk_entry_new();
gtk_entry_set_has_frame(GTK_ENTRY(c->urlbar), FALSE);
/* searchbar */
c->searchbar = gtk_entry_new();
gtk_entry_set_has_frame(GTK_ENTRY(c->searchbar), FALSE);
2009-09-07 03:30:15 -05:00
/* indicator */
c->indicator = gtk_drawing_area_new();
2009-09-07 06:21:49 -05:00
gtk_widget_set_size_request(c->indicator, 0, 2);
2009-09-07 03:30:15 -05:00
g_signal_connect (G_OBJECT (c->indicator), "expose_event",
G_CALLBACK (exposeindicator), c);
/* downloadbar */
/* Arranging */
gtk_container_add(GTK_CONTAINER(c->scroll), GTK_WIDGET(c->view));
gtk_container_add(GTK_CONTAINER(c->win), c->vbox);
2009-06-06 10:12:16 -05:00
gtk_container_add(GTK_CONTAINER(c->vbox), c->scroll);
gtk_container_add(GTK_CONTAINER(c->vbox), c->searchbar);
gtk_container_add(GTK_CONTAINER(c->vbox), c->urlbar);
2009-09-07 03:30:15 -05:00
gtk_container_add(GTK_CONTAINER(c->vbox), c->indicator);
/* Setup */
gtk_box_set_child_packing(GTK_BOX(c->vbox), c->urlbar, FALSE, FALSE, 0, GTK_PACK_START);
gtk_box_set_child_packing(GTK_BOX(c->vbox), c->searchbar, FALSE, FALSE, 0, GTK_PACK_START);
2009-09-07 03:30:15 -05:00
gtk_box_set_child_packing(GTK_BOX(c->vbox), c->indicator, FALSE, FALSE, 0, GTK_PACK_START);
gtk_box_set_child_packing(GTK_BOX(c->vbox), c->scroll, TRUE, TRUE, 0, GTK_PACK_START);
gtk_widget_grab_focus(GTK_WIDGET(c->view));
gtk_widget_hide_all(c->searchbar);
gtk_widget_hide_all(c->urlbar);
gtk_widget_show(c->vbox);
2009-09-07 03:30:15 -05:00
gtk_widget_show(c->indicator);
gtk_widget_show(c->scroll);
gtk_widget_show(GTK_WIDGET(c->view));
gtk_widget_show(c->win);
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 10:25:52 -05:00
webkit_web_view_set_full_content_zoom(c->view, TRUE);
2009-06-08 10:01:12 -05:00
c->download = NULL;
c->title = NULL;
c->next = clients;
clients = c;
if(showxid)
printf("%u\n", (guint)GDK_WINDOW_XID(GTK_WIDGET(c->win)->window));
return c;
2009-06-05 06:22:40 -05:00
}
2009-06-06 13:34:55 -05:00
WebKitWebView *
newwindow(WebKitWebView *v, WebKitWebFrame *f, Client *c) {
Client *n = newclient();
return n->view;
2009-06-06 13:34:55 -05:00
}
2009-06-09 15:08:59 -05:00
void
pasteurl(GtkClipboard *clipboard, const gchar *text, gpointer d) {
Arg arg = {.v = text };
2009-06-12 07:41:09 -05:00
if(text != NULL)
loaduri((Client *) d, &arg);
2009-06-09 15:08:59 -05:00
}
2009-06-06 13:34:55 -05:00
GdkFilterReturn
processx(GdkXEvent *e, GdkEvent *event, gpointer d) {
Client *c = (Client *)d;
XPropertyEvent *ev;
2009-06-06 13:34:55 -05:00
Atom adummy;
gint idummy;
2009-06-06 13:34:55 -05:00
unsigned long ldummy;
unsigned char *buf = NULL;
Arg arg;
2009-09-04 06:20:48 -05:00
2009-06-06 13:34:55 -05:00
if(((XEvent *)e)->type == PropertyNotify) {
ev = &((XEvent *)e)->xproperty;
2009-06-08 15:55:48 -05:00
if(ev->atom == urlprop && ev->state == PropertyNewValue) {
if(ignore_once)
ignore_once = FALSE;
else {
XGetWindowProperty(dpy, ev->window, urlprop, 0L, BUFSIZ, False, XA_STRING,
&adummy, &idummy, &ldummy, &ldummy, &buf);
arg.v = buf;
loaduri(c, &arg);
2009-06-08 15:55:48 -05:00
XFree(buf);
}
2009-06-08 16:28:05 -05:00
return GDK_FILTER_REMOVE;
2009-06-06 13:34:55 -05:00
}
}
return GDK_FILTER_CONTINUE;
}
void
print(Client *c, const Arg *arg) {
webkit_web_frame_print(webkit_web_view_get_main_frame(c->view));
}
void
progresschange(WebKitWebView* view, gint p, Client *c) {
c->progress = p;
2009-09-07 03:30:15 -05:00
update(c, NULL);
}
void
request(SoupSession *s, SoupMessage *m, Client *c) {
soup_message_add_header_handler(m, "got-headers", "Set-Cookie",
G_CALLBACK(proccookies), c);
}
void
reload(Client *c, const Arg *arg) {
gboolean nocache = *(gboolean *)arg;
if(nocache)
webkit_web_view_reload_bypass_cache(c->view);
else
webkit_web_view_reload(c->view);
}
void
rereadcookies() {
const gchar *filename, *home;
home = g_get_home_dir();
filename = g_build_filename(home, ".surf", "cookies", NULL);
}
void
setcookie(char *name, char *val, char *dom, char *path, long exp) {
}
void
2009-09-06 06:49:17 -05:00
setup() {
2009-06-06 13:34:55 -05:00
dpy = GDK_DISPLAY();
session = webkit_get_default_session();
2009-06-06 13:34:55 -05:00
urlprop = XInternAtom(dpy, "_SURF_URL", False);
}
void
showsearch(Client *c, const Arg *arg) {
hideurl(c, NULL);
2009-06-06 13:34:55 -05:00
gtk_widget_show(c->searchbar);
gtk_widget_grab_focus(c->searchbar);
}
void
searchtext(Client *c, const Arg *arg) {
gboolean forward = *(gboolean *)arg;
webkit_web_view_search_text(c->view,
gtk_entry_get_text(GTK_ENTRY(c->searchbar)),
FALSE,
forward,
TRUE);
}
void
showurl(Client *c, const Arg *arg) {
2009-06-06 13:34:55 -05:00
gchar *uri;
hidesearch(c, NULL);
2009-06-06 13:34:55 -05:00
uri = geturi(c);
gtk_entry_set_text(GTK_ENTRY(c->urlbar), uri);
gtk_widget_show(c->urlbar);
gtk_widget_grab_focus(c->urlbar);
}
2009-06-08 09:34:46 -05:00
void
stop(Client *c, const Arg *arg) {
2009-06-08 09:34:46 -05:00
if(c->download)
webkit_download_cancel(c->download);
else
webkit_web_view_stop_loading(c->view);
c->download = NULL;
}
2009-06-06 13:34:55 -05:00
void
titlechange(WebKitWebView *v, WebKitWebFrame *f, const gchar *t, Client *c) {
2009-09-07 03:30:15 -05:00
update(c, t);
2009-06-06 13:34:55 -05:00
}
2009-06-08 10:25:52 -05:00
void
usage() {
fputs("surf - simple browser\n", stderr);
die("usage: surf [-e] [-x] [uri]\n");
2009-06-08 10:25:52 -05:00
}
2009-06-06 13:34:55 -05:00
void
2009-09-07 03:30:15 -05:00
update(Client *c, const char *title) {
gchar *t;
2009-06-08 09:34:46 -05:00
if(title) {
if(c->title)
g_free(c->title);
c->title = g_strdup(title);
}
2009-06-06 13:34:55 -05:00
if(c->progress == 100)
t = g_strdup(c->title);
2009-06-06 13:34:55 -05:00
else
t = g_strdup_printf("%s [%i%%]", c->title, c->progress);
2009-09-07 03:30:15 -05:00
drawindicator(c);
2009-06-06 13:34:55 -05:00
gtk_window_set_title(GTK_WINDOW(c->win), t);
g_free(t);
2009-06-06 13:34:55 -05:00
}
void
2009-09-07 02:51:51 -05:00
zoom(Client *c, const Arg *arg) {
if(arg->i < 0) /* zoom out */
webkit_web_view_zoom_out(c->view);
else if(arg->i > 0) /* zoom in */
webkit_web_view_zoom_in(c->view);
2009-09-07 02:48:28 -05:00
else /* reset */
webkit_web_view_set_zoom_level(c->view, 1.0);
}
2009-06-05 06:22:40 -05:00
int main(int argc, char *argv[]) {
2009-06-08 02:38:01 -05:00
SoupSession *s;
Client *c;
gint o;
2009-06-08 02:38:01 -05:00
const gchar *home, *filename;
Arg arg;
2009-06-05 06:22:40 -05:00
gtk_init(NULL, NULL);
if (!g_thread_supported())
g_thread_init(NULL);
setup();
while((o = getopt(argc, argv, "vhxeu:f:")) != -1)
switch(o) {
case 'x':
showxid = TRUE;
break;
case 'e':
showxid = TRUE;
embed = TRUE;
break;
case 'v':
die("surf-"VERSION", © 2009 surf engineers, see LICENSE for details\n");
break;
default:
2009-06-08 10:25:52 -05:00
usage();
}
if(optind + 1 == argc) {
c = newclient();
2009-09-06 06:49:17 -05:00
arg.v = argv[optind];
if(strchr("./", argv[optind][0]) || strcmp("-", argv[optind]) == 0)
loadfile(c, argv[optind]);
else
2009-09-06 06:49:17 -05:00
loaduri(c, &arg);
}
else if(optind != argc)
2009-06-08 10:25:52 -05:00
usage();
if(!clients)
newclient();
/* make dirs */
home = g_get_home_dir();
filename = g_build_filename(home, ".surf", NULL);
g_mkdir_with_parents(filename, 0711);
filename = g_build_filename(home, ".surf", "dl", NULL);
g_mkdir_with_parents(filename, 0755);
2009-06-08 02:38:01 -05:00
/* cookie persistance */
s = webkit_get_default_session();
filename = g_build_filename(home, ".surf", "cookies.jar", NULL);
2009-06-08 02:38:01 -05:00
cookiejar = soup_cookie_jar_text_new(filename, FALSE);
soup_session_add_feature(s, SOUP_SESSION_FEATURE(cookiejar));
2009-06-05 06:22:40 -05:00
gtk_main();
cleanup();
return EXIT_SUCCESS;
}