Advance the pager to the end when clicked
[projects/chimara/chimara.git] / libchimara / pager.h
index 87d0a4312dd6e0b300d3e34029d2068f394e12d9..4e7bbf0cfa1b9ec1d1d7f9189d45ab6609db635e 100644 (file)
@@ -5,9 +5,10 @@
 #include "glk.h"
 #include "window.h"
 
-G_GNUC_INTERNAL gboolean pager_on_expose(GtkTextView *textview, GdkEventExpose *event, winid_t win);
+G_GNUC_INTERNAL void pager_on_clicked(GtkButton *pager, 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_size_allocate(GtkTextView *view, GtkAllocation *allocation, winid_t win);
 G_GNUC_INTERNAL void pager_after_adjustment_changed(GtkAdjustment *adj, winid_t win);
+G_GNUC_INTERNAL void pager_after_size_allocate(GtkTextView *textview, GdkRectangle *allocation, winid_t win);
+G_GNUC_INTERNAL void pager_update(winid_t win);
 
 #endif