home *** CD-ROM | disk | FTP | other *** search
- /*
- Function: BOXGET()
- Author: Greg Lief
- Copyright (c) 1991 Greg Lief
- Purpose: Generic GET
- For Use By AQUARIUM readers
- Compile: clipper boxget /n /w /a
- Link: rtlink /free fi boxget
- */
-
- #include "box.ch"
-
- #command DEFAULT <param> TO <value> => ;
- <param> := IF(<param> == NIL, <value>, <param>)
-
- //───── put the following user-defined command in your own header file
- #command BOXGET <var> ;
- PROMPT <prom> ;
- [ BOXCOLOR <boxcolor> ] ;
- [ PICTURE <pict> ] ;
- [ VALID <valid> ] ;
- [ COLOR <color> ] ;
- [ ROW <row> ] ;
- [ COLUMN <column> ] ;
- [ <norest:NORESTORE> ] ;
- [ <restall:RESTOREALL> ] ;
- [ <double:DOUBLE> ] ;
- => ;
- BoxGet(<prom>, <row>, <column>, ;
- getnew( maxrow() + 1, maxcol() + 1, ;
- { | _grumpy | if(pcount() = 0, <var>, <var> := _grumpy ) }, ;
- <(var)>, <pict>, <color> ), ;
- <{valid}>, <boxcolor>, <.norest.>, <.restall.>, <.double.> )
-
-
- #define TEST
-
- // the following stub program demonstrates how to use this beast
- // test code courtesy of Matt Amis and Don Bayne - thanks guys
-
- #ifdef TEST
-
- function main
- local nx := 0, cx := Space(6), dx := Ctod(""), cphone := "5035881815"
- set delimiters to "││"
- set delimiters on
- @ 0, 0, maxrow(), maxcol() box replicate(chr(2), 9)
- boxget nx prompt "Numeric, pic 9999 nrest r4 c0" picture "9999" ;
- norestore row 4 column 0
- boxget nx prompt "Numeric, pic 9999, val > 20 nrest r7 c0" picture "9999" ;
- valid nX > 20 norestore row 7 column 0
- boxget nx prompt "Numeric, pic #### nrest r10 c0" picture '####' double ;
- norestore row 10 column 0
- boxget nx prompt "Numeric nrest r16 c0" boxcolor "+W/R" ;
- color "+W/RB, +GR/N" norestore row 16 column 0
- boxget nx prompt "Numeric nrest r19 c0" boxcolor "+W/R" ;
- norestore row 19 column 0
- boxget cx prompt "Character, restoreall nrest r22 c0" ;
- boxcolor "*+gr/n" restoreall row 22 column 0
- boxget cx prompt "Character, double" double
- boxget cx prompt "Character, nothing"
- boxget dx prompt "Date, pic 99/99/99" picture "99/99/99"
- boxget dx prompt "Date, pic 99/99/99, not empty valid" picture "99/99/99" ;
- valid (! empty(dx))
- boxget cx prompt "Character, this is going to be a really long message "+ ;
- "that automatically gets truncated by BOXGET()" boxcolor "+gr/n"
- boxget cx prompt "Character, pic @!" picture "@!"
- boxget cx prompt "Character, pic !!!!!!" picture "!!!!!!"
- boxget cphone prompt "Phone #" picture "@R (999) 999-9999"
- return nil
-
- #endif
-
- #define DELIMITERPAD if(set(_SET_DELIMITERS), 2, 0)
- #define TOP nrow
- #define LEFT ncol
- #define BOTTOM nrow + 2
- #define RIGHT ncol + len(cprompt) + 4 + getlength + DELIMITERPAD
-
- function boxget(cprompt, nrow, ncol, oget, cvalid, cboxcolor, ;
- norestore, restall, double)
- static boxstack_ := {} // to store screen shots
- local x, getlength, ;
- settings := { setcursor(1), ; // old cursor size
- row(), col(), ; // old cursor position
- setcolor(cboxcolor), ; // old color
- set(_SET_SCOREBOARD, .f.) } // I hate SCOREBOARD!!
- /*
- Determine length of GET variable. We do this by verifying the length of
- the GET buffer. This is necessary not only in the event that no PICTURE
- clause was used, but also because we cannot always trust the PICTURE
- clause (e.g., "@!" and "@R"). Note that the GET must be activated with
- the setFocus() method, because the g:buffer instance variable only exists
- when the GET is active.
- */
- oget:setFocus()
- getlength = len(oget:buffer)
- oget:killFocus()
- // truncate long prompts to fit on screen
- cprompt = substr(cprompt, 1, maxcol() - 4 - DELIMITERPAD - getlength)
- default nrow to int( maxrow() / 2)
- default ncol to int( maxcol() - 3 - len(cprompt) - DELIMITERPAD - ;
- getlength ) / 2
- // if neither NORESTORE and RESTOREALL options were specified, add the
- // affected portion of screen so we can restore it upon exit
- if ! norestore .and. ! restall
- aadd(settings, savescreen(TOP, LEFT, BOTTOM, RIGHT) )
- else
- // otherwise, add it to the box stack for restoration later (RESTOREALL)
- aadd(boxstack_, { TOP, LEFT, BOTTOM, RIGHT, ;
- savescreen(TOP, LEFT, BOTTOM, RIGHT) } )
- endif
- @ TOP, LEFT, BOTTOM, RIGHT box if(double, B_DOUBLE, B_SINGLE) + ' '
- setpos(TOP + 1, LEFT + 2)
- oget:postBlock = cvalid
- dispout( cprompt )
- oget:row = row()
-
- // if delimiters are set ON, we must display them manually
- // because GETNEW() does not respect the rascally things!
- if set(_SET_DELIMITERS)
- oget:col = col() + 2
- dispout(' ' + left(set(_SET_DELIMCHARS), 1) + ;
- space(getlength) + right(set(_SET_DELIMCHARS), 1))
- else
- oget:col = col() + 1
- endif
- readmodal( { oget } )
-
- // restore all screens if RESTOREALL was specified
- if restall .and. ! empty(boxstack_)
- for x = len(boxstack_) to 1 step -1
- restscreen(boxstack_[x, 1], boxstack_[x, 2], boxstack_[x, 3], ;
- boxstack_[x, 4], boxstack_[x, 5])
- next
- asize(boxstack_, 0)
- elseif ! norestore
- restscreen(TOP, LEFT, BOTTOM, RIGHT, settings[6])
- endif
-
- // restore all other environmental aspects
- setcursor(settings[1]) // cursor size
- setpos(settings[2], settings[3]) // cursor position
- setcolor(settings[4]) // color setting
- set(_SET_SCOREBOARD, settings[5]) // argh...
- return nil
-