CmCursor.h 450 B

1234567891011121314151617181920212223242526
  1. #pragma once
  2. #include "CmPrerequisites.h"
  3. enum class CursorType
  4. {
  5. Arrow,
  6. Wait,
  7. IBeam,
  8. Help,
  9. Hand,
  10. SizeAll,
  11. SizeNESW,
  12. SizeNS,
  13. SizeNWSE,
  14. SizeWE
  15. };
  16. //Bring in the specific platform's header file
  17. #if CM_PLATFORM == CM_PLATFORM_WIN32
  18. # include "Win32/CmCursorImpl.h"
  19. #elif (CM_PLATFORM == CM_PLATFORM_LINUX)
  20. # include "GLX/CmCursorImpl.h"
  21. #elif CM_PLATFORM == CM_PLATFORM_APPLE
  22. # include "OSX/CmCursorImpl.h"
  23. #endif