home *** CD-ROM | disk | FTP | other *** search
- /*
- dbrowse.prg
-
- Adapted from Nantucket's sample TBDEMO.PRG.
-
- Demonstrates inheriting from Clipper's predefined classes,
- in this case TBROWSE.
-
- Portions copyright Nantucket Corp.
- */
-
- #include "class(y).ch"
- #include "inkey.ch"
- #include "setcurs.ch"
-
-
- create class dBrowse from TBrowse
- instvar appendMode
-
- export:
- method autoFields
- method exec
-
- method goBottom
- method goTop
- method skipper
- method editCell
- method doGet
- endclass
-
-
- constructor new (nTop, nLeft, nBottom, nRight), (nTop, nLeft, nBottom, nRight)
- ::headSep := "═╤═"
- ::colSep := " │ "
-
- // just to prove that these are no longer necessary...
- ::goBottomBlock := NIL
- ::goTopBlock := NIL
-
- // the skipBlock is still necessary, since there is no skip method.
- ::skipBlock := {|x| ::skipper(x) }
-
- // the caller might want to change this, and is free to do so
- // especially on a monochrome screen
- ::colorSpec := "N/W, N/BG, B/W, B/BG, B/W, B/BG, R/W, B/R"
- return
-
-
- /*
- :autoFields
-
- add a column for each field in the current workarea
- */
-
- method procedure autoFields
- local n, cType
-
- // add a column for recno()
- local column := TBColumn():new( " Rec #", {|| Recno()} )
- ::addColumn(column)
-
- for n = 1 to FCount()
-
- // make the new column
- column := TBColumn():new( FieldName(n), ;
- FieldWBlock(FieldName(n), Select()) )
-
- // evaluate the block once to get the field's data type
- cType := valtype(eval(column:block))
-
- // if numeric, use a color block to highlight negative values */
- if cType == "N"
- column:defColor := {5, 6}
- column:colorBlock := {|x| if( x < 0, {7, 8}, {5, 6} )}
- else
- column:defColor := {3, 4}
- end
-
- ::addColumn(column)
- next
- return
-
-
- method procedure goBottom
- go bottom
- skip ::rowPos - ::rowCount
- ::rowPos := ::rowCount
- ::refreshAll()
- return
-
-
- method procedure goTop
- go top
- ::rowPos := 1
- ::refreshAll()
- return
-
-
- method procedure exec
- local nKey
- local nCursSave := SetCursor(0)
- local lMore := .t.
-
- ::appendMode := .f.
-
- while lMore
- // don't allow cursor to move into frozen columns
- if ::colPos <= ::freeze
- ::colPos := ::freeze + 1
- end
-
- // stabilize the display
- while !::stabilize()
- nKey := inkey()
- if nKey <> 0
- exit // abort if a key is waiting
- end
- end
-
- if ::stable
- // display is stable
- if ::hitBottom .and. !::appendMode
- // banged against EOF; go into append mode
- ::appendMode := .t.
- nKey := K_DOWN
- else
- if ::hitTop .or. ::hitBottom
- Tone(125, 0)
- end
-
- // Make sure that the current record is showing up-to-date
- // data in case we are on a network.
- ::refreshCurrent()
- while !::stabilize()
- end
-
- // everything's done; just wait for a key
- nKey := InKey(0)
- end
- end
-
- // process key
- do case
- case nKey == K_DOWN
- ::down()
-
- case nKey == K_UP
- ::up()
-
- if ::appendMode
- ::appendMode := .f.
- ::refreshAll()
- end
-
- case nKey == K_PGDN
- ::pageDown()
-
- case nKey == K_PGUP
- ::pageUp()
- if ::appendMode
- ::appendMode := .f.
- ::refreshAll()
- end
-
- case nKey == K_CTRL_PGUP
- ::goTop()
- ::appendMode := .f.
-
- case nKey == K_CTRL_PGDN
- ::goBottom()
- ::appendMode := .f.
-
- case nKey == K_RIGHT
- ::right()
-
- case nKey == K_LEFT
- ::left()
-
- case nKey == K_HOME
- ::home()
-
- case nKey == K_END
- ::end()
-
- case nKey == K_CTRL_LEFT
- ::panLeft()
-
- case nKey == K_CTRL_RIGHT
- ::panRight()
-
- case nKey == K_CTRL_HOME
- ::panHome()
-
- case nKey == K_CTRL_END
- ::panEnd()
-
- case nKey == K_ESC
- lMore := .f.
-
- case nKey == K_RETURN
- ::editCell()
-
- otherwise
- keyboard chr(nKey)
- ::editCell()
- end
- end
- SetCursor(nCursSave)
- return
-
-
- /*
- :skipper
- */
-
- method function skipper(n)
- local i := 0
-
- if lastrec() <> 0
- if n == 0
- skip 0
- elseif n > 0 .and. recno() <> lastrec() + 1
- while i < n
- skip 1
- if eof()
- if ::appendMode
- i++
- else
- skip -1
- end
- exit
- end
- i++
- end
- elseif n < 0
- while i > n
- skip -1
- if bof()
- exit
- end
- i--
- end
- end
- end
- return i
-
-
- method procedure editCell
- // Save pertinent info about current record
- local xKeyVal := if(empty(indexkey()), nil, &(indexkey()))
- local nRec := recno()
-
- ::doGet()
- ::appendMode := .F.
-
- if empty(indexkey()) .or. (xKeyVal == &(indexkey()))
- // make sure browse is correctly updated
- ::refreshCurrent()
- else
- // record may have moved relative to other records
- ::refreshAll()
-
- while !::stabilize()
- end
-
- do while recno() <> nRec
- ::up()
- while !::stabilize()
- end
- end
- end
- return
-
-
- method procedure doGet
- local column, get, nKey
-
- // save state
- local lScoreSave := Set(_SET_SCOREBOARD, .f.)
- local lExitSave := Set(_SET_EXIT, .t.)
- local bInsSave := SetKey(K_INS)
-
- // make sure browse is stable
- while !::stabilize()
- end
-
- // if confirming new record, append blank
- if ::appendMode .and. recno() == lastrec() + 1
- append blank
- end
-
- // set insert key to toggle insert mode and cursor
- SetKey( K_INS, ;
- { || SetCursor( if(ReadInsert(!ReadInsert()), SC_NORMAL, SC_INSERT)) };
- )
-
- // initial cursor setting
- SetCursor( if(ReadInsert(), SC_INSERT, SC_NORMAL) )
-
- // get column object from browse
- column := ::getColumn(::colPos)
-
- // create a corresponding GET
- get := Get():new(row(), col(), column:block, column:heading,, ::colorSpec)
-
- // read it
- ReadModal( {get} )
-
- // restore state
- SetCursor(0)
- Set(_SET_SCOREBOARD, lScoreSave)
- Set(_SET_EXIT, lExitSave)
- SetKey(K_INS, bInsSave)
-
- // check exit key from get
- nKey := LastKey()
- if nKey == K_UP .or. nKey == K_DOWN .or. nKey == K_PGUP .or. nKey == K_PGDN
- keyboard chr(nKey)
- end
- return
-
-
- // eof dbrowse.prg
-