X-Git-Url: https://git.jsancho.org/?a=blobdiff_plain;f=src%2Fgui-toolbar.cpp;h=134081691d57de16018e74b3a994383a82ca624e;hb=79e12d94cc21232477796a4e76fc2ddb5d88f9dc;hp=fb3ca10862ff8ad2b5b4f0d0081e7e513a4d8345;hpb=98052b04792129db97286fdd77ef3b0de8912286;p=guile-irrlicht.git diff --git a/src/gui-toolbar.cpp b/src/gui-toolbar.cpp index fb3ca10..1340816 100644 --- a/src/gui-toolbar.cpp +++ b/src/gui-toolbar.cpp @@ -23,12 +23,10 @@ #include #include "gsubr.h" #include "gui-toolbar.h" -#include "wchar.h" - +#include "wrapped.h" using namespace irr; - SCM IGUIToolBar_addButton (SCM gui_toolbar, SCM id, @@ -39,25 +37,26 @@ IGUIToolBar_addButton (SCM gui_toolbar, SCM is_push_button, SCM use_alpha_channel) { - gui::IGUIToolBar* toolbar = (gui::IGUIToolBar*) scm_to_pointer (gui_toolbar); + gui::IGUIToolBar* toolbar = (gui::IGUIToolBar*) scm_to_irr_pointer (gui_toolbar); + wchar_t* wtext = (wchar_t*) scm_to_utf32_string (text); + wchar_t* wtooltiptext = (wchar_t*) scm_to_utf32_string (tooltiptext); + gui::IGUIButton* button = toolbar->addButton (scm_to_int32 (id), - scm_to_wide_char_string (text), - scm_to_wide_char_string (tooltiptext), - (video::ITexture*) scm_to_pointer (img), - (video::ITexture*) scm_to_pointer (pressedimg), + wtext, + wtooltiptext, + (video::ITexture*) scm_to_irr_pointer (img), + (video::ITexture*) scm_to_irr_pointer (pressedimg), scm_to_bool (is_push_button), scm_to_bool (use_alpha_channel)); - return scm_from_pointer ((void*) button, NULL); -} + free (wtext); + free (wtooltiptext); + return scm_from_irr_pointer ("", (void*) button); +} -extern "C" { - - void - init_gui_toolbar (void) - { - DEFINE_GSUBR ("IGUIToolBar_addButton", 8, 0, 0, IGUIToolBar_addButton); - } - +void +init_gui_toolbar (void) +{ + DEFINE_GSUBR ("IGUIToolBar_addButton", 8, 0, 0, IGUIToolBar_addButton); }