zmouse.h 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. /*
  2. * Scroll wheel mouse definitions
  3. *
  4. * Copyright (C) 2000 CodeWeavers
  5. *
  6. * This library is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU Lesser General Public
  8. * License as published by the Free Software Foundation; either
  9. * version 2.1 of the License, or (at your option) any later version.
  10. *
  11. * This library is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  14. * Lesser General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU Lesser General Public
  17. * License along with this library; if not, write to the Free Software
  18. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  19. */
  20. #ifndef __WINE_ZMOUSE_H
  21. #define __WINE_ZMOUSE_H
  22. #define MSH_MOUSEWHEEL "MSWHEEL_ROLLMSG"
  23. #define MOUSEZ_CLASSNAME "MouseZ"
  24. #define MOUSEZ_TITLE "Magellan MSWHEEL"
  25. #define MSH_WHEELMODULE_CLASS (MOUSEZ_CLASSNAME)
  26. #define MSH_WHEELMODULE_TITLE (MOUSEZ_TITLE)
  27. #define MSH_WHEELSUPPORT "MSH_WHEELSUPPORT_MSG"
  28. #define MSH_SCROLL_LINES "MSH_SCROLL_LINES_MSG"
  29. #define WHEEL_DELTA 120
  30. #ifndef WHEEL_PAGESCROLL
  31. #define WHEEL_PAGESCROLL (UINT_MAX)
  32. #endif
  33. #ifndef SPI_SETWHEELSCROLLLINES
  34. #define SPI_SETWHEELSCROLLLINES 105
  35. #endif
  36. #endif /* __WINE_ZMOUSE_H */