; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ; ; File: trans.lsp ; RCS: $Header: /users/npm/src/winterp/examples/interactive/RCS/trans.lsp,v 2.1 1994/06/06 14:53:12 npm Exp $ ; Description: Tests of Xt translation, accelerator facilies. Also test ; winterp's "Lisp()" action, which allows you to call the ; lisp evaluator from a translation/accelerator table. ; Author: Niels Mayer ; Created: Fri Nov 24 20:16:35 1989 ; Modified: Mon Jun 6 00:31:28 1994 (Niels Mayer) npm@indeed ; Language: Lisp ; Package: N/A ; Status: X11r6 contrib release ; ; Copyright (C) 1994, Enterprise Integration Technologies Corp. and Niels Mayer. ; WINTERP 1.15-1.99, Copyright (c) 1993, Niels P. Mayer. ; WINTERP 1.0-1.14, Copyright (c) 1989-1992 Hewlett-Packard Co. and Niels Mayer. ; ; Permission to use, copy, modify, distribute, and sell this software and its ; documentation for any purpose is hereby granted without fee, provided that ; the above copyright notice appear in all copies and that both that ; copyright notice and this permission notice appear in supporting ; documentation, and that the name of Enterprise Integration Technologies, ; Hewlett-Packard Company, or Niels Mayer not be used in advertising or ; publicity pertaining to distribution of the software without specific, ; written prior permission. Enterprise Integration Technologies, Hewlett-Packard ; Company, and Niels Mayer makes no representations about the suitability of ; this software for any purpose. It is provided "as is" without express or ; implied warranty. ; ; ENTERPRISE INTEGRATION TECHNOLOGIES, HEWLETT-PACKARD COMPANY AND NIELS MAYER ; DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED ; WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL ENTERPRISE ; INTEGRATION TECHNOLOGIES, HEWLETT-PACKARD COMPANY OR NIELS MAYER BE LIABLE ; FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER ; RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF ; CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN ; CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;; ;; Test use of 'Lisp' action to call lisp evaluator through translation ;; or accelerator table entry: ;; (setq trans (XT_PARSE_TRANSLATION_TABLE "CtrlL: Lisp(quack action_widget action_xevent) \ CtrlK: Lisp(print 'ctrl-key-k-hit)" )) (setq accel (XT_PARSE_ACCELERATOR_TABLE "CtrlL: Lisp(quack action_widget action_xevent) \ CtrlK: Lisp(print 'ctrl-key-k-hit)" )) (defun quack (w e) (format T "widget=~A; event=~A\n" w e) ) (setq pb_w (send XM_PUSH_BUTTON_WIDGET_CLASS :new :managed "pb_w" rc_w )) (send pb_w :augment_translations trans) (send pb_w :override_translations trans) (send pb_w :augment_translations "CtrlA: Lisp(print 'ctrl-key-a-hit)") (send pb_w :uninstall_translations) ;this completely disables widget! ;; ;; Accelerators ;; (send rc_w :set_values :xmn_accelerators "CtrlA: Lisp(print 'ctrl-key-a-hit)" ) (progn ;install accelerator on rc_w ;onto each pushbuttonwe create (setq pb_w (send XM_PUSH_BUTTON_WIDGET_CLASS :new :managed "pb_w" rc_w )) (send pb_w :install_all_accelerators rc_w) ) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; (setq te_w (send XM_TEXT_WIDGET_CLASS :new :managed :scrolled rc_w :XMN_EDIT_MODE :MULTI_LINE_EDIT :XMN_HEIGHT 400 :XMN_WIDTH 300 )) (send te_w :override_translations "CtrlA: beginning-of-line()\ Return: newline-and-indent()")