1// LAF OS Library
2// Copyright (C) 2021-2022 Igara Studio S.A.
3// Copyright (C) 2012-2014 David Capello
4//
5// This file is released under the terms of the MIT license.
6// Read LICENSE.txt for more information.
7
8#ifndef OS_NATIVE_CURSOR_H_INCLUDED
9#define OS_NATIVE_CURSOR_H_INCLUDED
10#pragma once
11
12#include "gfx/fwd.h"
13
14namespace os {
15
16 enum class NativeCursor {
17 Hidden,
18 Arrow,
19 Crosshair,
20 IBeam,
21 Wait,
22 Link,
23 Help,
24 Forbidden,
25 Move,
26 SizeNS,
27 SizeWE,
28 SizeN,
29 SizeNE,
30 SizeE,
31 SizeSE,
32 SizeS,
33 SizeSW,
34 SizeW,
35 SizeNW,
36
37 Cursors [[maybe_unused]]
38 };
39
40} // namespace os
41
42#endif
43