1 | /*
|
---|
2 | =============================================================================
|
---|
3 | tundsp.h -- tuning editor common parameter header file
|
---|
4 | Version 5 -- 1987-12-21 -- D.N. Lynx Crowe
|
---|
5 |
|
---|
6 | Uses definitions from: "graphdef.h", "midas.h", "vsdd.h"
|
---|
7 | =============================================================================
|
---|
8 | */
|
---|
9 |
|
---|
10 | #define TUNOBJ 8 /* display object number */
|
---|
11 | #define TUNPRI 8 /* display object priority */
|
---|
12 |
|
---|
13 | #define TUNFL (V_RES3) /* display object flags */
|
---|
14 |
|
---|
15 | #define TDCURX CTOX(61) /* initial cursor x location */
|
---|
16 | #define TDCURY RTOY(24) /* initial cursor y location */
|
---|
17 |
|
---|
18 | #define TDCURSR 1 /* cursor color */
|
---|
19 | #define TDTCURC 3 /* typewriter cursor color */
|
---|
20 | #define TDTCURB 7 /* typewriter background color */
|
---|
21 | #define TDTCHRC 11 /* typewriter text color */
|
---|
22 |
|
---|
23 | #define TDCHGD 14 /* hilite color for changed table # */
|
---|
24 | #define TDSELD 13 /* hilite color for selected data */
|
---|
25 | #define TDENTRY 12 /* hilite color for data entry */
|
---|
26 | #define TDLABEL 9 /* pitch label color */
|
---|
27 | #define TDMKEYC 10 /* MIDI key number label color */
|
---|
28 |
|
---|
29 | #define TCFBX00 11 /* foreground color */
|
---|
30 | #define TCFBX01 11 /* foreground color */
|
---|
31 | #define TCFBX02 11 /* foreground color */
|
---|
32 | #define TCFBX03 11 /* foreground color */
|
---|
33 | #define TCFBX04 11 /* foreground color */
|
---|
34 | #define TCFBX05 11 /* foreground color */
|
---|
35 | #define TCFBX06 11 /* foreground color */
|
---|
36 | #define TCFBX07 11 /* foreground color */
|
---|
37 |
|
---|
38 | #define TCBBX00 5 /* background color */
|
---|
39 | #define TCBBX01 8 /* background color */
|
---|
40 | #define TCBBX02 5 /* background color */
|
---|
41 | #define TCBBX03 8 /* background color */
|
---|
42 | #define TCBBX04 5 /* background color */
|
---|
43 | #define TCBBX05 8 /* background color */
|
---|
44 | #define TCBBX06 6 /* background color */
|
---|
45 | #define TCBBX07 4 /* background color */
|
---|
46 |
|
---|