Screen mouse button types

Updated: April 19, 2023

Types of mouse buttons

Synopsis:

#include <screen/screen.h>
enum {
    SCREEN_LEFT_MOUSE_BUTTON = (1 << 0),
    SCREEN_MIDDLE_MOUSE_BUTTON = (1 << 1),
    SCREEN_RIGHT_MOUSE_BUTTON = (1 << 2)
};

Data:

SCREEN_LEFT_MOUSE_BUTTON
Left mouse button.
SCREEN_MIDDLE_MOUSE_BUTTON
Middle mouse button.
SCREEN_RIGHT_MOUSE_BUTTON
Right mouse button.

Library:

libscreen