1 /* guile-irrlicht --- GNU Guile bindings for Irrlicht Engine
3 Copyright (C) 2020 Javier Sancho <jsf@jsancho.org>
5 This file is part of guile-irrlicht.
7 guile-irrlicht is free software; you can redistribute it and/or modify
8 it under the terms of the GNU Lesser General Public License as
9 published by the Free Software Foundation; either version 3 of the
10 License, or (at your option) any later version.
12 guile-irrlicht is distributed in the hope that it will be useful, but
13 WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 General Public License for more details.
17 You should have received a copy of the GNU Lesser General Public
18 License along with guile-irrlicht. If not, see
19 <http://www.gnu.org/licenses/>.
22 #include <irrlicht/irrlicht.h>
26 #include "gui-element.h"
27 #include "gui-environment.h"
28 #include "gui-static-text.h"
36 init_gui_environment (void)
38 init_gui_environment_type ();
39 scm_c_define_gsubr ("add-static-text!", 3, 0, 1, (scm_t_subr)irr_gui_addStaticText);
40 scm_c_define_gsubr ("get-gui-environment", 1, 0, 0, (scm_t_subr)irr_getGUIEnvironment);
41 scm_c_export ("add-static-text!", "get-gui-environment", NULL);
44 DEFINE_WRAPPED_TYPE (irr::gui::IGUIEnvironment*, "gui-environment",
45 init_gui_environment_type, gui_environment_p,
46 wrap_gui_environment, unwrap_gui_environment);
49 irr_getGUIEnvironment (SCM wrapped_obj)
51 irr::gui::IGUIEnvironment* gui_environment;
52 if (device_p (wrapped_obj))
54 gui_environment = unwrap_device (wrapped_obj)->getGUIEnvironment ();
58 scm_error (scm_arg_type_key, NULL, "Cannot get GUI environment from object: ~S",
59 scm_list_1 (wrapped_obj), scm_list_1 (wrapped_obj));
61 return wrap_gui_environment (gui_environment);
65 irr_gui_addStaticText (SCM wrapped_gui_environment,
70 SCM border = scm_from_bool (0);
71 SCM word_wrap = scm_from_bool (1);
72 SCM parent = scm_from_bool (0);
73 SCM id = scm_from_int32 (-1);
74 SCM fill_background = scm_from_bool (0);
76 scm_c_bind_keyword_arguments ("add-static-text!", rest, (scm_t_keyword_arguments_flags)0,
77 scm_from_utf8_keyword ("border"), &border,
78 scm_from_utf8_keyword ("word-wrap"), &word_wrap,
79 scm_from_utf8_keyword ("parent"), &parent,
80 scm_from_utf8_keyword ("id"), &id,
81 scm_from_utf8_keyword ("fill-background"), &fill_background,
84 irr::gui::IGUIEnvironment* guienv = unwrap_gui_environment (wrapped_gui_environment);
85 irr::gui::IGUIStaticText* staticText =
86 guienv->addStaticText (scm_to_wide_char_string (text),
87 scm_to_rect_s32 (rectangle),
89 scm_to_bool (word_wrap),
90 scm_is_false (parent) ? 0 : unwrap_gui_element (parent),
92 scm_to_bool (fill_background));
93 return wrap_gui_static_text (staticText);