1996-09-27 06:29:02 -04:00
|
|
|
|
;;;;
|
|
|
|
|
;;;; M e s s a g e . s t k -- Message class definition
|
|
|
|
|
;;;;
|
1998-04-10 06:59:06 -04:00
|
|
|
|
;;;; Copyright <20> 1993-1998 Erick Gallesio - I3S-CNRS/ESSI <eg@unice.fr>
|
1996-09-27 06:29:02 -04:00
|
|
|
|
;;;;
|
|
|
|
|
;;;; 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.
|
|
|
|
|
;;;;
|
1998-04-10 06:59:06 -04:00
|
|
|
|
;;;; $Id: Message.stklos 1.2 Sat, 24 Jan 1998 15:12:00 +0100 eg $
|
|
|
|
|
;;;;
|
1996-09-27 06:29:02 -04:00
|
|
|
|
;;;; Author: Erick Gallesio [eg@kaolin.unice.fr]
|
|
|
|
|
;;;; Creation date: 3-Mar-1994 23:10
|
1998-04-10 06:59:06 -04:00
|
|
|
|
;;;; Last file update: 24-Jan-1998 13:41
|
1996-09-27 06:29:02 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
(require "Basics")
|
|
|
|
|
|
1998-04-10 06:59:06 -04:00
|
|
|
|
(select-module STklos+Tk)
|
|
|
|
|
|
|
|
|
|
;; No exports
|
|
|
|
|
|
1996-09-27 06:29:02 -04:00
|
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
|
;;;;
|
|
|
|
|
;;;; <Message> class
|
|
|
|
|
;;;;
|
|
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
|
|
|
|
|
|
(define-class <Message> (<Tk-simple-widget>)
|
|
|
|
|
((anchor :accessor anchor
|
|
|
|
|
:init-keyword :anchor
|
|
|
|
|
:allocation :tk-virtual)
|
|
|
|
|
(aspect :accessor aspect
|
|
|
|
|
:init-keyword :aspect
|
|
|
|
|
:allocation :tk-virtual)
|
|
|
|
|
(font :accessor font
|
|
|
|
|
:init-keyword :font
|
|
|
|
|
:allocation :tk-virtual)
|
|
|
|
|
(foreground :accessor foreground
|
|
|
|
|
:init-keyword :foreground
|
|
|
|
|
:allocation :tk-virtual)
|
|
|
|
|
(justify :accessor justify
|
|
|
|
|
:init-keyword :justify
|
|
|
|
|
:allocation :tk-virtual)
|
|
|
|
|
(pad-x :accessor pad-x
|
|
|
|
|
:init-keyword :pad-x
|
|
|
|
|
:allocation :tk-virtual
|
|
|
|
|
:tk-name padx)
|
|
|
|
|
(pad-y :accessor pad-y
|
|
|
|
|
:init-keyword :pad-y
|
|
|
|
|
:allocation :tk-virtual
|
|
|
|
|
:tk-name pady)
|
|
|
|
|
(text :accessor text-of
|
|
|
|
|
:init-keyword :text
|
|
|
|
|
:allocation :tk-virtual)
|
|
|
|
|
(text-variable :accessor text-variable
|
|
|
|
|
:init-keyword :text-variable
|
|
|
|
|
:allocation :tk-virtual
|
|
|
|
|
:tk-name textvar)
|
|
|
|
|
(width :accessor width
|
|
|
|
|
:init-keyword :width
|
|
|
|
|
:allocation :tk-virtual)))
|
|
|
|
|
|
|
|
|
|
(define-method tk-constructor ((self <Message>))
|
|
|
|
|
Tk:message)
|
|
|
|
|
|
|
|
|
|
(provide "Message")
|