15dfecf96Smrg;;
25dfecf96Smrg;; Copyright (c) 2001 by The XFree86 Project, Inc.
35dfecf96Smrg;;
45dfecf96Smrg;; Permission is hereby granted, free of charge, to any person obtaining a
55dfecf96Smrg;; copy of this software and associated documentation files (the "Software"),
65dfecf96Smrg;; to deal in the Software without restriction, including without limitation
75dfecf96Smrg;; the rights to use, copy, modify, merge, publish, distribute, sublicense,
85dfecf96Smrg;; and/or sell copies of the Software, and to permit persons to whom the
95dfecf96Smrg;; Software is furnished to do so, subject to the following conditions:
105dfecf96Smrg;;
115dfecf96Smrg;; The above copyright notice and this permission notice shall be included in
125dfecf96Smrg;; all copies or substantial portions of the Software.
135dfecf96Smrg;;
145dfecf96Smrg;; THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
155dfecf96Smrg;; IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
165dfecf96Smrg;; FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
175dfecf96Smrg;; THE XFREE86 PROJECT BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
185dfecf96Smrg;; WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF
195dfecf96Smrg;; OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
205dfecf96Smrg;; SOFTWARE.
215dfecf96Smrg;;
225dfecf96Smrg;; Except as contained in this notice, the name of the XFree86 Project shall
235dfecf96Smrg;; not be used in advertising or otherwise to promote the sale, use or other
245dfecf96Smrg;; dealings in this Software without prior written authorization from the
255dfecf96Smrg;; XFree86 Project.
265dfecf96Smrg;;
275dfecf96Smrg;; Author: Paulo César Pereira de Andrade
285dfecf96Smrg;;
295dfecf96Smrg;;
305dfecf96Smrg;; $XFree86: xc/programs/xedit/lisp/test/hello.lsp,v 1.1 2001/08/31 15:00:15 paulo Exp $
315dfecf96Smrg;;
325dfecf96Smrg(require "xaw")
335dfecf96Smrg(require "xt")
345dfecf96Smrg
355dfecf96Smrg(defun quit-callback (widget user call) (quit))
365dfecf96Smrg
375dfecf96Smrg(defun fix-shell-size (shell)
385dfecf96Smrg    (let ((size (xt-get-values shell '("width" "height"))))
395dfecf96Smrg	 (xt-set-values shell
405dfecf96Smrg	     (list (cons "minWidth" (cdar size))
415dfecf96Smrg		   (cons "maxWidth" (cdar size))
425dfecf96Smrg		   (cons "minHeight" (cdadr size))
435dfecf96Smrg		   (cons "maxHeight" (cdadr size)))
445dfecf96Smrg	 )
455dfecf96Smrg    )
465dfecf96Smrg)
475dfecf96Smrg
485dfecf96Smrg(setq toplevel
495dfecf96Smrg    (xt-app-initialize 'appcontext "Hello"
505dfecf96Smrg	'(("title" . "Hello World!"))))
515dfecf96Smrg
525dfecf96Smrg(setq form
535dfecf96Smrg    (xt-create-managed-widget "form" form-widget-class toplevel
545dfecf96Smrg	'(("background" . "gray85")
555dfecf96Smrg	  ("displayList" . "foreground rgb:7/9/7;lines 1,-1,-1,-1,-1,1;foreground gray90;lines -1,0,0,0,0,-1")
565dfecf96Smrg	)))
575dfecf96Smrg
585dfecf96Smrg(setq button
595dfecf96Smrg    (xt-create-managed-widget "button" command-widget-class form
605dfecf96Smrg	'(("label" . "Goodbye world!")
615dfecf96Smrg	  ("tip" . "This sample uses some customizations")
625dfecf96Smrg	  ("foreground" . "gray10")
635dfecf96Smrg	  ("background" . "gray80")
645dfecf96Smrg	  ("displayList" . "foreground rgb:7/9/7;lines 1,-1,-1,-1,-1,1;foreground gray90;lines -1,0,0,0,0,-1")
655dfecf96Smrg	)))
665dfecf96Smrg(xt-add-callback button "callback" 'quit-callback)
675dfecf96Smrg
685dfecf96Smrg(xt-realize-widget toplevel)
695dfecf96Smrg
705dfecf96Smrg(fix-shell-size toplevel)
715dfecf96Smrg
725dfecf96Smrg(xt-app-main-loop appcontext)
73