glfw: add mouse button IDs

Signed-off-by: Stephen Gutekanst <stephen@hexops.com>
This commit is contained in:
Stephen Gutekanst 2021-07-16 12:20:32 -07:00
parent a5cc868643
commit 3b2f39daaa
4 changed files with 22 additions and 2 deletions

19
glfw/src/mouse_button.zig Normal file
View file

@ -0,0 +1,19 @@
//! Mouse button IDs.
//!
//! See glfw.setMouseButtonCallback for how these are used.
const c = @cImport(@cInclude("GLFW/glfw3.h"));
pub const one = C.GLFW_MOUSE_BUTTON_1;
pub const two = C.GLFW_MOUSE_BUTTON_2;
pub const three = C.GLFW_MOUSE_BUTTON_3;
pub const four = C.GLFW_MOUSE_BUTTON_4;
pub const five = C.GLFW_MOUSE_BUTTON_5;
pub const six = C.GLFW_MOUSE_BUTTON_6;
pub const seven = C.GLFW_MOUSE_BUTTON_7;
pub const eight = C.GLFW_MOUSE_BUTTON_8;
pub const last = eight;
pub const left = one;
pub const right = two;
pub const middle = three;