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