X-Git-Url: https://git.jsancho.org/?a=blobdiff_plain;f=src%2Fgui-environment.h;h=bf896c8595636fc8deaaed8aa91f3dcd46aa2a04;hb=8c5c5f5fc4aef51c5dfa515b3a8eee67de3b8e9b;hp=9b8d63653e3df8c03feaa3da6fc11125d098e1c4;hpb=2806f03eafc48ec9ef02a3dc2d74133eaf11ccc1;p=guile-irrlicht.git diff --git a/src/gui-environment.h b/src/gui-environment.h index 9b8d636..bf896c8 100644 --- a/src/gui-environment.h +++ b/src/gui-environment.h @@ -35,15 +35,58 @@ extern "C" { gui_environment_p, wrap_gui_environment, unwrap_gui_environment); SCM - irr_gui_addStaticText (SCM guienv, - SCM text, - SCM rectangle, - SCM border, - SCM wordWrap, - SCM parent, - SCM id, - SCM fillBackground); - -} + irr_gui_IGUIEnvironment_addStaticText (SCM gui_environment, + SCM text, + SCM rectangle, + SCM border, + SCM word_wrap, + SCM parent, + SCM id, + SCM fill_background); + + 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_addWindow (SCM wrapped_gui_environment, + SCM rectangle, + SCM rest); + + SCM + irr_gui_getBuiltInFont (SCM wrapped_gui_environment); + + SCM + irr_gui_getSkin (SCM wrapped_gui_environment); + + SCM + irr_gui_IGUIEnvironment_addButton (SCM wrapped_gui_environment, + SCM rectangle, + SCM rest); + + SCM + irr_gui_IGUIEnvironment_getFont (SCM wrapped_gui_environment, + SCM filename); + + } #endif