blob: e9c0476ef2418e579f27fce4d130369a6cff32b2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#ifndef _MOUSE_EVENT_H_
#define _MOUSE_EVENT_H_
// Generated by Java: EVENT_MOUSE_CLICKED = 200;
#define EVENT_MOUSE_ENTERED 201
#define EVENT_MOUSE_EXITED 202
#define EVENT_MOUSE_PRESSED 203
#define EVENT_MOUSE_RELEASED 204
#define EVENT_MOUSE_MOVED 205
// can't find how to regenerate this file, adding manually
#define EVENT_MOUSE_WHEEL_MOVED 207
// Generated by Java: EVENT_MOUSE_DRAGGED = 206;
#endif
|