30 lines
1.2 KiB
Plaintext
30 lines
1.2 KiB
Plaintext
/*
|
|
* $Id$
|
|
*/
|
|
// Header file for db_brows.prg
|
|
#define KLRECF 200
|
|
#define LI_LEN 24
|
|
#define LI_NSTR mslist[1]
|
|
#define LI_CLR mslist[2] // Color of a window
|
|
#define LI_CLRV mslist[3] // Color of a current line
|
|
#define LI_BSKIP mslist[4] // Codeblock for a 'skip' operation
|
|
#define LI_BGTOP mslist[5] // Codeblock for a 'go top'
|
|
#define LI_BGBOT mslist[6] // Codeblock for a 'go bottom'
|
|
#define LI_BEOF mslist[7] // Codeblock for a 'eof' checking
|
|
#define LI_BBOF mslist[8] // Codeblock for a 'bof' checking
|
|
#define LI_B1 mslist[9]
|
|
#define LI_MSF mslist[10] // Array of codeblocks for columns
|
|
#define LI_NAMES mslist[11] // Array of the fields names
|
|
#define LI_NMCLR mslist[12] // Color of field names line
|
|
#define LI_FREEZE mslist[13] // Number of fields to 'freeze' from left
|
|
#define LI_RCOU mslist[14]
|
|
#define LI_MSREC mslist[15]
|
|
#define LI_PRFLT mslist[16]
|
|
#define LI_TEKZP mslist[17]
|
|
#define LI_KOLZ mslist[18]
|
|
#define LI_VALID mslist[19] // Array of codeblocks for postvalidation while changing a field
|
|
#define LI_WHEN mslist[20] // Array of codeblocks for prevalidation while changing a field
|
|
#define LI_MSNAME mslist[21]
|
|
#define LI_MSTYP mslist[22]
|
|
#define LI_MSLEN mslist[23]
|
|
#define LI_MSDEC mslist[24] |