summaryrefslogtreecommitdiff
path: root/src/book-view.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/book-view.c')
-rw-r--r--src/book-view.c15
1 files changed, 14 insertions, 1 deletions
diff --git a/src/book-view.c b/src/book-view.c
index 3be88c2..f418d37 100644
--- a/src/book-view.c
+++ b/src/book-view.c
@@ -1,4 +1,4 @@
-/* book-view.c generated by valac 0.16.0, the Vala compiler
+/* book-view.c generated by valac 0.16.1, the Vala compiler
* generated from book-view.vala, do not modify */
/*
@@ -193,6 +193,7 @@ void page_view_motion (PageView* self, gint x, gint y);
GdkCursorType page_view_get_cursor (PageView* self);
void book_view_select_next_page (BookView* self);
void book_view_select_prev_page (BookView* self);
+GtkWidget* book_view_get_event_source (BookView* self);
static void g_cclosure_user_marshal_VOID__PAGE (GClosure * closure, GValue * return_value, guint n_param_values, const GValue * param_values, gpointer invocation_hint, gpointer marshal_data);
static void book_view_finalize (GObject* obj);
@@ -2215,6 +2216,18 @@ Page* book_view_get_selected (BookView* self) {
}
+GtkWidget* book_view_get_event_source (BookView* self) {
+ GtkWidget* result = NULL;
+ GtkWidget* _tmp0_;
+ GtkWidget* _tmp1_;
+ g_return_val_if_fail (self != NULL, NULL);
+ _tmp0_ = self->priv->drawing_area;
+ _tmp1_ = _g_object_ref0 (_tmp0_);
+ result = _tmp1_;
+ return result;
+}
+
+
static void g_cclosure_user_marshal_VOID__PAGE (GClosure * closure, GValue * return_value, guint n_param_values, const GValue * param_values, gpointer invocation_hint, gpointer marshal_data) {
typedef void (*GMarshalFunc_VOID__PAGE) (gpointer data1, gpointer arg_1, gpointer data2);
register GMarshalFunc_VOID__PAGE callback;