mirror of
https://github.com/hyprwm/hyprcursor.git
synced 2024-11-16 18:25:58 +01:00
7561459770
* raw data API * add missing type arg * tests: better stuff
68 lines
No EOL
1.7 KiB
C
68 lines
No EOL
1.7 KiB
C
/*
|
|
hyprlang-test in C.
|
|
Renders a cursor shape to /tmp at 48px
|
|
|
|
For better explanations, see the cpp tests.
|
|
*/
|
|
|
|
#include <hyprcursor/hyprcursor.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
void logFunction(enum eHyprcursorLogLevel level, char* message) {
|
|
printf("[hc] %s\n", message);
|
|
}
|
|
|
|
int main(int argc, char** argv) {
|
|
struct hyprcursor_manager_t* mgr = hyprcursor_manager_create_with_logger(NULL, logFunction);
|
|
|
|
if (!mgr) {
|
|
printf("mgr null\n");
|
|
return 1;
|
|
}
|
|
|
|
if (!hyprcursor_manager_valid(mgr)) {
|
|
printf("mgr is invalid\n");
|
|
return 1;
|
|
}
|
|
|
|
hyprcursor_cursor_raw_shape_data* shapeData = hyprcursor_get_raw_shape_data(mgr, "left_ptr");
|
|
if (!shapeData || shapeData->len <= 0) {
|
|
printf("failed querying left_ptr\n");
|
|
return 1;
|
|
}
|
|
|
|
printf("left_ptr images: %d\n", shapeData->len);
|
|
|
|
for (size_t i = 0; i < shapeData->len; ++i) {
|
|
printf("left_ptr image size: %d\n", shapeData->images[i].len);
|
|
}
|
|
|
|
hyprcursor_raw_shape_data_free(shapeData);
|
|
shapeData = NULL;
|
|
|
|
struct hyprcursor_cursor_style_info info = {.size = 48};
|
|
if (!hyprcursor_load_theme_style(mgr, info)) {
|
|
printf("load failed\n");
|
|
return 1;
|
|
}
|
|
|
|
int dataSize = 0;
|
|
hyprcursor_cursor_image_data** data = hyprcursor_get_cursor_image_data(mgr, "left_ptr", info, &dataSize);
|
|
if (data == NULL) {
|
|
printf("data failed\n");
|
|
return 1;
|
|
}
|
|
|
|
int ret = cairo_surface_write_to_png(data[0]->surface, "/tmp/arrowC.png");
|
|
|
|
hyprcursor_cursor_image_data_free(data, dataSize);
|
|
hyprcursor_style_done(mgr, info);
|
|
|
|
if (ret) {
|
|
printf("cairo failed\n");
|
|
return 1;
|
|
}
|
|
|
|
return 0;
|
|
} |