]> git.jsancho.org Git - guile-irrlicht.git/blobdiff - src/gui-environment.h
add-editbox!
[guile-irrlicht.git] / src / gui-environment.h
index dd3f597d051d6239de7bc2c3a561a831d5a04ef6..9cfec521cd792ee02570ac210a13c4f96f9dcf0d 100644 (file)
@@ -37,12 +37,50 @@ extern "C" {
   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_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