X-Git-Url: http://git.code-monkey.de/?p=ruby-evas.git;a=blobdiff_plain;f=src%2Frb_text.c;h=dfb5cc7b1b90d5158177967f15b311ac79c57347;hp=c6ffa422abb5f33ce961a35640ad2bb5e51b3283;hb=0ab509cfd10cd260793e7bd6d00ace66b8085962;hpb=57c054bb97ec81f443c45cae635bb4c7036091c2 diff --git a/src/rb_text.c b/src/rb_text.c index c6ffa42..dfb5cc7 100644 --- a/src/rb_text.c +++ b/src/rb_text.c @@ -1,5 +1,5 @@ /* - * $Id: rb_text.c 23 2004-06-26 22:55:31Z tilman $ + * $Id: rb_text.c 32 2004-07-10 14:07:49Z tilman $ * * Copyright (C) 2004 Tilman Sauerbeck (tilman at code-monkey de) * @@ -31,14 +31,8 @@ static VALUE c_new (VALUE klass, VALUE evas) VALUE self, argv[1]; Evas_Object **rect; - if (!rb_obj_is_kind_of (evas, cEvas)) { - rb_raise (rb_eTypeError, - "wrong argument type %s (expected Evas)", - rb_obj_classname (evas)); - return Qnil; - } - - GET_OBJ (evas, Evas, e, "Evas"); + CHECK_CLASS(evas, cEvas); + GET_OBJ (evas, Evas, e); self = Data_Make_Struct (klass, Evas_Object *, c_evas_object_mark, c_evas_object_free, rect); @@ -54,7 +48,7 @@ static VALUE c_font_source_get (VALUE self) { const char *tmp; - GET_OBJ (self, Evas_Object, e, "Text"); + GET_OBJ (self, Evas_Object, e); if (!(tmp = evas_object_text_font_source_get (*e))) return Qnil; @@ -64,7 +58,7 @@ static VALUE c_font_source_get (VALUE self) static VALUE c_font_source_set (VALUE self, VALUE val) { - GET_OBJ (self, Evas_Object, e, "Text"); + GET_OBJ (self, Evas_Object, e); Check_Type (val, T_STRING); @@ -78,7 +72,7 @@ static VALUE c_get_font (VALUE self) char *font = NULL; Evas_Font_Size size = 0; - GET_OBJ (self, Evas_Object, e, "Text"); + GET_OBJ (self, Evas_Object, e); evas_object_text_font_get (*e, &font, &size); @@ -88,7 +82,7 @@ static VALUE c_get_font (VALUE self) static VALUE c_set_font (VALUE self, VALUE font, VALUE size) { - GET_OBJ (self, Evas_Object, e, "Text"); + GET_OBJ (self, Evas_Object, e); Check_Type (font, T_STRING); Check_Type (font, T_FIXNUM); @@ -103,7 +97,7 @@ static VALUE c_text_get (VALUE self) { const char *tmp; - GET_OBJ (self, Evas_Object, e, "Text"); + GET_OBJ (self, Evas_Object, e); if (!(tmp = evas_object_text_text_get (*e))) return Qnil; @@ -113,7 +107,7 @@ static VALUE c_text_get (VALUE self) static VALUE c_text_set (VALUE self, VALUE val) { - GET_OBJ (self, Evas_Object, e, "Text"); + GET_OBJ (self, Evas_Object, e); Check_Type (val, T_STRING);