source: buchla-68k/include/scwheel.h

Last change on this file was f7428b1, checked in by Thomas Lopatic <thomas@…>, 7 years ago

Started to rework include files.

  • Property mode set to 100644
File size: 1.2 KB
Line 
1/*
2 =============================================================================
3 scwheel.h -- MIDAS-VII scroll wheel and trackball constants
4 Version 14 -- 1989-07-20 -- D.N. Lynx Crowe
5 =============================================================================
6*/
7
8#pragma once
9
10#define NSWFIFO 100 /* scroll wheel FIFO size */
11
12#define SWBACK 10 /* scroll wheel FIFO look back count */
13#define SWRMIN 8 /* scroll wheel rate threshold */
14#define SWTHR 4 /* scroll wheel movement threshold */
15#define SWTIME 10 /* scroll wheel timer scan rate */
16#define SWWAIT 2 /* scroll wheel wait count */
17
18#define NTKFIFO 100 /* trackball FIFO size */
19
20#define TKBACK 8 /* trackball FIFO look back count */
21#define TKRMIN 6 /* trackball rate threshold */
22#define TKTHR 3 /* trackball movement threshold */
23#define TKTIME 10 /* trackball timer scan rate */
24#define TKWAIT 2 /* trackball wait count */
25
26#define TKXDVR 4 /* text cursor X divisor */
27#define TKYDVR 6 /* text cursor Y divisor */
28
29#define TKCDVR 6 /* text cursor movement threshold */
30
31#define MSTOVAL 125 /* mouse movement timer value */
32#define MUTIME 1000 /* mouse reset timer value */
Note: See TracBrowser for help on using the repository browser.