1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139
|
;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Package: CLIM-DEMO; Base: 10; Lowercase: Yes -*-
;;; (c) copyright 2001 by
;;; Julien Boninfante (boninfan@emi.u-bordeaux.fr)
;;; (c) copyright 2009 by
;;; Robert Strandh (strandh@labri.fr)
;;; This library is free software; you can redistribute it and/or
;;; modify it under the terms of the GNU Library General Public
;;; License as published by the Free Software Foundation; either
;;; version 2 of the License, or (at your option) any later version.
;;;
;;; This library is distributed in the hope that it will be useful,
;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
;;; Library General Public License for more details.
;;;
;;; You should have received a copy of the GNU Library General Public
;;; License along with this library; if not, write to the
;;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
;;; Boston, MA 02111-1307 USA.
;;; How to use the possibilities of the traffic-lights, you have two
;;; possibilites :
;;; 1 - Click on a toggle-button : the color of the light-pane
;;; will change
;;; 2 - Click on the orange or green toggle-button, then move your
;;; mouse-pointer on the light-pane, and wait a few seconds.
(in-package :clim-internals)
;;; example gadget definition
(defclass light-pane (standard-gadget) ())
(defmethod handle-repaint ((pane light-pane) region)
(declare (ignore region))
(multiple-value-bind (x1 y1 x2 y2) (bounding-rectangle* (sheet-region pane))
(display-gadget-background
pane (gadget-current-color pane) 0 0 (- x2 x1) (- y2 y1))))
(in-package :clim-demo)
;;; callback functions
(defmethod handle-event :after ((pane clim-internals::light-pane) (event pointer-event))
(declare (ignorable event))
(let ((label (gadget-label (radio-box-current-selection
(slot-value *application-frame* 'radio-box)))))
(cond ((string= label "O")
(traffic-pause 3)
(simulate-user-action (find-pane-named *application-frame*
'red)))
((string= label "G")
(traffic-pause 5)
(simulate-user-action (find-pane-named *application-frame*
'orange)))
(t nil))))
(defun traffic-pause (time)
(let ((time-left-window (find-pane-named *application-frame* 'time-left)))
(flet ((show-time (left)
(setf (gadget-value time-left-window)
(format nil "~D" left))))
(loop for left from time downto 1
do (show-time left)
(sleep 1))
(show-time 0))))
(defmethod simulate-user-action ((pane toggle-button))
(setf (gadget-value pane :invoke-callback t) (not (gadget-value pane))))
(defun callback-red (gadget value)
(declare (ignorable gadget))
(when value
(setf (clim-internals::gadget-current-color (slot-value *application-frame* 'light))
(clim-internals::gadget-normal-color (slot-value *application-frame* 'light)))))
(defun callback-orange (gadget value)
(declare (ignore gadget))
(when value
(setf (clim-internals::gadget-current-color (slot-value *application-frame* 'light))
(clim-internals::gadget-highlighted-color (slot-value *application-frame* 'light)))))
(defun callback-green (gadget value)
(declare (ignore gadget))
(when value
(setf (clim-internals::gadget-current-color (slot-value *application-frame* 'light))
(clim-internals::gadget-pushed-and-highlighted-color (slot-value *application-frame* 'light)))))
;;; test functions
(defun traffic-lights ()
(loop for port in climi::*all-ports*
do (destroy-port port))
(setq climi::*all-ports* nil)
(run-frame-top-level (make-application-frame 'traffic-lights)))
(defmethod traffic-lights-frame-top-level ((frame application-frame))
(setf (slot-value frame 'light) (find-pane-named frame 'light)
(slot-value frame 'radio-box) (find-pane-named frame 'radio-box))
(clim-extensions:simple-event-loop))
(defmacro make-color-chooser-toggle-button (name color label callback)
(let ((color-name (gensym "COLOR")))
`(let ((,color-name ,color))
(make-pane 'toggle-button
:name ,name
:label ,label
:indicator-type :one-of
:width 30
:height 30
:normal ,color-name
:highlighted ,color-name
:pushed-and-highlighted ,color-name
:value-changed-callback ,callback))))
(define-application-frame traffic-lights ()
((radio-box :initform nil)
(light :initform nil))
(:panes
(light :light
:width 30
:normal +red+
:highlighted +orange+
:pushed-and-highlighted +green+)
(radio-box (with-radio-box ()
(radio-box-current-selection
(make-color-chooser-toggle-button 'red +red+ "R" 'callback-red))
(make-color-chooser-toggle-button 'orange +orange+ "O" 'callback-orange)
(make-color-chooser-toggle-button 'green +green+ "G" 'callback-green)))
(time-left text-field
:editable-p nil
:value "0"))
(:layouts
(default (horizontally () (vertically (:spacing 10) radio-box time-left) light)))
(:top-level (traffic-lights-frame-top-level . nil)))
|