home *** CD-ROM | disk | FTP | other *** search
- * library.prg - a procedure library for use with the utilities
-
- * colorval - to determine color value
- * fillarea - for use with CFILL
- * lightbar - for use with MENUBAR
- * replchar - for use with CHAR
-
- procedure COLORVAL
- parameters foreground,background,intensity,blinking
- * make colorval a public variable
- * pass foreground and background as numbers, others as logicals
- COLORVAL = background * 16 + foreground
- COLORVAL = iif(intensity,COLORVAL+8 ,COLORVAL)
- COLORVAL = iif(blinking ,COLORVAL+128 ,COLORVAL)
- return
-
- procedure FILLAREA
- parameter ROW, COL, HEIGHT, WIDTH, COLOR
- call CHAR with chr(ROW+1) + chr(COL+1) + chr(HEIGHT) + ;
- chr(WIDTH) + chr(COLOR)
- return
-
- procedure REPLCHAR
- parameter ROW, COL, HEIGHT, WIDTH, CHARACTER
- call CHAR with chr(ROW+1) + chr(COL+1) + chr(HEIGHT) + ;
- chr(WIDTH) + chr(CHARACTER)
- return
-
- procedure lightbar
- * choice and key should be public variables
- parameter choice, row, col, rows, cols,;
- total, sep, width, backgrnd, color
- menubar = chr(choice) + ' ' + chr(row+1) + chr(col+1) + ;
- chr(rows) + chr(cols) + chr(total) + chr(sep) +;
- chr(width) + chr(backgrnd) + chr(color)
- call menubar with menubar
- choice = asc(substr(menubar,1,1))
- key = asc(substr(menubar,2,1))
- return
-