|
|
|
@ -15,11 +15,6 @@ import java.awt.event.MouseEvent
|
|
|
|
|
@OptIn(ExperimentalComposeUiApi::class) |
|
|
|
|
fun ComposeScene.subscribeToGLFWEvents(windowHandle: Long) { |
|
|
|
|
glfwSetMouseButtonCallback(windowHandle) { _, button, action, mods -> |
|
|
|
|
when (action) { |
|
|
|
|
GLFW_PRESS -> PointerEventType.Press |
|
|
|
|
GLFW_RELEASE -> PointerEventType.Release |
|
|
|
|
else -> PointerEventType.Unknown |
|
|
|
|
} |
|
|
|
|
sendPointerEvent( |
|
|
|
|
position = glfwGetCursorPos(windowHandle), |
|
|
|
|
eventType = when (action) { |
|
|
|
@ -121,4 +116,4 @@ private fun getAwtMods(windowHandle: Long): Int {
|
|
|
|
|
if (glfwGetKey(windowHandle, GLFW_KEY_LEFT_ALT) == GLFW_PRESS || glfwGetKey(windowHandle, GLFW_KEY_RIGHT_ALT) == GLFW_PRESS) |
|
|
|
|
awtMods = awtMods or InputEvent.ALT_DOWN_MASK |
|
|
|
|
return awtMods |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|