]> git.jsancho.org Git - guile-irrlicht.git/blobdiff - src/gui-environment.h
gui-environment
[guile-irrlicht.git] / src / gui-environment.h
index 46f917837e64156d11c75ac21f0ce5625f29aef0..663c4190b3ecb6e78fe633d18370d82542fd7d9a 100644 (file)
 
 #include <irrlicht/irrlicht.h>
 #include <libguile.h>
-#include "wrapped.h"
-
 
 template <typename TParent>
 SCM
-irr_gui_IGUIEnvironment_addButton (SCM gui_environment,
+gui_IGUIEnvironment_addButton (SCM gui_environment,
                                    SCM rectangle,
                                    SCM parent,
                                    SCM id,
                                    SCM text,
                                    SCM tooltiptext);
 
-
 template <typename TParent>
 SCM
-irr_gui_IGUIEnvironment_addEditBox (SCM gui_environment,
+gui_IGUIEnvironment_addEditBox (SCM gui_environment,
                                     SCM text,
                                     SCM rectangle,
                                     SCM border,
                                     SCM parent,
                                     SCM id);
 
-
 template <typename TParent>
 SCM
-irr_gui_IGUIEnvironment_addImage (SCM gui_environment,
+gui_IGUIEnvironment_addImage (SCM gui_environment,
                                   SCM image,
                                   SCM position,
                                   SCM use_alpha_channel,
@@ -57,28 +53,25 @@ irr_gui_IGUIEnvironment_addImage (SCM gui_environment,
                                   SCM id,
                                   SCM text);
 
-
 template <typename TParent>
 SCM
-irr_gui_IGUIEnvironment_addListBox (SCM gui_environment,
+gui_IGUIEnvironment_addListBox (SCM gui_environment,
                                     SCM rectangle,
                                     SCM parent,
                                     SCM id,
                                     SCM draw_background);
 
-
 template <typename TParent>
 SCM
-irr_gui_IGUIEnvironment_addScrollBar (SCM gui_environment,
+gui_IGUIEnvironment_addScrollBar (SCM gui_environment,
                                       SCM horizontal,
                                       SCM rectangle,
                                       SCM parent,
                                       SCM id);
 
-
 template <typename TParent>
 SCM
-irr_gui_IGUIEnvironment_addStaticText (SCM gui_environment,
+gui_IGUIEnvironment_addStaticText (SCM gui_environment,
                                        SCM text,
                                        SCM rectangle,
                                        SCM border,
@@ -87,35 +80,28 @@ irr_gui_IGUIEnvironment_addStaticText (SCM gui_environment,
                                        SCM id,
                                        SCM fill_background);
 
-
 template <typename TParent>
 SCM
-irr_gui_IGUIEnvironment_addWindow (SCM gui_environment,
+gui_IGUIEnvironment_addWindow (SCM gui_environment,
                                    SCM rectangle,
                                    SCM modal,
                                    SCM text,
                                    SCM parent,
                                    SCM id);
 
-
 SCM
-irr_gui_IGUIEnvironment_getBuiltInFont (SCM gui_environment);
-
+gui_IGUIEnvironment_getBuiltInFont (SCM gui_environment);
 
 SCM
-irr_gui_IGUIEnvironment_getFont (SCM gui_environment,
+gui_IGUIEnvironment_getFont (SCM gui_environment,
                                  SCM filename);
 
-
 SCM
-irr_gui_IGUIEnvironment_getSkin (SCM gui_environment);
-
+gui_IGUIEnvironment_getSkin (SCM gui_environment);
 
 extern "C" {
-
   void
   init_gui_environment (void);
-
 }
 
 #endif