Some hyperlink code.
authorMarijn van Vliet <marijn.vanvliet@med.kuleuven.be>
Sat, 14 Nov 2009 15:38:31 +0000 (15:38 +0000)
committerMarijn van Vliet <marijn.vanvliet@med.kuleuven.be>
Sat, 14 Nov 2009 15:38:31 +0000 (15:38 +0000)
git-svn-id: http://lassie.dyndns-server.com/svn/gargoyle-gtk@158 ddfedd41-794f-dd11-ae45-00112f111e67

libchimara/Makefile.am
libchimara/hyperlink.h [new file with mode: 0644]

index 2024138495331ca2e51c2060503aa56619ace5a7..9676f852b34e701fa512059e01c15fcb184ff68a 100644 (file)
@@ -21,7 +21,7 @@ libchimara_la_SOURCES = \
        glk.c glk.h \
        glkstart.h \
        glkunix.c glkunix.h \
-       hyperlink.c \
+       hyperlink.c hyperlink.h \
        image.c \
        init.c init.h \
        input.c input.h \
diff --git a/libchimara/hyperlink.h b/libchimara/hyperlink.h
new file mode 100644 (file)
index 0000000..2b5b1eb
--- /dev/null
@@ -0,0 +1,13 @@
+#ifndef HYPERLINK_H
+#define HYPERLINK_H
+
+#include <glib.h>
+#include <gtk/gtk.h>
+
+#include "glk.h"
+#include "window.h"
+#include "event.h"
+
+G_GNUC_INTERNAL gboolean on_window_button_release_event(GtkWidget *widget, GdkEventButton *event, winid_t win);
+
+#endif