X-Git-Url: https://git.jsancho.org/?a=blobdiff_plain;f=src%2Fgui-environment.cpp;h=cc5e0c51a1cfff898169c98a642a85ca7e83014b;hb=7006c85b72b5eff7cfc935624711cf0bfdaa1508;hp=3f85f8b8cbb31e04d6e7fff7337454854052e9ef;hpb=65527be1c7ad3f05ba651c25249fd8300f5f4fad;p=guile-irrlicht.git diff --git a/src/gui-environment.cpp b/src/gui-environment.cpp index 3f85f8b..cc5e0c5 100644 --- a/src/gui-environment.cpp +++ b/src/gui-environment.cpp @@ -29,6 +29,7 @@ #include "gui-environment.h" #include "gui-font.h" #include "gui-image.h" +#include "gui-listbox.h" #include "gui-scrollbar.h" #include "gui-skin.h" #include "gui-static-text.h" @@ -45,6 +46,7 @@ extern "C" { { init_gui_environment_type (); DEFINE_GSUBR ("add-image!", 3, 0, 1, irr_gui_addImage); + 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); DEFINE_GSUBR ("get-built-in-font", 1, 0, 0, irr_gui_getBuiltInFont); @@ -101,6 +103,30 @@ extern "C" { return wrap_gui_image (guiImage); } + SCM + irr_gui_addListBox (SCM wrapped_gui_environment, + SCM rectangle, + SCM rest) + { + SCM parent = SCM_BOOL_F; + SCM id = scm_from_int32 (-1); + SCM draw_background = SCM_BOOL_F; + + scm_c_bind_keyword_arguments ("add-listbox!", rest, (scm_t_keyword_arguments_flags)0, + scm_from_utf8_keyword ("parent"), &parent, + scm_from_utf8_keyword ("id"), &id, + scm_from_utf8_keyword ("draw-background"), &draw_background, + SCM_UNDEFINED); + + irr::gui::IGUIEnvironment* guienv = unwrap_gui_environment (wrapped_gui_environment); + irr::gui::IGUIListBox* listbox = + guienv->addListBox (scm_to_rect_s32 (rectangle), + scm_is_false (parent) ? 0 : unwrap_gui_element (parent), + scm_to_int32 (id), + scm_to_bool (draw_background)); + return wrap_gui_listbox (listbox); + } + SCM irr_gui_addScrollBar (SCM wrapped_gui_environment, SCM horizontal,