2 * $Id: rb_text.c 32 2004-07-10 14:07:49Z tilman $
4 * Copyright (C) 2004 Tilman Sauerbeck (tilman at code-monkey de)
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
25 #include "rb_evas_main.h"
27 #include "rb_evas_object.h"
29 static VALUE c_new (VALUE klass, VALUE evas)
34 CHECK_CLASS(evas, cEvas);
35 GET_OBJ (evas, Evas, e);
37 self = Data_Make_Struct (klass, Evas_Object *, c_evas_object_mark,
38 c_evas_object_free, rect);
39 *rect = evas_object_text_add (*e);
42 rb_obj_call_init (self, 1, argv);
47 static VALUE c_font_source_get (VALUE self)
51 GET_OBJ (self, Evas_Object, e);
53 if (!(tmp = evas_object_text_font_source_get (*e)))
56 return rb_str_new2 (tmp);
59 static VALUE c_font_source_set (VALUE self, VALUE val)
61 GET_OBJ (self, Evas_Object, e);
63 Check_Type (val, T_STRING);
65 evas_object_text_font_source_set (*e, StringValuePtr (val));
70 static VALUE c_get_font (VALUE self)
73 Evas_Font_Size size = 0;
75 GET_OBJ (self, Evas_Object, e);
77 evas_object_text_font_get (*e, &font, &size);
79 return rb_ary_new3 (2, font ? rb_str_new2 (font) : Qnil,
83 static VALUE c_set_font (VALUE self, VALUE font, VALUE size)
85 GET_OBJ (self, Evas_Object, e);
87 Check_Type (font, T_STRING);
88 Check_Type (font, T_FIXNUM);
90 evas_object_text_font_set (*e, StringValuePtr (font),
96 static VALUE c_text_get (VALUE self)
100 GET_OBJ (self, Evas_Object, e);
102 if (!(tmp = evas_object_text_text_get (*e)))
105 return rb_str_new2 (tmp);
108 static VALUE c_text_set (VALUE self, VALUE val)
110 GET_OBJ (self, Evas_Object, e);
112 Check_Type (val, T_STRING);
114 evas_object_text_text_set (*e, StringValuePtr (val));
119 void Init_Text (void)
121 VALUE cText = rb_define_class_under (mEvas, "Text", cEvasObject);
123 rb_define_singleton_method (cText, "new", c_new, 1);
124 rb_define_method (cText, "font_source", c_font_source_get, 0);
125 rb_define_method (cText, "font_source=", c_font_source_set, 1);
126 rb_define_method (cText, "get_font", c_get_font, 0);
127 rb_define_method (cText, "set_font", c_set_font, 2);
128 rb_define_method (cText, "text", c_text_get, 0);
129 rb_define_method (cText, "text=", c_text_set, 1);