-
Notifications
You must be signed in to change notification settings - Fork 86
/
container.scm
146 lines (136 loc) · 5.23 KB
/
container.scm
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
140
141
142
143
144
145
146
#|
LambdaNative - a cross-platform Scheme framework
Copyright (c) 2009-2013, University of British Columbia
All rights reserved.
Redistribution and use in source and binary forms, with or
without modification, are permitted provided that the
following conditions are met:
* Redistributions of source code must retain the above
copyright notice, this list of conditions and the following
disclaimer.
* Redistributions in binary form must reproduce the above
copyright notice, this list of conditions and the following
disclaimer in the documentation and/or other materials
provided with the distribution.
* Neither the name of the University of British Columbia nor
the names of its contributors may be used to endorse or
promote products derived from this software without specific
prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|#
;; container widget
(define (glgui:container-input-drag g wgt type mx my)
(let* ((xofs (glgui-widget-get-dyn g wgt 'xofs))
(yofs (glgui-widget-get-dyn g wgt 'yofs))
(w (glgui-widget-get-dyn g wgt 'w))
(h (glgui-widget-get-dyn g wgt 'h))
(cb (glgui-widget-get g wgt 'callback))
(drag_oldx (glgui-widget-get g wgt 'drag_oldx))
(drag_oldy (glgui-widget-get g wgt 'drag_oldy))
(dragged? (glgui-widget-get g wgt 'dragged?))
(draggable_x? (glgui-widget-get g wgt 'draggable_x?))
(draggable_y? (glgui-widget-get g wgt 'draggable_y?))
(drag_keep (glgui-widget-get g wgt 'drag_keep))
(inside (and (> mx xofs) (< mx (+ xofs w)) (> my yofs) (< my (+ yofs h)))))
(cond
((and (fx= type EVENT_MOTION) drag_oldx drag_oldy) ;; drag
(if (or (> (abs (- mx drag_oldx)) 5) (> (abs (- my drag_oldy)) 5)) (begin
(glgui-widget-set! g wgt 'dragged? #t)
(if (and draggable_x?
(< (+ xofs (- mx drag_oldx)) (- (glgui-width-get) drag_keep))
(> (+ xofs (- mx drag_oldx) w) drag_keep))
(glgui-widget-set! g wgt 'xofs (+ xofs (- mx drag_oldx)))
)
(if (and draggable_y?
(< (+ yofs (- my drag_oldy)) (- (glgui-height-get) drag_keep))
(> (+ yofs (- my drag_oldy) h) drag_keep))
(glgui-widget-set! g wgt 'yofs (+ yofs (- my drag_oldy)))
)
(glgui-widget-set! g wgt 'drag_oldx (fix mx))
(glgui-widget-set! g wgt 'drag_oldy (fix my))
))
)
((and inside (fx= type EVENT_BUTTON1DOWN)) ;; touch down
(glgui-widget-set! g wgt 'drag_oldx (fix mx))
(glgui-widget-set! g wgt 'drag_oldy (fix my))
(glgui-widget-set! g wgt 'dragged? #f)
)
((and drag_oldx drag_oldy (fx= type EVENT_BUTTON1UP)) ;; touch release
(if (and inside dragged?) (begin
(glgui-widget-set! g wgt 'dragged? #f)
(glgui-widget-set! g wgt 'drag_oldx #f))
(glgui-widget-set! g wgt 'drag_oldy #f)
)
)
(else (if (not inside) (begin
(glgui-widget-set! g wgt 'drag_oldx #f)
(glgui-widget-set! g wgt 'drag_oldy #f)
))
)
)
;; Make sure the widgets within get events passed too
(if (not dragged?)
(glgui:inputloop type mx my wgt)
inside
)
))
(define (glgui-container-update g wgt id val)
(if (or (eq? id 'draggable_x?) (eq? id 'draggable_y?))
(let ((draggable_x? (glgui-widget-get g wgt 'draggable_x?))
(draggable_y? (glgui-widget-get g wgt 'draggable_y?)))
(if (or val draggable_x? draggable_y?)
(glgui-widget-set! g wgt 'input-handle glgui:container-input-drag)
(glgui-widget-set! g wgt 'input-handle #f)
)
)
)
)
;; Gets the topmost GUI by traversing parents
(define (glgui-container-gui-get wgt)
(let ((parent (glgui-get wgt 'parent)))
(if parent
(glgui-container-gui-get parent)
wgt)))
;; Given coordinates (x, y) in wgt,
;; get the same position in the frame of reference of
;; the topmost GUI
(define (glgui-container-gui-xy-get wgt x y)
(let ((parent (glgui-get wgt 'parent))
(wgt-x (glgui-get wgt 'xofs))
(wgt-y (glgui-get wgt 'yofs)))
(if parent
(glgui-container-gui-xy-get parent (+ x wgt-x) (+ y wgt-y))
(cons x y))))
(define (glgui-container g x y w h)
(glgui-widget-add g
'x 0
'y 0
'w w
'h h
'xofs x
'yofs y
'parent g
'widget-list '()
'widget-count 0
'container #t
'hidden #f
'draw-handle #f
'input-handle #f
'draggable_x? #f
'draggable_y? #f
'drag_keep 10
'update-handle glgui-container-update
))
;; eof