AtomHiLight is set correctly for links.

This commit is contained in:
Enno Boland (tox) 2010-05-18 14:20:24 +02:00
parent 7ce2856194
commit 5878067225
1 changed files with 21 additions and 1 deletions

22
surf.c
View File

@ -85,6 +85,7 @@ static gboolean keypress(GtkWidget *w, GdkEventKey *ev, Client *c);
static void linkhover(WebKitWebView *v, const char* t, const char* l, Client *c); static void linkhover(WebKitWebView *v, const char* t, const char* l, Client *c);
static void loadstatuschange(WebKitWebView *view, GParamSpec *pspec, Client *c); static void loadstatuschange(WebKitWebView *view, GParamSpec *pspec, Client *c);
static void loaduri(Client *c, const Arg *arg); static void loaduri(Client *c, const Arg *arg);
static void mousemove(GtkWidget *w, GdkEventMotion *e, Client *c);
static void navigate(Client *c, const Arg *arg); static void navigate(Client *c, const Arg *arg);
static Client *newclient(void); static Client *newclient(void);
static void newwindow(Client *c, const Arg *arg); static void newwindow(Client *c, const Arg *arg);
@ -395,6 +396,21 @@ loaduri(Client *c, const Arg *arg) {
} }
} }
void
mousemove(GtkWidget *w, GdkEventMotion *e, Client *c) {
int result;
GdkEventButton coord;
WebKitHitTestResult *hit;
coord.x = e->x;
coord.y = e->y;
hit = webkit_web_view_get_hit_test_result(c->view, &coord);
g_object_get(hit, "context", &result, NULL);
if(result & WEBKIT_HIT_TEST_RESULT_CONTEXT_IMAGE && !c->linkhover) {
puts("Picture");
}
}
void void
navigate(Client *c, const Arg *arg) { navigate(Client *c, const Arg *arg) {
int steps = *(int *)arg; int steps = *(int *)arg;
@ -454,6 +470,7 @@ newclient(void) {
g_signal_connect(G_OBJECT(c->view), "window-object-cleared", G_CALLBACK(windowobjectcleared), 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::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), "notify::progress", G_CALLBACK(progresschange), c);
g_signal_connect(G_OBJECT(c->view), "motion-notify-event", G_CALLBACK(mousemove), c);
/* Indicator */ /* Indicator */
c->indicator = gtk_drawing_area_new(); c->indicator = gtk_drawing_area_new();
@ -495,6 +512,7 @@ newclient(void) {
setatom(c, AtomFind, ""); setatom(c, AtomFind, "");
setatom(c, AtomUri, "about:blank"); setatom(c, AtomUri, "about:blank");
setatom(c, AtomHiLight, "about:blank");
if(NOBACKGROUND) if(NOBACKGROUND)
webkit_web_view_set_transparent(c->view, TRUE); webkit_web_view_set_transparent(c->view, TRUE);
@ -744,12 +762,14 @@ void
update(Client *c) { update(Client *c) {
char *t; char *t;
if(c->progress != 100) if(c->progress != 100) {
t = g_strdup_printf("[%i%%] %s", c->progress, c->title); t = g_strdup_printf("[%i%%] %s", c->progress, c->title);
}
else if(c->linkhover) else if(c->linkhover)
t = g_strdup(c->linkhover); t = g_strdup(c->linkhover);
else else
t = g_strdup(c->title); t = g_strdup(c->title);
setatom(c, AtomHiLight, c->linkhover ? c->linkhover : geturi(c));
drawindicator(c); drawindicator(c);
gtk_window_set_title(GTK_WINDOW(c->win), t); gtk_window_set_title(GTK_WINDOW(c->win), t);
g_free(t); g_free(t);