]> git.jsancho.org Git - guile-irrlicht.git/blob - irrlicht/gui.scm
1d79f296ebff6d97ca88816fe3081f43e420d148
[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 ;; IGUIElement
31 (define-class <gui-element> (<attribute-exchanging-object> <event-receiver>)
32   (irr-class #:init-value "IGUIElement" #:getter irr-class))
33
34 (export <gui-element>)
35
36
37 ;; IGUIEnvironment
38 (define-class <gui-environment> (<reference-counted>)
39   (irr-class #:init-value "IGUIEnvironment" #:getter irr-class))
40
41 (define-method (add-static-text! (gui-environment <gui-environment>) text rectangle . rest)
42   (let-keywords rest #f
43         ((border #f)
44          (word-wrap #t)
45          (parent (make <gui-element>))
46          (id -1)
47          (fill-background #f))
48     (make <gui-static-text>
49       #:irr-pointer
50       ((get-irrlicht-proc "addStaticText" gui-environment parent)
51        (irr-pointer gui-environment)
52        text
53        rectangle
54        border
55        word-wrap
56        (irr-pointer parent)
57        id
58        fill-background))))
59
60 (define-method (draw-all (gui-environment <gui-environment>))
61   ((get-irrlicht-proc "drawAll" gui-environment)
62    (irr-pointer gui-environment)))
63
64 (export <gui-environment> add-static-text! draw-all)
65
66
67 ;; IGUIStaticText
68 (define-class <gui-static-text> (<gui-element>)
69   (irr-class #:init-value "IGUIStaticText" #:getter irr-class))
70
71 (export <gui-static-text>)