git: Line endings of README.txt
[projects/chimara/chimara.git] / libchimara / hyperlink.h
1 #ifndef HYPERLINK_H
2 #define HYPERLINK_H
3
4 #include <glib.h>
5 #include <gtk/gtk.h>
6
7 #include "glk.h"
8 #include "window.h"
9 #include "event.h"
10
11 struct hyperlink {
12         guint32 value;
13         GtkTextTag *tag;
14         gulong event_handler;
15         winid_t window;
16 };
17 typedef struct hyperlink hyperlink_t;
18
19 G_GNUC_INTERNAL gboolean on_hyperlink_clicked(GtkTextTag *tag, GObject *object, GdkEvent *event, GtkTextIter *iter, hyperlink_t *link);
20
21 #endif