X-Git-Url: https://git.jsancho.org/?a=blobdiff_plain;f=src%2Fgui-environment.h;h=5c6da7ecefdf66865915894219c8d6dcdb3327f3;hb=5ae44925acf0d6905a62e28a09af184d9db655a1;hp=c1e80d86bdb566d1d9ec2bc50ceac93b0ff62c20;hpb=60376e14c4cc35b3c8d7e069b083881b5ffe9032;p=guile-irrlicht.git diff --git a/src/gui-environment.h b/src/gui-environment.h index c1e80d8..5c6da7e 100644 --- a/src/gui-environment.h +++ b/src/gui-environment.h @@ -43,15 +43,49 @@ extern "C" { 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); + 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