2024-03-07 04:19:38 +01:00
|
|
|
#include <iostream>
|
|
|
|
#include <hyprcursor.hpp>
|
|
|
|
|
|
|
|
int main(int argc, char** argv) {
|
|
|
|
Hyprcursor::CHyprcursorManager mgr(nullptr);
|
|
|
|
|
2024-03-07 15:50:48 +01:00
|
|
|
// preload size 48 for testing
|
|
|
|
if (!mgr.loadThemeStyle(Hyprcursor::SCursorStyleInfo{.size = 48})) {
|
|
|
|
std::cout << "failed loading style\n";
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
// get cursor for left_ptr
|
|
|
|
const auto ARROW = mgr.getSurfaceFor("left_ptr", Hyprcursor::SCursorStyleInfo{.size = 48});
|
2024-03-07 04:19:38 +01:00
|
|
|
|
|
|
|
// save to disk
|
|
|
|
const auto RET = cairo_surface_write_to_png(ARROW, "/tmp/arrow.png");
|
|
|
|
|
|
|
|
std::cout << "Cairo returned for write: " << RET << "\n";
|
|
|
|
|
2024-03-07 16:10:45 +01:00
|
|
|
if (RET)
|
|
|
|
return 1;
|
|
|
|
|
2024-03-07 04:19:38 +01:00
|
|
|
return !mgr.valid();
|
|
|
|
}
|