2009-06-05 18:16:10 +00:00
|
|
|
/* See LICENSE file for copyright and license details.
|
|
|
|
*
|
|
|
|
* To understand surf, start reading main().
|
|
|
|
*/
|
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>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <webkit/webkit.h>
|
|
|
|
|
|
|
|
#define LENGTH(x) (sizeof x / sizeof x[0])
|
|
|
|
/* Plan9-style Argument parsing */
|
|
|
|
/* Vars: _c -> count; _b -> break; _a -> argument */
|
|
|
|
#define ARG int _c, _b; char *_a; \
|
|
|
|
for(_c = 1; _c < argc && argv[_c][0] == '-' && argv[_c][1] && \
|
|
|
|
(strcmp(argv[_c], "--") != 0); _c++) \
|
|
|
|
for(_a = &argv[_c][1], _b = 0; !_b && *_a; _a++ ) \
|
|
|
|
switch(*_a)
|
|
|
|
#define ARGVAL() (!_b && _a[1] && (_b = 1) ? &_a[1] : _c + 1 == argc ? \
|
|
|
|
0 : argv[++_c])
|
|
|
|
#define ARGCHR() (*_a)
|
|
|
|
#define ARGC() _c
|
|
|
|
|
2009-06-05 15:46:11 +00:00
|
|
|
Display *dpy;
|
|
|
|
Atom urlprop;
|
2009-06-05 18:16:10 +00:00
|
|
|
typedef struct Client {
|
|
|
|
GtkWidget *win;
|
|
|
|
GtkWidget *browser;
|
|
|
|
WebKitWebView *view;
|
|
|
|
gchar *title;
|
|
|
|
gint progress;
|
|
|
|
struct Client *next;
|
|
|
|
} Client;
|
|
|
|
Client *clients = NULL;
|
2009-06-05 11:22:40 +00:00
|
|
|
gboolean embed = FALSE;
|
2009-06-05 15:46:11 +00:00
|
|
|
gboolean showxid = FALSE;
|
|
|
|
gboolean ignore_once = FALSE;
|
2009-06-05 11:22:40 +00:00
|
|
|
|
2009-06-05 18:16:10 +00:00
|
|
|
static Client *newclient();
|
|
|
|
static void die(char *str);
|
2009-06-05 11:22:40 +00:00
|
|
|
static void setup(void);
|
|
|
|
static void cleanup(void);
|
2009-06-05 18:16:10 +00:00
|
|
|
static void updatetitle(Client *c);
|
2009-06-06 07:35:50 +00:00
|
|
|
static void destroywin(GtkWidget* w, gpointer d);
|
|
|
|
static gboolean keypress(GtkWidget* w, GdkEventKey *ev, gpointer d);
|
2009-06-05 11:22:40 +00:00
|
|
|
static void titlechange(WebKitWebView* view, WebKitWebFrame* frame, const gchar* title, gpointer d);
|
|
|
|
static void progresschange(WebKitWebView *view, gint p, gpointer d);
|
|
|
|
static void loadcommit(WebKitWebView *view, WebKitWebFrame *f, gpointer d);
|
|
|
|
static void linkhover(WebKitWebView* page, const gchar* t, const gchar* l, gpointer d);
|
2009-06-05 18:16:10 +00:00
|
|
|
static void destroyclient(Client *c);
|
2009-06-05 11:22:40 +00:00
|
|
|
static gboolean newwindow(WebKitWebView *view, WebKitWebFrame *f,
|
|
|
|
WebKitNetworkRequest *r, WebKitWebNavigationAction *n,
|
|
|
|
WebKitWebPolicyDecision *p, gpointer d);
|
|
|
|
static gboolean download(WebKitWebView *view, GObject *o, gpointer d);
|
2009-06-05 18:16:10 +00:00
|
|
|
static void loaduri(const Client *c, const gchar *uri);
|
|
|
|
static void loadfile(const Client *c, const gchar *f);
|
2009-06-05 15:46:11 +00:00
|
|
|
GdkFilterReturn processx(GdkXEvent *xevent, GdkEvent *event, gpointer data);
|
2009-06-05 11:22:40 +00:00
|
|
|
|
2009-06-05 18:16:10 +00:00
|
|
|
void
|
|
|
|
cleanup(void) {
|
2009-06-06 07:35:50 +00:00
|
|
|
while(clients)
|
|
|
|
destroyclient(clients);
|
2009-06-05 18:16:10 +00:00
|
|
|
}
|
|
|
|
|
2009-06-05 15:46:11 +00:00
|
|
|
GdkFilterReturn
|
2009-06-05 18:16:10 +00:00
|
|
|
processx(GdkXEvent *e, GdkEvent *event, gpointer d) {
|
2009-06-05 15:46:11 +00:00
|
|
|
XPropertyEvent *ev;
|
2009-06-05 18:16:10 +00:00
|
|
|
Client *c = (Client *)d;
|
2009-06-05 15:46:11 +00:00
|
|
|
Atom adummy;
|
|
|
|
int idummy;
|
|
|
|
unsigned long ldummy;
|
|
|
|
unsigned char *buf = NULL;
|
|
|
|
if(((XEvent *)e)->type == PropertyNotify) {
|
|
|
|
ev = &((XEvent *)e)->xproperty;
|
|
|
|
if(ignore_once == FALSE && ev->atom == urlprop && ev->state == PropertyNewValue) {
|
|
|
|
XGetWindowProperty(dpy, ev->window, urlprop, 0L, BUFSIZ, False, XA_STRING,
|
2009-06-05 18:16:10 +00:00
|
|
|
&adummy, &idummy, &ldummy, &ldummy, &buf);
|
|
|
|
loaduri(c, (gchar *)buf);
|
2009-06-05 15:46:11 +00:00
|
|
|
XFree(buf);
|
|
|
|
return GDK_FILTER_REMOVE;
|
|
|
|
}
|
|
|
|
ignore_once = FALSE;
|
|
|
|
}
|
|
|
|
return GDK_FILTER_CONTINUE;
|
2009-06-05 11:22:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2009-06-05 18:16:10 +00:00
|
|
|
loadfile(const Client *c, const gchar *f) {
|
|
|
|
GIOChannel *chan = NULL;
|
2009-06-05 11:22:40 +00:00
|
|
|
GError *e = NULL;
|
|
|
|
GString *code = g_string_new("");
|
2009-06-05 16:00:45 +00:00
|
|
|
GString *uri = g_string_new(f);
|
2009-06-05 11:22:40 +00:00
|
|
|
gchar *line;
|
|
|
|
|
2009-06-05 16:00:45 +00:00
|
|
|
if(strcmp(f, "-") == 0) {
|
2009-06-05 18:16:10 +00:00
|
|
|
chan = g_io_channel_unix_new(STDIN_FILENO);
|
|
|
|
if (chan) {
|
|
|
|
while(g_io_channel_read_line(chan, &line, NULL, NULL, &e) == G_IO_STATUS_NORMAL) {
|
2009-06-05 16:00:45 +00:00
|
|
|
g_string_append(code, line);
|
|
|
|
g_free(line);
|
|
|
|
}
|
2009-06-05 18:16:10 +00:00
|
|
|
webkit_web_view_load_html_string(c->view, code->str, NULL);
|
|
|
|
g_io_channel_shutdown(chan, FALSE, NULL);
|
2009-06-05 11:22:40 +00:00
|
|
|
}
|
2009-06-05 16:00:45 +00:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
g_string_prepend(uri, "file://");
|
2009-06-05 18:16:10 +00:00
|
|
|
loaduri(c, uri->str);
|
2009-06-05 11:22:40 +00:00
|
|
|
}
|
2009-06-05 15:46:11 +00:00
|
|
|
|
2009-06-05 11:22:40 +00:00
|
|
|
}
|
|
|
|
|
2009-06-05 18:16:10 +00:00
|
|
|
static void loaduri(const Client *c, const gchar *uri) {
|
2009-06-05 11:22:40 +00:00
|
|
|
GString* u = g_string_new(uri);
|
2009-06-05 18:16:10 +00:00
|
|
|
if(g_strrstr(u->str, ":") == NULL)
|
2009-06-05 11:22:40 +00:00
|
|
|
g_string_prepend(u, "http://");
|
2009-06-05 18:16:10 +00:00
|
|
|
webkit_web_view_load_uri(c->view, u->str);
|
2009-06-05 11:22:40 +00:00
|
|
|
g_string_free(u, TRUE);
|
|
|
|
}
|
|
|
|
|
|
|
|
gboolean
|
|
|
|
download(WebKitWebView *view, GObject *o, gpointer d) {
|
|
|
|
/* TODO */
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
gboolean
|
|
|
|
newwindow(WebKitWebView *view, WebKitWebFrame *f,
|
|
|
|
WebKitNetworkRequest *r, WebKitWebNavigationAction *n,
|
|
|
|
WebKitWebPolicyDecision *p, gpointer d) {
|
2009-06-06 07:35:50 +00:00
|
|
|
puts("new");
|
2009-06-05 18:16:10 +00:00
|
|
|
Client *c = newclient();
|
|
|
|
webkit_web_view_load_request(c->view, r);
|
|
|
|
return TRUE;
|
2009-06-05 11:22:40 +00:00
|
|
|
}
|
|
|
|
void
|
|
|
|
linkhover(WebKitWebView* page, const gchar* t, const gchar* l, gpointer d) {
|
2009-06-06 07:35:50 +00:00
|
|
|
Client *c = (Client *)d;
|
|
|
|
|
|
|
|
if(l)
|
|
|
|
gtk_window_set_title(GTK_WINDOW(c->win), l);
|
|
|
|
else
|
|
|
|
updatetitle(c);
|
2009-06-05 11:22:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
loadcommit(WebKitWebView *view, WebKitWebFrame *f, gpointer d) {
|
2009-06-05 18:16:10 +00:00
|
|
|
Client *c = (Client *)d;
|
2009-06-05 15:46:11 +00:00
|
|
|
gchar *uri;
|
|
|
|
|
|
|
|
if(!(uri = (gchar *)webkit_web_view_get_uri(view)))
|
|
|
|
uri = "(null)";
|
|
|
|
ignore_once = TRUE;
|
2009-06-05 18:16:10 +00:00
|
|
|
XChangeProperty(dpy, GDK_WINDOW_XID(GTK_WIDGET(c->win)->window), urlprop,
|
2009-06-05 15:46:11 +00:00
|
|
|
XA_STRING, 8, PropModeReplace, (unsigned char *)uri,
|
|
|
|
strlen(uri) + 1);
|
2009-06-05 11:22:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
progresschange(WebKitWebView* view, gint p, gpointer d) {
|
2009-06-05 18:16:10 +00:00
|
|
|
Client *c = (Client *)d;
|
|
|
|
|
|
|
|
c->progress = p;
|
|
|
|
updatetitle(c);
|
2009-06-05 11:22:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2009-06-05 18:16:10 +00:00
|
|
|
updatetitle(Client *c) {
|
2009-06-05 11:22:40 +00:00
|
|
|
char t[512];
|
2009-06-05 18:16:10 +00:00
|
|
|
if(c->progress == 100)
|
|
|
|
snprintf(t, LENGTH(t), "%s", c->title);
|
2009-06-05 15:46:11 +00:00
|
|
|
else
|
2009-06-05 18:16:10 +00:00
|
|
|
snprintf(t, LENGTH(t), "%s [%i%%]", c->title, c->progress);
|
|
|
|
gtk_window_set_title(GTK_WINDOW(c->win), t);
|
2009-06-05 11:22:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
titlechange(WebKitWebView *v, WebKitWebFrame *f, const gchar *t, gpointer d) {
|
2009-06-05 18:16:10 +00:00
|
|
|
Client *c = (Client *)d;
|
|
|
|
|
|
|
|
if(c->title)
|
|
|
|
g_free(c->title);
|
|
|
|
c->title = g_strdup(t);
|
|
|
|
updatetitle(c);
|
2009-06-05 11:22:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2009-06-06 07:35:50 +00:00
|
|
|
destroywin(GtkWidget* w, gpointer d) {
|
2009-06-05 18:16:10 +00:00
|
|
|
Client *c = (Client *)d;
|
|
|
|
|
|
|
|
destroyclient(c);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
destroyclient(Client *c) {
|
|
|
|
Client *p;
|
|
|
|
gtk_widget_destroy(c->win);
|
|
|
|
if(clients == c && c->next == NULL)
|
|
|
|
gtk_main_quit();
|
|
|
|
for(p = clients; p && p->next != c; p = p->next);
|
|
|
|
if(p)
|
|
|
|
p->next = c->next;
|
|
|
|
else
|
|
|
|
clients = c->next;
|
|
|
|
free(c);
|
2009-06-05 11:22:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
gboolean
|
2009-06-06 07:35:50 +00:00
|
|
|
keypress(GtkWidget* w, GdkEventKey *ev, gpointer d) {
|
|
|
|
Client *c = (Client *)d;
|
|
|
|
|
|
|
|
if(ev->type == GDK_KEY_PRESS && (ev->state == GDK_CONTROL_MASK
|
|
|
|
|| ev->state == (GDK_CONTROL_MASK | GDK_SHIFT_MASK))) {
|
|
|
|
switch(ev->keyval) {
|
|
|
|
case GDK_r:
|
|
|
|
case GDK_R:
|
|
|
|
if((ev->state & GDK_SHIFT_MASK))
|
|
|
|
webkit_web_view_reload_bypass_cache(c->view);
|
|
|
|
else
|
|
|
|
webkit_web_view_reload(c->view);
|
|
|
|
return TRUE;
|
2009-06-06 07:36:46 +00:00
|
|
|
case GDK_g:
|
2009-06-06 07:35:50 +00:00
|
|
|
/* TODO */
|
|
|
|
return TRUE;
|
|
|
|
case GDK_slash:
|
|
|
|
/* TODO */
|
|
|
|
return TRUE;
|
|
|
|
case GDK_Left:
|
|
|
|
webkit_web_view_go_back(c->view);
|
|
|
|
return TRUE;
|
|
|
|
case GDK_Right:
|
|
|
|
webkit_web_view_go_forward(c->view);
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
}
|
2009-06-05 11:22:40 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
void setup(void) {
|
2009-06-05 18:16:10 +00:00
|
|
|
dpy = GDK_DISPLAY();
|
|
|
|
urlprop = XInternAtom(dpy, "_SURF_URL", False);
|
|
|
|
}
|
|
|
|
|
|
|
|
void die(char *str) {
|
|
|
|
fputs(str, stderr);
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
|
|
|
|
Client *
|
|
|
|
newclient(void) {
|
|
|
|
Client *c;
|
|
|
|
if(!(c = calloc(1, sizeof(Client))))
|
|
|
|
die("Cannot malloc!\n");
|
2009-06-05 15:46:11 +00:00
|
|
|
if(embed) {
|
2009-06-05 18:16:10 +00:00
|
|
|
c->win = gtk_plug_new(0);
|
2009-06-05 15:46:11 +00:00
|
|
|
}
|
|
|
|
else {
|
2009-06-05 18:16:10 +00:00
|
|
|
c->win = gtk_window_new(GTK_WINDOW_TOPLEVEL);
|
|
|
|
gtk_window_set_wmclass(GTK_WINDOW(c->win), "surf", "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);
|
|
|
|
c->browser = gtk_scrolled_window_new(NULL, NULL);
|
2009-06-06 07:35:50 +00:00
|
|
|
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 11:22:40 +00:00
|
|
|
|
2009-06-05 18:16:10 +00:00
|
|
|
gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(c->browser),
|
2009-06-05 11:22:40 +00:00
|
|
|
GTK_POLICY_NEVER, GTK_POLICY_NEVER);
|
2009-06-05 18:16:10 +00:00
|
|
|
c->view = WEBKIT_WEB_VIEW(webkit_web_view_new());
|
|
|
|
gtk_container_add(GTK_CONTAINER(c->browser), GTK_WIDGET(c->view));
|
2009-06-05 11:22:40 +00:00
|
|
|
|
2009-06-05 18:16:10 +00:00
|
|
|
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);
|
|
|
|
g_signal_connect(G_OBJECT(c->view), "hovering-over-link", G_CALLBACK(linkhover), c);
|
2009-06-06 07:51:09 +00:00
|
|
|
g_signal_connect(G_OBJECT(c->view), "new-window-policy-decision-requested", G_CALLBACK(newwindow), c);
|
2009-06-05 18:16:10 +00:00
|
|
|
g_signal_connect(G_OBJECT(c->view), "download-requested", G_CALLBACK(download), c);
|
2009-06-05 11:22:40 +00:00
|
|
|
|
2009-06-05 18:16:10 +00:00
|
|
|
gtk_container_add(GTK_CONTAINER(c->win), c->browser);
|
|
|
|
gtk_widget_grab_focus(GTK_WIDGET(c->view));
|
|
|
|
gtk_widget_show_all(c->win);
|
2009-06-05 15:46:11 +00:00
|
|
|
if(showxid)
|
2009-06-05 18:16:10 +00:00
|
|
|
printf("%u\n", (unsigned int)GDK_WINDOW_XID(GTK_WIDGET(c->win)->window));
|
|
|
|
c->next = clients;
|
|
|
|
clients = c;
|
|
|
|
gdk_window_set_events(GTK_WIDGET(c->win)->window, GDK_ALL_EVENTS_MASK);
|
|
|
|
gdk_window_add_filter(GTK_WIDGET(c->win)->window, processx, c);
|
|
|
|
return c;
|
2009-06-05 11:22:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int main(int argc, char *argv[]) {
|
|
|
|
gchar *uri = NULL, *file = NULL;
|
2009-06-05 18:16:10 +00:00
|
|
|
Client *c;
|
2009-06-05 11:22:40 +00:00
|
|
|
|
2009-06-06 07:35:50 +00:00
|
|
|
gtk_init(NULL, NULL);
|
|
|
|
if (!g_thread_supported())
|
|
|
|
g_thread_init(NULL);
|
|
|
|
setup();
|
2009-06-05 11:22:40 +00:00
|
|
|
ARG {
|
2009-06-05 15:46:11 +00:00
|
|
|
case 'x':
|
|
|
|
showxid = TRUE;
|
|
|
|
break;
|
2009-06-05 11:22:40 +00:00
|
|
|
case 'e':
|
2009-06-05 15:46:11 +00:00
|
|
|
showxid = TRUE;
|
2009-06-05 11:22:40 +00:00
|
|
|
embed = TRUE;
|
|
|
|
break;
|
|
|
|
case 'u':
|
|
|
|
if(!(uri = ARGVAL()))
|
|
|
|
goto argerr;
|
2009-06-06 07:35:50 +00:00
|
|
|
c = newclient();
|
|
|
|
loaduri(c, uri);
|
|
|
|
updatetitle(c);
|
2009-06-05 11:22:40 +00:00
|
|
|
break;
|
|
|
|
case 'f':
|
|
|
|
if(!(file = ARGVAL()))
|
|
|
|
goto argerr;
|
2009-06-06 07:35:50 +00:00
|
|
|
c = newclient();
|
|
|
|
loadfile(c, file);
|
|
|
|
updatetitle(c);
|
2009-06-05 11:22:40 +00:00
|
|
|
break;
|
|
|
|
argerr:
|
|
|
|
default:
|
|
|
|
puts("surf - simple browser");
|
2009-06-06 07:35:50 +00:00
|
|
|
printf("usage: %s [-e] [-x] [-u uri] [-f file]\n", argv[0]);
|
2009-06-05 11:22:40 +00:00
|
|
|
return EXIT_FAILURE;
|
|
|
|
}
|
|
|
|
if(argc != ARGC())
|
|
|
|
goto argerr;
|
2009-06-06 07:35:50 +00:00
|
|
|
if(!clients)
|
|
|
|
newclient();
|
2009-06-05 11:22:40 +00:00
|
|
|
gtk_main();
|
|
|
|
cleanup();
|
|
|
|
return EXIT_SUCCESS;
|
|
|
|
}
|