51#define MOUSE_POINTER_RADIUS 2
52#define MOUSE_MOVEMENT_THRESHOLD 4
53#define MOUSE_DOUBLE_CLICK_TICKS 30
68 mouseLassoInProgress = 5,
69 mouseDownOnControl = 6,
73 mouseResizeRight = 10,
76 mouseResizeDownRight = 13,
92 uint32_t clicked_ticks;
122void Mouse_SetMode(
MouseTracker* the_mouse, MouseMode the_mode);
125void Mouse_SetXY(
MouseTracker* the_mouse, int16_t x, int16_t y);
130void Mouse_AcceptUpdate(
MouseTracker* the_mouse,
Window* the_window, int16_t x, int16_t y,
bool button_down);
133void Mouse_UpdateSelectionRectangle(
MouseTracker* the_mouse, int16_t x_scrolled, int16_t y_scrolled);
182bool Mouse_MovedEnoughForLassoStart(
MouseTracker* the_mouse);
185bool Mouse_MovedEnoughForDragStart(
MouseTracker* the_mouse);
Definition: a2560k.h:1369