Counter Strike : Global Offensive Source Code
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

45 lines
726 B

  1. //========= Copyright � 1996-2005, Valve Corporation, All rights reserved. ============//
  2. //
  3. // Purpose: Holds the enumerated list of default cursors
  4. //
  5. // $NoKeywords: $
  6. //=============================================================================//
  7. #ifndef CURSOR_H
  8. #define CURSOR_H
  9. #ifdef _WIN32
  10. #pragma once
  11. #endif
  12. #include <vgui/vgui.h>
  13. namespace vgui
  14. {
  15. enum CursorCode
  16. {
  17. dc_user,
  18. dc_none,
  19. dc_arrow,
  20. dc_ibeam,
  21. dc_hourglass,
  22. dc_waitarrow,
  23. dc_crosshair,
  24. dc_up,
  25. dc_sizenwse,
  26. dc_sizenesw,
  27. dc_sizewe,
  28. dc_sizens,
  29. dc_sizeall,
  30. dc_no,
  31. dc_hand,
  32. dc_blank, // don't show any custom vgui cursor, just let windows do it stuff (for HTML widget)
  33. dc_last,
  34. };
  35. typedef unsigned long HCursor;
  36. }
  37. #endif // CURSOR_H