Pager in place
[rodin/chimara.git] / libchimara / pager.h
diff --git a/libchimara/pager.h b/libchimara/pager.h
new file mode 100644 (file)
index 0000000..1979646
--- /dev/null
@@ -0,0 +1,13 @@
+#ifndef PAGER_H
+#define PAGER_H
+
+#include <gtk/gtk.h>
+#include "glk.h"
+#include "window.h"
+
+G_GNUC_INTERNAL gboolean pager_on_expose(GtkTextView *textview, GdkEventExpose *event, winid_t win);
+G_GNUC_INTERNAL gboolean pager_on_key_press_event(GtkTextView *textview, GdkEventKey *event, winid_t win);
+G_GNUC_INTERNAL void pager_after_insert_text(GtkTextBuffer *buffer, GtkTextIter *location, gchar *text, gint len, winid_t win);
+G_GNUC_INTERNAL void pager_after_adjustment_changed(GtkAdjustment *adj, winid_t win);
+
+#endif