!************************************************************************* ! * ! © Copyright 2005 Hewlett-Packard Development Company, L.P. * ! * ! Confidential computer software. Valid license from HP required for * ! possession, use or copying. Consistent with FAR 12.211 and 12.212, * ! Commercial Computer Software, Computer Software Documentation, and * ! Technical Data for Commercial Items are licensed to the U.S. * ! Government under vendor's standard commercial license. * ! * !************************************************************************* !++ ! Facility: ! eXtended LSE (XLSE) ! ! Abstract: ! Defines XLSE's EDT LK201 Keypad key bindings. ! ! Author: ! W. Ward Clark, CASEE Group ! ! Creation Date: 18-Sep-88 ! !-- PROCEDURE xlse__define_edt_lk201_keys !+ ! XLSE Keypad Bindings - EDT LK201 keypad !- LOCAL key; key := 'DEFINE KEY '; !+ ! Define the "En" keys. !- !!LSE$DO_COMMAND( key + 'e5 "DO/TPU ""xlse_goto_screen(REVERSE)"""' + !! '/leg="PrvScrn" /top="Previous_Screen"' ); !!LSE$DO_COMMAND( key + 'e6 "DO/TPU ""xlse_goto_screen(FORWARD)"""' + !! '/leg="NxtScrn" /top="Next_Screen"' ); !+ ! Define LK201 Function Keys. !- LSE$DO_COMMAND( key + 'f14 "DO/TPU ""xlse_learn(EXACT)"""' + '/leg="" /top="[~tbs~]"' ); LSE$DO_COMMAND( key + 'gold/f14 "DO/TPU ""xlse_learn(NO_EXACT)"""' + '/leg="" /top="[~tbs~]"' ); LSE$DO_COMMAND( key + 'f17 "DO/TPU xlse_previous_buffer"' + '/leg="PrvBuff" /top="[~tbs~]"' ); LSE$DO_COMMAND( key + 'gold/f17 "DO/TPU ""xlse_goto_file(''/CREATE'')"""' + '/leg="Go2File" /top="[~tbs~]"' ); LSE$DO_COMMAND( key + 'f18 "DO/TPU xlse_next_buffer"' + '/leg="NxtBuff" /top="[~tbs~]"' ); LSE$DO_COMMAND( key + 'gold/f18 "GOTO BUFFER"' + '/leg="Go2Buff" /top="[~tbs~]"' ); LSE$DO_COMMAND( key + 'f19 "DO/TPU ""xlse_find_mark(REVERSE)"""' + '/leg="PrvMark" /top="[~tbs~]"' ); LSE$DO_COMMAND( key + 'gold/f19 "DO/TPU xlse_set_mark"' + '/leg="SetMark" /top="[~tbs~]"' ); LSE$DO_COMMAND( key + 'f20 "DO/TPU ""xlse_find_mark(FORWARD)"""' + '/leg="NxtMark" /top="[~tbs~]"' ); LSE$DO_COMMAND( key + 'gold/f20 "CANCEL MARK"' + '/leg="CanMark" /top="[~tbs~]"' ); ENDPROCEDURE