mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 13:28:11 +00:00

This can be used immediately in PixelPaint (separate commit), but I am adding this as a system-wide cursor since it may also be useful for other applications that want to use it.
33 lines
463 B
C++
33 lines
463 B
C++
/*
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
namespace Gfx {
|
|
|
|
enum class StandardCursor {
|
|
None = 0,
|
|
Hidden,
|
|
Arrow,
|
|
Crosshair,
|
|
IBeam,
|
|
ResizeHorizontal,
|
|
ResizeVertical,
|
|
ResizeDiagonalTLBR,
|
|
ResizeDiagonalBLTR,
|
|
ResizeColumn,
|
|
ResizeRow,
|
|
Hand,
|
|
Help,
|
|
Drag,
|
|
Move,
|
|
Wait,
|
|
Disallowed,
|
|
Eyedropper,
|
|
__Count,
|
|
};
|
|
|
|
}
|