-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcanvas.lisp
96 lines (83 loc) · 2.43 KB
/
canvas.lisp
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
;; -*- mode: Lisp; Syntax: Common-Lisp; Package: cells; -*-
#|
Celtk -- Cells, Tcl, and Tk
Copyright (C) 2006 by Kenneth Tilton
This library is free software; you can redistribute it and/or
modify it under the terms of the Lisp Lesser GNU Public License
(http://opensource.franz.com/preamble.html), known as the LLGPL.
This library is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
See the Lisp Lesser GNU Public License for more details.
|#
(in-package :celtk)
(deftk canvas (widget)
((active :initarg :active :accessor active :initform (c-in t))
)
(:tk-spec canvas
-background -borderwidth -cursor
-highlightbackground -highlightcolor -highlightthickness
-insertbackground -insertborderwidth -insertofftime -insertontime -insertwidth
-relief -selectbackground -selectborderwidth -selectforeground
-state -takefocus -xscrollcommand -yscrollcommand
-closeenough -confine -height (scroll-region -scrollregion) -width
-xscrollincrement -yscrollincrement)
(:default-initargs
:xscrollcommand (c-in nil)
:yscrollcommand (c-in nil)
:id (gentemp "CV")
:tile? nil))
(defun focusIn->active ()
(list '|<FocusIn>| (lambda (self event &rest args)
(declare (ignorable event))
(trc "focus in activating" self event args)
(setf (^active) t))))
(defun focusOut->active ()
(list '|<FocusOut>| (lambda (self event &rest args)
(declare (ignorable event))
(trc "focus out de-activating" self event args)
(setf (^active) nil))))
(deftk arc (item)
()
(:tk-spec arc
-dash
-activedash
-disableddash
-dashoffset
(tk-fill -fill)
-activefill
-disabledfill
-offset
-outline
-activeoutline
-disabledoutline
-outlinestipple
-activeoutlinestipple
-disabledoutlinestipple
-stipple
-activestipple
-disabledstipple
-state
-tags
-width
-activewidth
-disabledwidth
-extent -start -style))
(deftk line (item)
()
(:tk-spec line
-dash
-activedash
-disableddash
-dashoffset
(tk-fill -fill)
-activefill
-disabledfill
-stipple
-activestipple
-disabledstipple
-state
-tags
-width
-activewidth
-disabledwidth
-arrow -arrowshape -capstyle -joinstyle -smooth -splinesteps))