]> git.jsancho.org Git - guile-irrlicht.git/blobdiff - src/gui-environment.cpp
add-editbox!
[guile-irrlicht.git] / src / gui-environment.cpp
index cc5e0c51a1cfff898169c98a642a85ca7e83014b..070653978d0f6a83e50b638fb4489bbc933a10e1 100644 (file)
@@ -25,6 +25,7 @@
 #include "device.h"
 #include "gsubr.h"
 #include "gui-button.h"
+#include "gui-editbox.h"
 #include "gui-element.h"
 #include "gui-environment.h"
 #include "gui-font.h"
@@ -46,6 +47,7 @@ extern "C" {
   {
     init_gui_environment_type ();
     DEFINE_GSUBR ("add-image!", 3, 0, 1, irr_gui_addImage);
+    DEFINE_GSUBR ("add-editbox!", 3, 0, 1, irr_gui_addEditBox);
     DEFINE_GSUBR ("add-listbox!", 2, 0, 1, irr_gui_addListBox);
     DEFINE_GSUBR ("add-scrollbar!", 3, 0, 1, irr_gui_addScrollBar);
     DEFINE_GSUBR ("add-static-text!", 3, 0, 1, irr_gui_addStaticText);
@@ -103,6 +105,32 @@ extern "C" {
     return wrap_gui_image (guiImage);
   }
 
+  SCM
+  irr_gui_addEditBox (SCM wrapped_gui_environment,
+                      SCM text,
+                      SCM rectangle,
+                      SCM rest)
+  {
+    SCM border = SCM_BOOL_T;
+    SCM parent = SCM_BOOL_F;
+    SCM id = scm_from_int32 (-1);
+
+    scm_c_bind_keyword_arguments ("add-editbox!", rest, (scm_t_keyword_arguments_flags)0,
+                                  scm_from_utf8_keyword ("border"), &border,
+                                  scm_from_utf8_keyword ("parent"), &parent,
+                                  scm_from_utf8_keyword ("id"), &id,
+                                  SCM_UNDEFINED);
+
+    irr::gui::IGUIEnvironment* guienv = unwrap_gui_environment (wrapped_gui_environment);
+    irr::gui::IGUIEditBox* editbox =
+      guienv->addEditBox (scm_to_wide_char_string (text),
+                          scm_to_rect_s32 (rectangle),
+                          scm_to_bool (border),
+                          scm_is_false (parent) ? 0 : unwrap_gui_element (parent),
+                          scm_to_int32 (id));
+    return wrap_gui_editbox (editbox);
+  }
+
   SCM
   irr_gui_addListBox (SCM wrapped_gui_environment,
                       SCM rectangle,