home *** CD-ROM | disk | FTP | other *** search
- // scrnrect.prg
-
- #include "class(y).ch"
- #include "box.ch"
-
- create class ScreenRect from Rectangle
- instvar screenBuf
- instvar boxStyle
- instvar color
-
- export:
- method moveUp, moveDown
- method moveLeft, moveRight
- method hide, show
- endclass
-
- constructor new (top, left, bottom, right, color, boxStyle), ;
- (top, left, bottom, right)
-
- ::boxStyle := if(boxStyle == nil, B_DOUBLE, boxStyle)
- ::color := color
- ::show()
- return
-
- method procedure hide
- restscreen(::top, ::left, ::bottom, ::right, ::screenBuf)
- return
-
- method procedure show
- local oldColor := setcolor(::color)
- ::screenBuf := savescreen(::top, ::left, ::bottom, ::right)
- @ ::top, ::left, ::bottom, ::right box ::boxStyle
- setcolor(oldColor)
- return
-
- method procedure moveUp(n)
- ::hide()
- ::set(::top - n, nil, ::bottom - n, nil)
- ::show()
- return
-
- method procedure moveDown(n)
- ::hide()
- ::set(::top + n, nil, ::bottom + n, nil)
- ::show()
- return
-
- method procedure moveLeft(n)
- ::hide()
- ::set(nil, ::left - n, nil, ::right - n)
- ::show()
- return
-
- method procedure moveRight(n)
- ::hide()
- ::set(nil, ::left + n, nil, ::right + n)
- ::show()
- return
-
- // eof scrnrect.prg
-