]> git.jsancho.org Git - guile-irrlicht.git/blobdiff - src/gui-environment.h
Get irrlicht objects
[guile-irrlicht.git] / src / gui-environment.h
index 1cc5cc630cd572fbdf39d283f4741657d8ed70dc..b26f542e6b344d53526a379987008caa87fe7c62 100644 (file)
@@ -34,15 +34,29 @@ extern "C" {
   DECLARE_WRAPPED_TYPE (irr::gui::IGUIEnvironment*, init_gui_environment_type,
                         gui_environment_p, wrap_gui_environment, unwrap_gui_environment);
 
-  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,
@@ -50,12 +64,25 @@ extern "C" {
                          SCM rest);
 
   SCM
-  irr_gui_getFont (SCM wrapped_gui_environment,
-                   SCM filename);
+  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