X-Git-Url: https://git.jsancho.org/?a=blobdiff_plain;f=src%2Fgui-environment.h;h=b26f542e6b344d53526a379987008caa87fe7c62;hb=37aba303eccc24a407f1b5b0af81623e47b89a22;hp=79853fa92fbc0980777021c58993d743078218e7;hpb=15be0323f62a228707f616c25c4b87cd1d68766f;p=guile-irrlicht.git diff --git a/src/gui-environment.h b/src/gui-environment.h index 79853fa..b26f542 100644 --- a/src/gui-environment.h +++ b/src/gui-environment.h @@ -34,21 +34,40 @@ extern "C" { DECLARE_WRAPPED_TYPE (irr::gui::IGUIEnvironment*, init_gui_environment_type, gui_environment_p, wrap_gui_environment, unwrap_gui_environment); - SCM - irr_getGUIEnvironment (SCM wrapped_obj); - SCM irr_gui_addImage (SCM wrapped_gui_environment, SCM image, SCM position, SCM rest); + SCM + irr_gui_addEditBox (SCM wrapped_gui_environment, + SCM text, + SCM rectangle, + SCM rest); + + SCM + irr_gui_addListBox (SCM wrapped_gui_environment, + SCM rectangle, + SCM rest); + + SCM + irr_gui_addScrollBar (SCM wrapped_gui_environment, + SCM horizontal, + SCM rectangle, + SCM rest); + SCM irr_gui_addStaticText (SCM wrapped_gui_environment, SCM text, SCM rectangle, SCM rest); + SCM + irr_gui_addWindow (SCM wrapped_gui_environment, + SCM rectangle, + SCM rest); + SCM irr_gui_getBuiltInFont (SCM wrapped_gui_environment);