101 lines
3.6 KiB
Plaintext
101 lines
3.6 KiB
Plaintext
|
;;;;
|
|||
|
;;;; S c r o l l t e x t . s t k -- Scroll Text composite widget
|
|||
|
;;;;
|
|||
|
;;;; Copyright <20> 1993-1996 Erick Gallesio - I3S-CNRS/ESSI <eg@unice.fr>
|
|||
|
;;;;
|
|||
|
;;;; Permission to use, copy, and/or distribute this software and its
|
|||
|
;;;; documentation for any purpose and without fee is hereby granted, provided
|
|||
|
;;;; that both the above copyright notice and this permission notice appear in
|
|||
|
;;;; all copies and derived works. Fees for distribution or use of this
|
|||
|
;;;; software or derived works may only be charged with express written
|
|||
|
;;;; permission of the copyright holder.
|
|||
|
;;;; This software is provided ``as is'' without express or implied warranty.
|
|||
|
;;;;
|
|||
|
;;;; Author: Erick Gallesio [eg@kaolin.unice.fr]
|
|||
|
;;;; Creation date: 4-Apr-1995 11:19
|
|||
|
;;;; Last file update: 13-Aug-1996 23:24
|
|||
|
|
|||
|
(require "Frame")
|
|||
|
(require "Text")
|
|||
|
(require "Scrollbar")
|
|||
|
|
|||
|
|
|||
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|||
|
;;;;
|
|||
|
;;;; <Scroll-text> class definition
|
|||
|
;;;;
|
|||
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|||
|
|
|||
|
(define-class <Scroll-text> (<Tk-composite-widget> <Text>)
|
|||
|
((text :accessor text-of)
|
|||
|
(h-scrollbar :accessor h-scrollbar-of)
|
|||
|
(v-scrollbar :accessor v-scrollbar-of)
|
|||
|
(h-scroll-side :accessor h-scroll-side
|
|||
|
:allocation :virtual
|
|||
|
:init-keyword :h-scroll-side
|
|||
|
:slot-ref (lambda (o)
|
|||
|
(let ((hs (slot-ref o 'h-scrollbar)))
|
|||
|
(and (winfo 'ismapped hs)
|
|||
|
(get-keyword :side (pack 'info hs)))))
|
|||
|
:slot-set! (lambda (o v)
|
|||
|
(let ((hs (slot-ref o 'h-scrollbar)))
|
|||
|
(if v
|
|||
|
(pack hs :fill "x" :side v
|
|||
|
:before (slot-ref o 'text))
|
|||
|
(pack 'forget hs)))))
|
|||
|
(v-scroll-side :accessor v-scroll-side
|
|||
|
:allocation :virtual
|
|||
|
:init-keyword :v-scroll-side
|
|||
|
:slot-ref (lambda (o)
|
|||
|
(let ((vs (slot-ref o 'v-scrollbar)))
|
|||
|
(and (winfo 'ismapped vs)
|
|||
|
(get-keyword :side (pack 'info vs)))))
|
|||
|
:slot-set! (lambda (o v)
|
|||
|
(let ((vs (slot-ref o 'v-scrollbar)))
|
|||
|
(if v
|
|||
|
(pack vs :fill "y" :side v
|
|||
|
:before (slot-ref o 'text))
|
|||
|
(pack 'forget vs)))))
|
|||
|
;; Non allocated slots
|
|||
|
(background :accessor background
|
|||
|
:init-keyword :background
|
|||
|
:allocation :propagated
|
|||
|
:propagate-to (frame text h-scrollbar v-scrollbar))
|
|||
|
(border-width :accessor border-width
|
|||
|
:allocation :propagated
|
|||
|
:init-keyword :border-width
|
|||
|
:propagate-to (frame))
|
|||
|
(relief :accessor relief
|
|||
|
:init-keyword :relief
|
|||
|
:allocation :propagated
|
|||
|
:propagate-to (frame))))
|
|||
|
|
|||
|
;;;;
|
|||
|
;;;; <Scroll-text> methods
|
|||
|
;;;;
|
|||
|
|
|||
|
(define-method initialize-composite-widget ((self <Scroll-text>) initargs parent)
|
|||
|
(let* ((hs (make <Scrollbar> :parent parent :orientation "horizontal"))
|
|||
|
(vs (make <Scrollbar> :parent parent :orientation "vertical"))
|
|||
|
(t (make <Text> :parent parent)))
|
|||
|
|
|||
|
;; Set internal true slots
|
|||
|
(slot-set! self 'Id (slot-ref t 'Id))
|
|||
|
(slot-set! self 'text t)
|
|||
|
(slot-set! self 'h-scrollbar hs)
|
|||
|
(slot-set! self 'v-scrollbar vs)
|
|||
|
|
|||
|
;; Pack internal widgets (Warning: Order is dependant !!!!)
|
|||
|
(pack vs :fill "y" :side "right")
|
|||
|
(pack t :expand #t :fill "both" :side 'bottom :after vs)
|
|||
|
|
|||
|
;; Attach command to scrollbar and text
|
|||
|
(slot-set! t 'x-scroll-command (lambda l (apply (slot-ref hs 'Id) 'set l)))
|
|||
|
(slot-set! t 'y-scroll-command (lambda l (apply (slot-ref vs 'Id) 'set l)))
|
|||
|
|
|||
|
(slot-set! hs 'command (lambda args (apply (slot-ref t 'Id) 'xview args)))
|
|||
|
(slot-set! vs 'command (lambda args (apply (slot-ref t 'Id) 'yview args)))
|
|||
|
))
|
|||
|
|
|||
|
(provide "Scrolltext")
|