StandardCursor.h 473 B

12345678910111213141516171819202122232425262728293031323334
  1. /*
  2. * Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
  3. *
  4. * SPDX-License-Identifier: BSD-2-Clause
  5. */
  6. #pragma once
  7. namespace Gfx {
  8. enum class StandardCursor {
  9. None = 0,
  10. Hidden,
  11. Arrow,
  12. Crosshair,
  13. IBeam,
  14. ResizeHorizontal,
  15. ResizeVertical,
  16. ResizeDiagonalTLBR,
  17. ResizeDiagonalBLTR,
  18. ResizeColumn,
  19. ResizeRow,
  20. Hand,
  21. Help,
  22. Drag,
  23. Move,
  24. Wait,
  25. Disallowed,
  26. Eyedropper,
  27. Zoom,
  28. __Count,
  29. };
  30. }