We now use real structs to wrap objects.
[ruby-evas.git] / src / rb_text.c
1 /*
2  * $Id: rb_text.c 49 2004-08-01 10:17:39Z tilman $
3  *
4  * Copyright (C) 2004 Tilman Sauerbeck (tilman at code-monkey de)
5  *
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.
10  *
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.
15  *
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
19  */
20
21 #include <ruby.h>
22
23 #include <Evas.h>
24
25 #include "rb_evas_main.h"
26 #include "rb_evas.h"
27 #include "rb_evas_object.h"
28
29 static void c_free (RbEvasObject *e)
30 {
31         c_evas_object_free (e, true);
32 }
33
34 static VALUE c_new (VALUE klass, VALUE evas)
35 {
36         VALUE self, argv[1];
37         RbEvasObject *text;
38
39         CHECK_CLASS (evas, cEvas);
40         GET_OBJ (evas, RbEvas, e);
41
42         self = Data_Make_Struct (klass, RbEvasObject, c_evas_object_mark,
43                                  c_free, text);
44         text->real = evas_object_text_add (e->real);
45
46         argv[0] = evas;
47         rb_obj_call_init (self, 1, argv);
48
49         return self;
50 }
51
52 static VALUE c_font_source_get (VALUE self)
53 {
54         const char *tmp;
55
56         GET_OBJ (self, RbEvasObject, e);
57
58         if (!(tmp = evas_object_text_font_source_get (e->real)))
59                 return Qnil;
60         else
61                 return rb_str_new2 (tmp);
62 }
63
64 static VALUE c_font_source_set (VALUE self, VALUE val)
65 {
66         GET_OBJ (self, RbEvasObject, e);
67
68         Check_Type (val, T_STRING);
69
70         evas_object_text_font_source_set (e->real, StringValuePtr (val));
71
72         return Qnil;
73 }
74
75 static VALUE c_get_font (VALUE self)
76 {
77         char *font = NULL;
78         Evas_Font_Size size = 0;
79
80         GET_OBJ (self, RbEvasObject, e);
81
82         evas_object_text_font_get (e->real, &font, &size);
83
84         return rb_ary_new3 (2, font ? rb_str_new2 (font) : Qnil,
85                             INT2FIX (size));
86 }
87
88 static VALUE c_set_font (VALUE self, VALUE font, VALUE size)
89 {
90         GET_OBJ (self, RbEvasObject, e);
91
92         Check_Type (font, T_STRING);
93         Check_Type (font, T_FIXNUM);
94
95         evas_object_text_font_set (e->real, StringValuePtr (font),
96                                    FIX2INT (size));
97
98         return Qnil;
99 }
100
101 static VALUE c_text_get (VALUE self)
102 {
103         const char *tmp;
104
105         GET_OBJ (self, RbEvasObject, e);
106
107         if (!(tmp = evas_object_text_text_get (e->real)))
108                 return Qnil;
109         else
110                 return rb_str_new2 (tmp);
111 }
112
113 static VALUE c_text_set (VALUE self, VALUE val)
114 {
115         GET_OBJ (self, RbEvasObject, e);
116
117         Check_Type (val, T_STRING);
118
119         evas_object_text_text_set (e->real, StringValuePtr (val));
120
121         return Qnil;
122 }
123
124 void Init_Text (void)
125 {
126         VALUE c = rb_define_class_under (mEvas, "Text", cEvasObject);
127
128         rb_define_singleton_method (c, "new", c_new, 1);
129         rb_define_method (c, "font_source", c_font_source_get, 0);
130         rb_define_method (c, "font_source=", c_font_source_set, 1);
131         rb_define_method (c, "get_font", c_get_font, 0);
132         rb_define_method (c, "set_font", c_set_font, 2);
133         rb_define_method (c, "text", c_text_get, 0);
134         rb_define_method (c, "text=", c_text_set, 1);
135 }