]> git.jsancho.org Git - guile-irrlicht.git/blobdiff - src/gui-environment.h
add-button!
[guile-irrlicht.git] / src / gui-environment.h
index caac2eeda7653f21c0ac15ab9f4797974101340d..e99e133f7237873774e978531cb9f2617e5bd4f5 100644 (file)
@@ -38,15 +38,32 @@ 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_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_getFont (SCM wrapped_gui_environment,
+                   SCM filename);
+
+  SCM
+  irr_gui_getSkin (SCM wrapped_gui_environment);
+
+  SCM
+  irr_gui_IGUIEnvironment_addButton (SCM wrapped_gui_environment,
+                                     SCM rectangle,
+                                     SCM rest);
 
-}
+  }
 
 #endif