mirror of
https://github.com/nicbarker/clay.git
synced 2025-09-18 12:36:17 +00:00
[Core] Add Clay_GetPointerData
function to the public API.
This adds a new `Clay_GetPointerData` function to the public API that returns information on the current state of pointer interactions.
This commit is contained in:
parent
b33ba4ff62
commit
42474ab3e9
8
clay.h
8
clay.h
|
@ -844,6 +844,8 @@ CLAY_DLL_EXPORT void Clay_OnHover(void (*onHoverFunction)(Clay_ElementId element
|
|||
// An imperative function that returns true if the pointer position provided by Clay_SetPointerState is within the element with the provided ID's bounding box.
|
||||
// This ID can be calculated either with CLAY_ID() for string literal IDs, or Clay_GetElementId for dynamic strings.
|
||||
CLAY_DLL_EXPORT bool Clay_PointerOver(Clay_ElementId elementId);
|
||||
// Returns information on the current state of pointer interactions.
|
||||
CLAY_DLL_EXPORT Clay_PointerData Clay_GetPointerData(void);
|
||||
// Returns data representing the state of the scrolling element with the provided ID.
|
||||
// The returned Clay_ScrollContainerData contains a `found` bool that will be true if a scroll element was found with the provided ID.
|
||||
// An imperative function that returns true if the pointer position provided by Clay_SetPointerState is within the element with the provided ID's bounding box.
|
||||
|
@ -3054,6 +3056,12 @@ void Clay__CalculateFinalLayout(void) {
|
|||
}
|
||||
}
|
||||
|
||||
CLAY_WASM_EXPORT("Clay_GetPointerData")
|
||||
CLAY_DLL_EXPORT Clay_PointerData Clay_GetPointerData(void) {
|
||||
Clay_Context* context = Clay_GetCurrentContext();
|
||||
return context->pointerInfo;
|
||||
}
|
||||
|
||||
#pragma region DebugTools
|
||||
Clay_Color CLAY__DEBUGVIEW_COLOR_1 = {58, 56, 52, 255};
|
||||
Clay_Color CLAY__DEBUGVIEW_COLOR_2 = {62, 60, 58, 255};
|
||||
|
|
Loading…
Reference in a new issue