X-Git-Url: https://git.jsancho.org/?a=blobdiff_plain;f=src%2Fgui.cpp;h=6068f3a7eea71546811237d4dc7f20b1a92d7921;hb=61aadd8525de89016f63572fd474547a1bb932de;hp=2f7044bb437dea04b7fa807a2fd366dce7e6c7e0;hpb=da89e12dbf35ce6452e6a6e2eeb3f83eaeb94c97;p=guile-irrlicht.git diff --git a/src/gui.cpp b/src/gui.cpp index 2f7044b..6068f3a 100644 --- a/src/gui.cpp +++ b/src/gui.cpp @@ -31,6 +31,8 @@ #include "gui-environment.h" #include "gui-font.h" #include "gui-image.h" +#include "gui-in-out-fader.h" +#include "gui-scrollbar.h" #include "gui-skin.h" #include "gui-static-text.h" #include "gui-toolbar.h" @@ -47,12 +49,17 @@ extern "C" { init_gui_environment (); init_gui_font (); init_gui_image (); + init_gui_in_out_fader (); + init_gui_scrollbar (); init_gui_skin (); init_gui_static_text (); init_gui_toolbar (); // Shared procedures (used by two or more objects) DEFINE_GSUBR ("add-button!", 1, 1, 1, irr_gui_addButton); + DEFINE_GSUBR ("get-color", 1, 1, 0, irr_gui_getColor); + DEFINE_GSUBR ("get-font", 1, 1, 1, irr_gui_getFont); + DEFINE_GSUBR ("set-max!", 2, 0, 0, irr_gui_setMax); DEFINE_GSUBR ("set-override-color!", 2, 0, 0, irr_gui_setOverrideColor); } @@ -76,6 +83,73 @@ extern "C" { } } + SCM + irr_gui_getColor (SCM wrapped_obj, + SCM color) + { +#define GET_COLOR(OBJ) scm_from_color (OBJ->getColor ()); + + if (gui_image_p (wrapped_obj)) + { + return GET_COLOR (unwrap_gui_image (wrapped_obj)); + } + else if (gui_in_out_fader_p (wrapped_obj)) + { + return GET_COLOR (unwrap_gui_in_out_fader (wrapped_obj)); + } + else if (gui_skin_p (wrapped_obj)) + { + return irr_gui_IGUISkin_getColor (wrapped_obj, color); + } + else + { + scm_error (scm_arg_type_key, NULL, "Cannot get color from object: ~S", + scm_list_1 (wrapped_obj), scm_list_1 (wrapped_obj)); + } + } + + SCM + irr_gui_getFont (SCM wrapped_obj, + SCM filename, + SCM rest) + { + if (gui_environment_p (wrapped_obj)) + { + return irr_gui_IGUIEnvironment_getFont (wrapped_obj, filename); + } + else if (gui_skin_p (wrapped_obj)) + { + return irr_gui_IGUISkin_getFont (wrapped_obj, rest); + } + else + { + scm_error (scm_arg_type_key, NULL, "Cannot get font from object: ~S", + scm_list_1 (wrapped_obj), scm_list_1 (wrapped_obj)); + } + } + + SCM + irr_gui_setMax (SCM wrapped_obj, + SCM max) + { +#define SET_MAX(OBJ) OBJ->setMax (scm_to_int32 (max)); + + if (gui_edit_box_p (wrapped_obj)) + { + SET_MAX (unwrap_gui_edit_box (wrapped_obj)); + } + else if (gui_scrollbar_p (wrapped_obj)) + { + SET_MAX (unwrap_gui_scrollbar (wrapped_obj)); + } + else + { + scm_error (scm_arg_type_key, NULL, "Cannot set max to object: ~S", + scm_list_1 (wrapped_obj), scm_list_1 (wrapped_obj)); + } + return SCM_UNSPECIFIED; + } + SCM irr_gui_setOverrideColor (SCM wrapped_obj, SCM color)