- updated for new bindings.
- added threads to xlib-event structure. wait-event needs sleep.
This commit is contained in:
parent
7a7c752670
commit
4de9034f71
|
@ -39,6 +39,7 @@
|
||||||
display-list-pixmap-formats
|
display-list-pixmap-formats
|
||||||
list-pixmap-formats ;; compatibility with Elk, same as above
|
list-pixmap-formats ;; compatibility with Elk, same as above
|
||||||
synchronize
|
synchronize
|
||||||
|
display-select-input
|
||||||
|
|
||||||
check-screen-number ;; for internal use (e.g. by client.scm)
|
check-screen-number ;; for internal use (e.g. by client.scm)
|
||||||
))
|
))
|
||||||
|
@ -140,11 +141,12 @@
|
||||||
free-colormap
|
free-colormap
|
||||||
colormap-display
|
colormap-display
|
||||||
alloc-color!
|
alloc-color!
|
||||||
|
query/alloc-named-color
|
||||||
alloc-named-color
|
alloc-named-color
|
||||||
parse-color
|
parse-color
|
||||||
alloc-color-cells
|
alloc-color-cells
|
||||||
set-color-cell
|
store-color
|
||||||
set-color-cells
|
store-colors
|
||||||
create-colormap
|
create-colormap
|
||||||
copy-colormap-and-free
|
copy-colormap-and-free
|
||||||
))
|
))
|
||||||
|
@ -161,6 +163,7 @@
|
||||||
gcontext-display
|
gcontext-display
|
||||||
create-gcontext
|
create-gcontext
|
||||||
copy-gcontext
|
copy-gcontext
|
||||||
|
copy-gcontext!
|
||||||
free-gcontext
|
free-gcontext
|
||||||
|
|
||||||
query-best-size
|
query-best-size
|
||||||
|
@ -168,6 +171,7 @@
|
||||||
query-best-tile
|
query-best-tile
|
||||||
query-best-stipple
|
query-best-stipple
|
||||||
|
|
||||||
|
get-gcontext-values
|
||||||
gcontext-function
|
gcontext-function
|
||||||
gcontext-plane-mask
|
gcontext-plane-mask
|
||||||
gcontext-foreground
|
gcontext-foreground
|
||||||
|
@ -192,6 +196,7 @@
|
||||||
gcontext-dash-offset
|
gcontext-dash-offset
|
||||||
gcontext-dashes
|
gcontext-dashes
|
||||||
|
|
||||||
|
change-gcontext
|
||||||
set-gcontext-function!
|
set-gcontext-function!
|
||||||
set-gcontext-plane-mask!
|
set-gcontext-plane-mask!
|
||||||
set-gcontext-foreground!
|
set-gcontext-foreground!
|
||||||
|
@ -237,7 +242,10 @@
|
||||||
fill-arc
|
fill-arc
|
||||||
draw-arcs
|
draw-arcs
|
||||||
fill-arcs
|
fill-arcs
|
||||||
fill-polygon))
|
fill-polygon
|
||||||
|
rectangle
|
||||||
|
bounds
|
||||||
|
points->segments))
|
||||||
|
|
||||||
(define-interface xlib-font-interface
|
(define-interface xlib-font-interface
|
||||||
(export font?
|
(export font?
|
||||||
|
@ -245,7 +253,6 @@
|
||||||
open-font
|
open-font
|
||||||
close-font
|
close-font
|
||||||
font-name
|
font-name
|
||||||
gcontext-font
|
|
||||||
list-font-names
|
list-font-names
|
||||||
list-fonts
|
list-fonts
|
||||||
|
|
||||||
|
@ -303,7 +310,8 @@
|
||||||
event-ready?
|
event-ready?
|
||||||
events-pending
|
events-pending
|
||||||
next-event
|
next-event
|
||||||
peek-event))
|
peek-event
|
||||||
|
wait-event))
|
||||||
|
|
||||||
(define-interface xlib-text-interface
|
(define-interface xlib-text-interface
|
||||||
(export text-width
|
(export text-width
|
||||||
|
|
|
@ -72,6 +72,7 @@
|
||||||
(define-structure xlib-event xlib-event-interface
|
(define-structure xlib-event xlib-event-interface
|
||||||
(open scheme
|
(open scheme
|
||||||
external-calls
|
external-calls
|
||||||
|
threads ;; for sleep
|
||||||
xlib-types)
|
xlib-types)
|
||||||
(files event))
|
(files event))
|
||||||
|
|
||||||
|
|
|
@ -69,7 +69,8 @@
|
||||||
(export make-event
|
(export make-event
|
||||||
event?
|
event?
|
||||||
event-type
|
event-type
|
||||||
event-args))
|
event-args
|
||||||
|
event-set-args!))
|
||||||
|
|
||||||
(define-interface xlib-font-type-interface
|
(define-interface xlib-font-type-interface
|
||||||
(export make-font
|
(export make-font
|
||||||
|
|
Loading…
Reference in New Issue