-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathclutter-stage.lisp
More file actions
61 lines (44 loc) · 1.26 KB
/
clutter-stage.lisp
File metadata and controls
61 lines (44 loc) · 1.26 KB
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
(in-package :utter-cl)
(defcfun clutter-stage-get-default gpointer)
(defcfun clutter-stage-new gpointer)
(defcfun clutter-stage-is-default gboolean
(stage gpointer))
(defcfun clutter-stage-set-color :void
(stage gpointer)
(color gpointer))
(defcfun clutter-stage-set-fullscreen :void
(stage gpointer)
(fullscreen gboolean))
(defcfun clutter-stage-get-fullscreen gboolean
(stage gpointer))
(defcfun clutter-stage-show-cursor :void
(stage gpointer))
(defcfun clutter-stage-hide-cursor :void
(stage gpointer))
(defcenum clutter-pick-mode
:clutter-pick-none
:clutter-pick-reactive
:clutter-pick-all)
(defcfun clutter-stage-get-actor-at-pos gpointer
(stage gpointer)
(pick-mode clutter-pick-mode)
(x gint)
(y gint))
(defcfun clutter-stage-ensure-current :void
(stage gpointer))
(defcfun clutter-stage-ensure-viewport :void
(stage gpointer))
(defcfun clutter-stage-set-key-focus :void
(stage gpointer)
(actor gpointer))
(defcfun clutter-stage-get-key-focus gpointer
(stage gpointer))
(defcfun clutter-stage-set-use-alpha :void
(stage gpointer)
(use-alpha gboolean))
(defcfun clutter-stage-get-use-alpha gboolean
(stage gpointer))
(defcfun clutter-stage-set-minimum-size :void
(stage gpointer)
(width guint)
(height guint))