[f40a309] | 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 |
|
---|
[f7428b1] | 10 | #pragma once
|
---|
| 11 |
|
---|
[5fa506d] | 12 | #include "midas.h"
|
---|
| 13 | #include "vsdd.h"
|
---|
| 14 |
|
---|
[f40a309] | 15 | #define TUNOBJ 8 /* display object number */
|
---|
| 16 | #define TUNPRI 8 /* display object priority */
|
---|
| 17 |
|
---|
[f7428b1] | 18 | #define TUNFL V_RES3 /* display object flags */
|
---|
[f40a309] | 19 |
|
---|
| 20 | #define TDCURX CTOX(61) /* initial cursor x location */
|
---|
| 21 | #define TDCURY RTOY(24) /* initial cursor y location */
|
---|
| 22 |
|
---|
| 23 | #define TDCURSR 1 /* cursor color */
|
---|
| 24 | #define TDTCURC 3 /* typewriter cursor color */
|
---|
| 25 | #define TDTCURB 7 /* typewriter background color */
|
---|
| 26 | #define TDTCHRC 11 /* typewriter text color */
|
---|
| 27 |
|
---|
| 28 | #define TDCHGD 14 /* hilite color for changed table # */
|
---|
| 29 | #define TDSELD 13 /* hilite color for selected data */
|
---|
| 30 | #define TDENTRY 12 /* hilite color for data entry */
|
---|
| 31 | #define TDLABEL 9 /* pitch label color */
|
---|
| 32 | #define TDMKEYC 10 /* MIDI key number label color */
|
---|
| 33 |
|
---|
| 34 | #define TCFBX00 11 /* foreground color */
|
---|
| 35 | #define TCFBX01 11 /* foreground color */
|
---|
| 36 | #define TCFBX02 11 /* foreground color */
|
---|
| 37 | #define TCFBX03 11 /* foreground color */
|
---|
| 38 | #define TCFBX04 11 /* foreground color */
|
---|
| 39 | #define TCFBX05 11 /* foreground color */
|
---|
| 40 | #define TCFBX06 11 /* foreground color */
|
---|
| 41 | #define TCFBX07 11 /* foreground color */
|
---|
| 42 |
|
---|
| 43 | #define TCBBX00 5 /* background color */
|
---|
| 44 | #define TCBBX01 8 /* background color */
|
---|
| 45 | #define TCBBX02 5 /* background color */
|
---|
| 46 | #define TCBBX03 8 /* background color */
|
---|
| 47 | #define TCBBX04 5 /* background color */
|
---|
| 48 | #define TCBBX05 8 /* background color */
|
---|
| 49 | #define TCBBX06 6 /* background color */
|
---|
| 50 | #define TCBBX07 4 /* background color */
|
---|