aboutsummaryrefslogtreecommitdiff
path: root/callbacks.h
diff options
context:
space:
mode:
authormutantturkey <crazycal00@gmail.com>2011-05-18 23:26:37 -0400
committermutantturkey <crazycal00@gmail.com>2011-05-18 23:26:37 -0400
commit9028c807cfd507c57a17c33fd144678db25edea0 (patch)
treea0795dcbe96d569fc668e67fc27e2f16f338f292 /callbacks.h
parent8c189045d953c4dc42076776d6f853a692421a42 (diff)
reworked load_status into cb_load status. now uses the WebKitLoadStatus enumerator instead of the deprecated way, allows for handling of other options also
Diffstat (limited to 'callbacks.h')
-rw-r--r--callbacks.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/callbacks.h b/callbacks.h
index b085616..62f2e87 100644
--- a/callbacks.h
+++ b/callbacks.h
@@ -1,7 +1,8 @@
gboolean cb_keypress(GtkWidget *widget, GdkEventKey *event);
void cb_entry(GtkWidget* entry, gpointer data);
+void cb_link_hover(WebKitWebView* page, const gchar* title, const gchar* link, gpointer data);
void cb_go(gboolean b);
void cb_download(WebKitWebView *web_view, GObject *download, gpointer user_data);
void cb_title_changed(WebKitWebView *v, WebKitWebFrame *f, const char *title, tab *t);
-void cb_commit_load(WebKitWebView* page, WebKitWebFrame* frame, tab *t);
+void cb_load_status(GObject* object, GParamSpec* pspec, tab *t);