2020-09-10 17:25:13 +00:00
|
|
|
/*
|
2024-10-04 11:19:50 +00:00
|
|
|
* Copyright (c) 2018-2020, Andreas Kling <andreas@ladybird.org>
|
2020-09-10 17:25:13 +00:00
|
|
|
*
|
2021-04-22 08:24:48 +00:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-09-10 17:25:13 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
namespace Gfx {
|
|
|
|
|
|
|
|
enum class StandardCursor {
|
|
|
|
None = 0,
|
2020-11-02 06:28:14 +00:00
|
|
|
Hidden,
|
2020-09-10 17:25:13 +00:00
|
|
|
Arrow,
|
2020-10-30 17:06:32 +00:00
|
|
|
Crosshair,
|
2020-09-10 17:25:13 +00:00
|
|
|
IBeam,
|
|
|
|
ResizeHorizontal,
|
|
|
|
ResizeVertical,
|
|
|
|
ResizeDiagonalTLBR,
|
|
|
|
ResizeDiagonalBLTR,
|
|
|
|
ResizeColumn,
|
|
|
|
ResizeRow,
|
|
|
|
Hand,
|
|
|
|
Help,
|
|
|
|
Drag,
|
2022-06-20 09:37:22 +00:00
|
|
|
DragCopy,
|
2020-09-10 17:25:13 +00:00
|
|
|
Move,
|
|
|
|
Wait,
|
2021-03-11 15:28:56 +00:00
|
|
|
Disallowed,
|
2021-09-01 02:16:53 +00:00
|
|
|
Eyedropper,
|
2021-09-01 02:19:31 +00:00
|
|
|
Zoom,
|
2020-12-25 21:45:47 +00:00
|
|
|
__Count,
|
2020-09-10 17:25:13 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|