1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56
|
/*
Ruby/SDL Ruby extension library for SDL
Copyright (C) 2001 Ohbayashi Ippei
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include "rubysdl.h"
static VALUE sdl_wm_getCaption(VALUE mod)
{
char *title,*icon;
SDL_WM_GetCaption( &title,&icon );
return rb_ary_new3( 2,rb_str_new2(title),rb_str_new2(icon) );
}
static VALUE sdl_wm_setCaption(VALUE mod,VALUE title,VALUE icon)
{
SDL_WM_SetCaption( STR2CSTR(title),STR2CSTR(icon) );
return Qnil;
}
static VALUE sdl_wm_setIcon(VALUE mod,VALUE icon)
{
SDL_Surface *surface;
if( ! rb_obj_is_kind_of(icon,cSurface) )
rb_raise(rb_eArgError,"type mismatch (expected Surface)");
Data_Get_Struct(icon,SDL_Surface,surface);
SDL_WM_SetIcon(surface,NULL);
return Qnil;
}
static VALUE sdl_wm_iconifyWindow(VALUE mod)
{
if( ! SDL_WM_IconifyWindow() )
rb_raise( eSDLError,"iconify failed: %s",SDL_GetError() );
return Qnil;
}
void init_wm()
{
mWM=rb_define_module_under(mSDL,"WM");
rb_define_module_function(mWM,"caption",sdl_wm_getCaption,0);
rb_define_module_function(mWM,"setCaption",sdl_wm_setCaption,2);
rb_define_module_function(mWM,"icon=",sdl_wm_setIcon,1);
rb_define_module_function(mWM,"iconify",sdl_wm_iconifyWindow,0);
}
|