X-Git-Url: https://git.stderr.nl/gitweb?a=blobdiff_plain;ds=inline;f=src%2Finput.h;fp=src%2Finput.h;h=e961706a3e961000424c0f9c0c285a91833b146c;hb=49eca40060b04105343874714fa67976b9430def;hp=0000000000000000000000000000000000000000;hpb=3bcfb092671765e3ece0c4225c4e69ad960b31cc;p=rodin%2Fchimara.git diff --git a/src/input.h b/src/input.h new file mode 100644 index 0000000..e961706 --- /dev/null +++ b/src/input.h @@ -0,0 +1,15 @@ +#ifndef INPUT_H +#define INPUT_H + +#include +#include +#include +#include + +#include "window.h" +#include "event.h" + +gboolean on_window_key_press_event(GtkWidget *widget, GdkEventKey *event, winid_t window); +void on_window_insert_text(GtkTextBuffer *textbuffer, GtkTextIter *location, gchar *text, gint len, gpointer user_data); +void after_window_insert_text(GtkTextBuffer *textbuffer, GtkTextIter *location, gchar *text, gint len, winid_t window); +#endif