* Refactored the cancel_line_input_request code to be less copy/pasted.
[projects/chimara/chimara.git] / src / input.h
index da227790d9cdca25c460655da4f1bf97070e042f..91cbf91395693414a9a168dd9f69827b818514ed 100644 (file)
@@ -9,7 +9,9 @@
 #include "window.h"
 #include "event.h"
 
-gboolean on_window_key_press_event(GtkWidget *widget, GdkEventKey *event, winid_t win);
-gboolean on_text_grid_key_press_event(GtkWidget *widget, GdkEventKey *event, winid_t win);
-void after_window_insert_text(GtkTextBuffer *textbuffer, GtkTextIter *location, gchar *text, gint len, winid_t win);
+G_GNUC_INTERNAL gboolean on_window_key_press_event(GtkWidget *widget, GdkEventKey *event, winid_t win);
+G_GNUC_INTERNAL void after_window_insert_text(GtkTextBuffer *textbuffer, GtkTextIter *location, gchar *text, gint len, winid_t win);
+G_GNUC_INTERNAL void on_input_entry_activate(GtkEntry *input_entry, winid_t win);
+G_GNUC_INTERNAL static int flush_text_buffer(winid_t win);
+
 #endif