]> git.jsancho.org Git - guile-irrlicht.git/blob - irrlicht/gui.scm
wrap Irrlicht objects in C++
[guile-irrlicht.git] / irrlicht / gui.scm
1 ;;; guile-irrlicht --- FFI bindings for Irrlicht Engine
2 ;;; Copyright (C) 2020 Javier Sancho <jsf@jsancho.org>
3 ;;;
4 ;;; This file is part of guile-irrlicht.
5 ;;;
6 ;;; Guile-irrlicht is free software; you can redistribute it and/or modify
7 ;;; it under the terms of the GNU Lesser General Public License as
8 ;;; published by the Free Software Foundation; either version 3 of the
9 ;;; License, or (at your option) any later version.
10 ;;;
11 ;;; Guile-irrlicht is distributed in the hope that it will be useful, but
12 ;;; WITHOUT ANY WARRANTY; without even the implied warranty of
13 ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 ;;; General Public License for more details.
15 ;;;
16 ;;; You should have received a copy of the GNU Lesser General Public
17 ;;; License along with guile-irrlicht.  If not, see
18 ;;; <http://www.gnu.org/licenses/>.
19
20
21 (define-module (irrlicht gui)
22   #:use-module (oop goops)
23   #:use-module (ice-9 optargs)
24   #:use-module (irrlicht base)
25   #:use-module (irrlicht foreign)
26   #:use-module (irrlicht io)
27   #:use-module (irrlicht irr))
28
29
30 ;; ICursorControl
31 (define-class <cursor-control> (<reference-counted>)
32   (irr-class #:init-value "ICursorControl"))
33
34 (define-method (set-visible! (cursor-control <cursor-control>) visible)
35   (let ((setVisible (get-irrlicht-proc "setVisible" cursor-control)))
36     (setVisible cursor-control visible)))
37
38 (export <cursor-control> set-visible!)
39
40
41 ;; IGUIElement
42 (define-class <gui-element> (<attribute-exchanging-object> <event-receiver>)
43   (irr-class #:init-value "IGUIElement"))
44
45 (export <gui-element>)
46
47
48 ;; IGUIEnvironment
49 (define-class <gui-environment> (<reference-counted>)
50   (irr-class #:init-value "IGUIEnvironment"))
51
52 (define-method (add-static-text! (gui-environment <gui-environment>) text rectangle . rest)
53   (let-keywords rest #f
54         ((border #f)
55          (word-wrap #t)
56          (parent (make <gui-element>))
57          (id -1)
58          (fill-background #f))
59     (let ((addStaticText (get-irrlicht-proc "addStaticText" gui-environment parent)))
60       (addStaticText gui-environment text rectangle border word-wrap parent
61                      id fill-background))))
62
63 (define-method (draw-all (gui-environment <gui-environment>))
64   ((get-irrlicht-proc "drawAll" gui-environment)
65    gui-environment))
66
67 (export <gui-environment> add-static-text! draw-all)
68
69
70 ;; IGUIStaticText
71 (define-class <gui-static-text> (<gui-element>)
72   (irr-class #:init-value "IGUIStaticText"))
73
74 (export <gui-static-text>)