diff options
author | nirav <nirav@teisuu.com> | 2018-09-05 00:35:24 +0530 |
---|---|---|
committer | Dandelion <nirav@teisuu.com> | 2018-09-07 21:16:09 +0530 |
commit | 02f7a54e67260ee7995c6cd9bf40ae784b60203d (patch) | |
tree | d8bb663f273f4adf1d737ea39f19e5154c9ac07c /input.h | |
parent | 28e58ba0dbf30a4a28465f460c67e1c4337bd3a4 (diff) | |
download | im-02f7a54e67260ee7995c6cd9bf40ae784b60203d.tar.gz im-02f7a54e67260ee7995c6cd9bf40ae784b60203d.zip |
Added image panning support, refactoring
Diffstat (limited to 'input.h')
-rw-r--r-- | input.h | 13 |
1 files changed, 13 insertions, 0 deletions
@@ -0,0 +1,13 @@ +#ifndef __INPUT_H +#define __INPUT_H + +#include <gtk-3.0/gtk/gtk.h> + +void handle_key_press(GdkEventKey key); +void handle_button_press(GdkEvent *event); +void handle_button_release(); +void handle_mouse_move(gdouble x, gdouble y); +void handle_scroll(GdkEvent *event); +void handle_resize(); + +#endif |