blob: 3dd4797a784ee89b45ca84fdfae9b341f1ec4182 (
about) (
plain)
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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
|
(define-module (wm)
#:use-module (srfi srfi-9)
#:use-module (system foreign)
#:export (wm-init
make-config
make-key
make-shift-key
wm-grab-keys
wm-grab-key-with-mod
wm-grab-key-with-mod-shift
wm-set-key-press-handler!
wm-focus-prev
wm-focus-next
wm-focus-close
wm-pack-left
wm-pack-right
wm-pack-top
wm-pack-bottom
wm-toggle-maximize
wm-toggle-half-left
wm-toggle-half-right
wm-toggle-half-top
wm-toggle-half-bottom
wm-toggle-top-left
wm-toggle-top-right
wm-toggle-bottom-left
wm-toggle-bottom-right
wm-set-workspace
wm-set-focused-client-workspace
wm-client-monitor-prev
wm-client-monitor-next
wm-run
wm-quit))
;; Configuration record
(define-record-type <wm-config>
(make-config
inner-border-width
outer-border-width
magnet-border-width
offset-x
offset-y
offset-width
offset-height
focused-color
unfocused-color
unkillable-color
empty-color
outer-color)
wm-config?
(inner-border-width config-inner-border-width set-config-inner-border-width!)
(outer-border-width config-outer-border-width set-config-outer-border-width!)
(magnet-border-width config-magnet-border-width set-config-magnet-border-width!)
(offset-x config-offset-x set-config-offset-x!)
(offset-y config-offset-y set-config-offset-y!)
(offset-width config-offset-width set-config-offset-width!)
(offset-height config-offset-height set-config-offset-height!)
(focused-color config-focused-color set-config-focused-color!)
(unfocused-color config-unfocused-color set-config-unfocused-color!)
(unkillable-color config-unkillable-color set-config-unkillable-color)
(empty-color config-empty-color set-config-empty-color)
(outer-color config-outer-color set-config-outer-color))
;; Misc. utility functions
(define (uint8-as-bool i)
(not (eq? 0 i)))
;; Link to schewm shared lib
(define libschewm (dynamic-link "libschewm"))
;; Helper to easily define calls into schewm C code
(define (schewm-func return-type name args)
(pointer->procedure
return-type
(dynamic-func name libschewm)
args))
(define c/wm-init
(schewm-func uint8 "wm_init" '()))
(define (wm-init)
(uint8-as-bool (c/wm-init)))
(define wm-quit
(schewm-func void "wm_quit" '()))
(define wm-run
(schewm-func void "wm_run" '()))
(define c/keysym-from-str
(schewm-func uint32
"keysym_from_str"
(list '*)))
(define (string->key s)
(c/keysym-from-str (string->pointer s)))
(define (make-key key)
(list #f (string->key key)))
(define (make-shift-key key)
(list #t (string->key key)))
(define wm-grab-key-with-mod
(schewm-func void "wm_grab_key_with_mod"
(list uint32)))
(define wm-grab-key-with-mod-shift
(schewm-func void "wm_grab_key_with_mod_shift"
(list uint32)))
(define (wm-grab-keys keybindings)
(unless (null? keybindings)
(let* ((keybinding (car keybindings))
(chord (car keybinding))
(func (cdr keybinding))
(with-shift (car chord))
(key (car (cdr chord))))
(if with-shift
(wm-grab-key-with-mod-shift key)
(wm-grab-key-with-mod key))
(wm-grab-keys (cdr keybindings)))))
(define c/wm-set-key-press-handler
(schewm-func void
"wm_set_key_press_handler"
(list '*)))
(define (wm-set-key-press-handler! handler)
;; Event handler args are:
;; - mod (`ev.state' clean from noise, uint16)
;; - keysym (`ev.detail' converted to keysym, uint32)
(c/wm-set-key-press-handler
(procedure->pointer void
handler
(list uint16 uint32))))
(define wm-focus-prev
(schewm-func void "wm_focus_prev" '()))
(define wm-focus-next
(schewm-func void "wm_focus_next" '()))
(define wm-focus-close
(schewm-func void "wm_focus_close" '()))
(define wm-pack-left
(schewm-func void "wm_pack_left" '()))
(define wm-pack-right
(schewm-func void "wm_pack_right" '()))
(define wm-pack-top
(schewm-func void "wm_pack_top" '()))
(define wm-pack-bottom
(schewm-func void "wm_pack_bottom" '()))
(define wm-toggle-maximize
(schewm-func void "wm_toggle_maximize" '()))
(define wm-toggle-half-left
(schewm-func void "wm_toggle_half_left" '()))
(define wm-toggle-half-right
(schewm-func void "wm_toggle_half_right" '()))
(define wm-toggle-half-top
(schewm-func void "wm_toggle_half_top" '()))
(define wm-toggle-half-bottom
(schewm-func void "wm_toggle_half_bottom" '()))
(define wm-toggle-top-left
(schewm-func void "wm_toggle_top_left" '()))
(define wm-toggle-top-right
(schewm-func void "wm_toggle_top_right" '()))
(define wm-toggle-bottom-left
(schewm-func void "wm_toggle_bottom_left" '()))
(define wm-toggle-bottom-right
(schewm-func void "wm_toggle_bottom_right" '()))
(define wm-set-workspace
(schewm-func void
"wm_set_workspace"
(list uint32)))
(define wm-set-focused-client-workspace
(schewm-func void
"wm_set_focused_client_workspace"
(list uint32)))
(define wm-client-monitor-prev
(schewm-func void "wm_client_monitor_prev" '()))
(define wm-client-monitor-next
(schewm-func void "wm_client_monitor_next" '()))
|