home *** CD-ROM | disk | FTP | other *** search
-
- char *sample_screen[] = {
- "╒═══════╡ Sample Help Screen ╞════════╕ ╒════════╡ Sample Text Screen ╞════════╕",
- "│ │ │ File Header Size = xxx Line:Col│",
- "│ * Press Enter (Return) to move │ │ │",
- "│ to the next color field. │ │ Text area. Regular text will be │",
- "│ │ │ will be displayed in this color. │",
- "│ * The Up and Down arrows change │ │ │",
- "│ the foreground color. │ │ Block area. Line and box blocks are │",
- "│ │ │ marked in this color. │",
- "│ * The Page up and Page down keys │ │ <====== End of File ======> │",
- "│ change the background color. │ │ Warning Messages │",
- "│ │ │ Mode/Information wrapped... │",
- "╘═════════════════════════════════════╛ ╘══════════════════════════════════════╛",
- NULL
- };
-
-
- char *field_screen[] = {
- " Help screen [ ] Warning Messages [ ]",
- " F2 = Load default colors File Header [ ] Mode/Information [ ]",
- " F3 = Quit Text Area [ ] wrapped... [ ]",
- "F10 = Write colors to tde.exe Block Color [ ] End of File [ ]",
- NULL
- };
-
- struct {
- int line;
- int col;
- int color;
- void (*show_me)( void );
- } fields[8] = {
- { 12, 52, 0 }, { 13, 52, 0 }, { 14, 52, 0 }, { 15, 52, 0 },
- { 12, 75, 0 }, { 13, 75, 0 }, { 14, 75, 0 }, { 15, 75, 0 }
- };
-
- #define HERC_REVERSE 0x70
- #define HERC_UNDER 0x01
- #define HERC_NORMAL 0x07
- #define HERC_HIGH 0x0F
-
- #define COLOR_HEAD 0x4b
- #define COLOR_TEXT 0x07
- #define COLOR_MODE 0x17
- #define COLOR_BLOCK 0x7f
- #define COLOR_MESSAGE 0x0f
- #define COLOR_HELP 0x1A
- #define COLOR_WRAP 0x1A
- #define COLOR_EOF 0x09
-
-
- #define HEAD 0
- #define TEXT 1
- #define MODE 2
- #define BLOCK 3
- #define WARNING 4
- #define HELP 5
- #define WRAP 6
- #define CEOF 7