source: buchla-68k/include/ptdisp.h@ f7428b1

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

Started to rework include files.

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