StandardCursor.h 447 B

1234567891011121314151617181920212223242526272829303132
  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. __Count,
  27. };
  28. }