aboutsummaryrefslogtreecommitdiff
path: root/input.h
blob: 9d8838303b8713ba93d227e5611d8d67c2e0f255 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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