]> git.jsancho.org Git - guile-irrlicht.git/blobdiff - src/gui-environment.h
add-static-text!
[guile-irrlicht.git] / src / gui-environment.h
index caac2eeda7653f21c0ac15ab9f4797974101340d..bf896c8595636fc8deaaed8aa91f3dcd46aa2a04 100644 (file)
@@ -35,18 +35,58 @@ extern "C" {
                         gui_environment_p, wrap_gui_environment, unwrap_gui_environment);
 
   SCM
-  irr_getGUIEnvironment (SCM wrapped_obj);
+  irr_gui_IGUIEnvironment_addStaticText (SCM gui_environment,
+                                         SCM text,
+                                         SCM rectangle,
+                                         SCM border,
+                                         SCM word_wrap,
+                                         SCM parent,
+                                         SCM id,
+                                         SCM fill_background);
 
   SCM
-  irr_gui_addStaticText (SCM guienv,
-                         SCM text,
-                         SCM rectangle,
-                         SCM border,
-                         SCM wordWrap,
-                         SCM parent,
-                         SCM id,
-                         SCM fillBackground);
+  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_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