[f40a309] | 1 | /*
|
---|
| 2 | =============================================================================
|
---|
| 3 | ptdisp.h -- MIDAS-VII Patch editor display definitions
|
---|
| 4 | Version 10 -- 1988-11-15 -- D.N. Lynx Crowe
|
---|
| 5 | =============================================================================
|
---|
| 6 | */
|
---|
| 7 |
|
---|
[f7428b1] | 8 | #pragma once
|
---|
| 9 |
|
---|
[5fa506d] | 10 | #include "midas.h"
|
---|
| 11 |
|
---|
[f40a309] | 12 | #define OB08LOC 0 /* offset to headings */
|
---|
| 13 | #define OB09LOC 1024 /* offset to patches */
|
---|
| 14 | #define OB10LOC 8192 /* offset to sequence status */
|
---|
| 15 | #define OB11LOC 4096 /* offset to menu */
|
---|
| 16 |
|
---|
[f7428b1] | 17 | #define PDFL_08 CHR3 /* heading object flags */
|
---|
| 18 | #define PDFL_09 CHR3 /* patch entry object flags */
|
---|
| 19 | #define PDFL_10 BIT3 /* sequence status object flags */
|
---|
| 20 | #define PDFL_11 CHR3 /* menu object flags */
|
---|
[f40a309] | 21 |
|
---|
| 22 | #define PTBATR 0x00E2 /* colors for border */
|
---|
| 23 | #define PTHATR 0x0012 /* colors for headings */
|
---|
| 24 |
|
---|
| 25 | #define PTPATR 0x0012 /* colors for patches */
|
---|
| 26 | #define PTEATR 0x0012 /* colors for patch entry line */
|
---|
| 27 | #define PTDATR 0x0062 /* colors for patch data entry */
|
---|
| 28 |
|
---|
| 29 | #define PTMATR 0x0092 /* colors for menu - normal */
|
---|
| 30 | #define PTIATR 0x0012 /* colors for menu - highlighted */
|
---|
| 31 |
|
---|
| 32 | #define PDSEQFG 1 /* sequence status foreground color */
|
---|
| 33 | #define PDSEQBG 2 /* sequence status background color */
|
---|
| 34 | #define PDSEQRN 6 /* sequence status run color */
|
---|
| 35 | #define PDPTRFG 6 /* patch pointer color */
|
---|
| 36 | #define PDBORFG 14 /* border foreground color */
|
---|
| 37 |
|
---|
| 38 | #define PDSEQLEN 16 /* width of the sequence display */
|
---|
| 39 | #define PDPATLEN 48 /* width of the patch display */
|
---|