home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C!T ROM 2
/
ctrom_ii_b.zip
/
ctrom_ii_b
/
PROGRAM
/
FOXPRO
/
FCT1_12
/
FC_WIN.HDR
< prev
next >
Wrap
Text File
|
1990-09-28
|
2KB
|
109 lines
#output Force Tools 1.1 - Window functions
**********
* w_open()
*
* Open an window and return an window handle
*
* Para 1: Left top-row
* Para 2: Left top-col
* Para 3: Right bottom row
* Para 4: Right bottom col
* Para 5: Clear window area yes/no
*
*
function uint w_open prototype
params value uint, value uint, value uint, value uint, value logical
************
* w_select()
*
* Select an window using the window handle
* returns the current/new active window handle
*
* Para 1: Window handle to select
*
function uint w_select prototype
params value uint
***********
* w_close()
*
* close the current window
* returns the new active window handle
*
function uint w_close prototype
***************
* w_close_all()
*
* close all active window's
*
procedure w_close_all prototype
************
* w_border()
*
* draw an border around the current active window,
* fill in with a character and display an shadow.
* The window coordinates are rudeced by 1
*
* Para 1 : Box type (See Fill function)
* Para 2 : Filler char (See Fill function)
* Para 3 : Shadow byte (See Fill function)
*
procedure w_border prototype
params const char, const char, value uint
***********
* w_titel()
*
* print an titel in the top row even if an window
* border is active.
*
* Para 1 : Titel String
* Para 2 : Center Yes/No
*
procedure w_titel prototype
params const char, value logical
************
* w_active()
*
* return the active window number
*
function uint w_active prototype
**********
* w_step()
*
* set window movement increment/decrement step
*
* Para 1 : Vertical step
* Para 2 : Horizontal step
*
procedure w_step prototype
params value uint, value uint
**********
* w_move()
*
* move window through cursor key's, escape terminates
*
procedure w_move prototype
*********
* w_row()
*
* return the top row of an window
*
function uint w_row prototype
*********
* w_col()
*
* return the bottom row of an window
*
function uint w_col prototype
* eof - fc_win.hdr