home *** CD-ROM | disk | FTP | other *** search
- /*
- PullDnMenu.prg
-
- Copyright (c) 1991 Chris Muller and Anton van Straaten
- */
-
- #include "class(y).ch"
- #include "win.ch"
- #include "inkey.ch"
-
-
- create class PullDnMenu from PopupMenu
-
- protected:
- method menuTop, menuLeft
-
- export:
- method moveLeft, moveRight
- method setKeys, clearKeys
- endclass
-
-
- // this constructor does nothing but pass its parameter up to the superclass
- constructor new (Items), (Items)
- return
-
-
- method function menuTop
- return winTop() + 1
-
-
- method function menuLeft
- return winLeft() + ::parent:newMenuPos()
-
-
- method procedure moveLeft
- keyboard chr(K_ESC) + chr(K_LEFT) + chr(K_ENTER)
- return
-
-
- method procedure moveRight
- keyboard chr(K_ESC) + chr(K_RIGHT) + chr(K_ENTER)
- return
-
-
- method procedure setKeys
- set key K_LEFT to ::moveLeft
- set key K_RIGHT to ::moveRight
- return
-
-
- method procedure clearKeys
- setkey(K_LEFT, NIL)
- setkey(K_RIGHT, NIL)
- return
-
-
- // eof pdmenu.prg
-