X-Git-Url: http://git.code-monkey.de/?a=blobdiff_plain;f=src%2Frb_text.c;h=4c90a347966f7e76b40c6cd611999fd6a92d9ea5;hb=bacd52d1a8b4136d8dfc98a610aedda1f3cd126e;hp=a06a1dd289816b9f621ab03b42125a42bd871208;hpb=9ee77c744d2cb8d6d215aab112ff2d77eb8464fd;p=ruby-evas.git diff --git a/src/rb_text.c b/src/rb_text.c index a06a1dd..4c90a34 100644 --- a/src/rb_text.c +++ b/src/rb_text.c @@ -1,6 +1,4 @@ /* - * $Id: rb_text.c 382 2006-05-25 09:20:31Z tilman $ - * * Copyright (C) 2004 Tilman Sauerbeck (tilman at code-monkey de) * * This library is free software; you can redistribute it and/or @@ -26,9 +24,6 @@ #include "rb_evas.h" #include "rb_evas_object.h" -#define DEF_CONST(mod, prefix, name) \ - rb_define_const ((mod), #name, INT2FIX (prefix##name)); - #define GET_COLOR_METHOD(name) \ int r = 0, g = 0, b = 0, a = 0; \ \ @@ -117,7 +112,7 @@ static VALUE c_font_source_set (VALUE self, VALUE val) */ static VALUE c_get_font (VALUE self) { - char *font = NULL; + const char *font = NULL; Evas_Font_Size size = 0; GET_OBJ (self, RbEvasObject, e); @@ -336,6 +331,53 @@ static VALUE c_set_outline_color (VALUE self, SET_COLOR_METHOD (outline); } +static VALUE c_ascent_get (VALUE self) +{ + GET_OBJ (self, RbEvasObject, e); + + return INT2FIX ((int) evas_object_text_ascent_get (e->real)); +} + +static VALUE c_descent_get (VALUE self) +{ + GET_OBJ (self, RbEvasObject, e); + + return INT2FIX ((int) evas_object_text_descent_get (e->real)); +} + +static VALUE c_max_ascent_get (VALUE self) +{ + GET_OBJ (self, RbEvasObject, e); + + return INT2FIX ((int) evas_object_text_max_ascent_get (e->real)); +} + +static VALUE c_max_descent_get (VALUE self) +{ + GET_OBJ (self, RbEvasObject, e); + + return INT2FIX ((int) evas_object_text_max_descent_get (e->real)); +} + +static VALUE c_advance_get (VALUE self) +{ + int h = 0, v = 0; + + GET_OBJ (self, RbEvasObject, e); + + h = (int) evas_object_text_horiz_advance_get (e->real); + v = (int) evas_object_text_vert_advance_get (e->real); + + return rb_ary_new3 (2, INT2FIX (h), INT2FIX (v)); +} + +static VALUE c_inset_get (VALUE self) +{ + GET_OBJ (self, RbEvasObject, e); + + return INT2FIX ((int) evas_object_text_inset_get (e->real)); +} + void Init_Text (void) { VALUE c, c2; @@ -361,6 +403,13 @@ void Init_Text (void) rb_define_method (c, "get_outline_color", c_get_outline_color, 0); rb_define_method (c, "set_outline_color", c_set_outline_color, 4); + rb_define_method (c, "ascent", c_ascent_get, 0); + rb_define_method (c, "descent", c_descent_get, 0); + rb_define_method (c, "max_ascent", c_max_ascent_get, 0); + rb_define_method (c, "max_descent", c_max_descent_get, 0); + rb_define_method (c, "advance", c_advance_get, 0); + rb_define_method (c, "inset", c_inset_get, 0); + c2 = rb_define_class_under (mEvas, "Style", c); DEF_CONST (c2, EVAS_TEXT_STYLE_, PLAIN);