mirror of
https://github.com/hyprwm/Hyprland.git
synced 2025-05-18 16:10:25 -07:00
Moves Hyprland from wlroots to aquamarine for the backend. --------- Signed-off-by: Vaxry <vaxry@vaxry.net> Co-authored-by: Mihai Fufezan <mihai@fufexan.net> Co-authored-by: Jan Beich <jbeich@FreeBSD.org> Co-authored-by: vaxerski <vaxerski@users.noreply.github.com> Co-authored-by: UjinT34 <41110182+UjinT34@users.noreply.github.com> Co-authored-by: Tom Englund <tomenglund26@gmail.com> Co-authored-by: Ikalco <73481042+ikalco@users.noreply.github.com> Co-authored-by: diniamo <diniamo53@gmail.com>
43 lines
689 B
C++
43 lines
689 B
C++
#pragma once
|
|
|
|
#include <array>
|
|
|
|
// clang-format off
|
|
constexpr std::array<const char*, 35> CURSOR_SHAPE_NAMES = {
|
|
"invalid",
|
|
"default",
|
|
"context-menu",
|
|
"help",
|
|
"pointer",
|
|
"progress",
|
|
"wait",
|
|
"cell",
|
|
"crosshair",
|
|
"text",
|
|
"vertical-text",
|
|
"alias",
|
|
"copy",
|
|
"move",
|
|
"no-drop",
|
|
"not-allowed",
|
|
"grab",
|
|
"grabbing",
|
|
"e-resize",
|
|
"n-resize",
|
|
"ne-resize",
|
|
"nw-resize",
|
|
"s-resize",
|
|
"se-resize",
|
|
"sw-resize",
|
|
"w-resize",
|
|
"ew-resize",
|
|
"ns-resize",
|
|
"nesw-resize",
|
|
"nwse-resize",
|
|
"col-resize",
|
|
"row-resize",
|
|
"all-scroll",
|
|
"zoom-in",
|
|
"zoom-out",
|
|
};
|
|
// clang-format on
|