]> git.jsancho.org Git - guile-irrlicht.git/blobdiff - src/gui-environment.h
add-listbox!
[guile-irrlicht.git] / src / gui-environment.h
index 85ea2506b1884cf4306857abc95ae563900d291c..a52233a24cba3894d7926f2c804fdda9b0f2c962 100644 (file)
@@ -43,12 +43,38 @@ extern "C" {
                     SCM position,
                     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