mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 23:50:19 +00:00
e5674d9666
The purpose of this cursor is to indicate if a current dragged object (file, Spreadsheet cell) can be dropped onto a widget.
35 lines
487 B
C++
35 lines
487 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,
|
|
DragCopy,
|
|
Move,
|
|
Wait,
|
|
Disallowed,
|
|
Eyedropper,
|
|
Zoom,
|
|
__Count,
|
|
};
|
|
|
|
}
|