X-Git-Url: https://git.jsancho.org/?a=blobdiff_plain;f=src%2Fgui-environment.h;h=9cfec521cd792ee02570ac210a13c4f96f9dcf0d;hb=0701c9fb6dc986131d6c62212559338aab8b0531;hp=caac2eeda7653f21c0ac15ab9f4797974101340d;hpb=9a256c6c6a756378cb53c89d42e362bbaa2fc5c0;p=guile-irrlicht.git diff --git a/src/gui-environment.h b/src/gui-environment.h index caac2ee..9cfec52 100644 --- a/src/gui-environment.h +++ b/src/gui-environment.h @@ -38,15 +38,49 @@ extern "C" { irr_getGUIEnvironment (SCM wrapped_obj); SCM - irr_gui_addStaticText (SCM guienv, + 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 border, - SCM wordWrap, - SCM parent, - SCM id, - SCM fillBackground); + 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