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.

53 lines
951 B

  1. //=========== Copyright Valve Corporation, All rights reserved. ===============//
  2. //
  3. // Purpose:
  4. //=============================================================================//
  5. #ifndef INPUT_MOUSECURSORS_H
  6. #define INPUT_MOUSECURSORS_H
  7. #ifdef _WIN32
  8. #pragma once
  9. #endif
  10. enum EMouseCursor
  11. {
  12. dc_user = 0,
  13. dc_none,
  14. dc_arrow,
  15. dc_ibeam,
  16. dc_hourglass,
  17. dc_waitarrow,
  18. dc_crosshair,
  19. dc_up,
  20. dc_sizenwse,
  21. dc_sizenesw,
  22. dc_sizewe,
  23. dc_sizens,
  24. dc_sizeall,
  25. dc_no,
  26. dc_hand,
  27. dc_blank, // don't show any custom vgui cursor, just let windows do it stuff (for IE HTML widget)
  28. dc_middle_pan,
  29. dc_north_pan,
  30. dc_north_east_pan,
  31. dc_east_pan,
  32. dc_south_east_pan,
  33. dc_south_pan,
  34. dc_south_west_pan,
  35. dc_west_pan,
  36. dc_north_west_pan,
  37. dc_alias,
  38. dc_cell,
  39. dc_colresize,
  40. dc_copycur,
  41. dc_verticaltext,
  42. dc_rowresize,
  43. dc_zoomin,
  44. dc_zoomout,
  45. dc_help,
  46. dc_custom,
  47. dc_last, // custom cursors start from this value and up
  48. };
  49. #endif // INPUT_MOUSECURSORS_H