]> git.jsancho.org Git - guile-irrlicht.git/blob - irrlicht/gui.scm
1471409807bc524261e95e27851b1e50a58ae3a3
[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     (make <gui-static-text>
60       #:irr-pointer
61       ((get-irrlicht-proc "addStaticText" gui-environment parent)
62        gui-environment
63        text
64        rectangle
65        border
66        word-wrap
67        parent
68        id
69        fill-background))))
70
71 (define-method (draw-all (gui-environment <gui-environment>))
72   ((get-irrlicht-proc "drawAll" gui-environment)
73    gui-environment))
74
75 (export <gui-environment> add-static-text! draw-all)
76
77
78 ;; IGUIStaticText
79 (define-class <gui-static-text> (<gui-element>)
80   (irr-class #:init-value "IGUIStaticText"))
81
82 (export <gui-static-text>)