c6ffa422abb5f33ce961a35640ad2bb5e51b3283
[ruby-evas.git] / src / rb_text.c
1 /*
2  * $Id: rb_text.c 23 2004-06-26 22:55:31Z 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 VALUE c_new (VALUE klass, VALUE evas)
30 {
31         VALUE self, argv[1];
32         Evas_Object **rect;
33
34         if (!rb_obj_is_kind_of (evas, cEvas)) {
35                 rb_raise (rb_eTypeError,
36                           "wrong argument type %s (expected Evas)",
37                           rb_obj_classname (evas));
38                 return Qnil;
39         }
40
41         GET_OBJ (evas, Evas, e, "Evas");
42
43         self = Data_Make_Struct (klass, Evas_Object *, c_evas_object_mark,
44                                  c_evas_object_free, rect);
45         *rect = evas_object_text_add (*e);
46
47         argv[0] = evas;
48         rb_obj_call_init (self, 1, argv);
49
50         return self;
51 }
52
53 static VALUE c_font_source_get (VALUE self)
54 {
55         const char *tmp;
56
57         GET_OBJ (self, Evas_Object, e, "Text");
58
59         if (!(tmp = evas_object_text_font_source_get (*e)))
60                 return Qnil;
61         else
62                 return rb_str_new2 (tmp);
63 }
64
65 static VALUE c_font_source_set (VALUE self, VALUE val)
66 {
67         GET_OBJ (self, Evas_Object, e, "Text");
68
69         Check_Type (val, T_STRING);
70
71         evas_object_text_font_source_set (*e, StringValuePtr (val));
72
73         return Qnil;
74 }
75
76 static VALUE c_get_font (VALUE self)
77 {
78         char *font = NULL;
79         Evas_Font_Size size = 0;
80
81         GET_OBJ (self, Evas_Object, e, "Text");
82
83         evas_object_text_font_get (*e, &font, &size);
84
85         return rb_ary_new3 (2, font ? rb_str_new2 (font) : Qnil,
86                             INT2FIX (size));
87 }
88
89 static VALUE c_set_font (VALUE self, VALUE font, VALUE size)
90 {
91         GET_OBJ (self, Evas_Object, e, "Text");
92
93         Check_Type (font, T_STRING);
94         Check_Type (font, T_FIXNUM);
95
96         evas_object_text_font_set (*e, StringValuePtr (font),
97                                    FIX2INT (size));
98
99         return Qnil;
100 }
101
102 static VALUE c_text_get (VALUE self)
103 {
104         const char *tmp;
105
106         GET_OBJ (self, Evas_Object, e, "Text");
107
108         if (!(tmp = evas_object_text_text_get (*e)))
109                 return Qnil;
110         else
111                 return rb_str_new2 (tmp);
112 }
113
114 static VALUE c_text_set (VALUE self, VALUE val)
115 {
116         GET_OBJ (self, Evas_Object, e, "Text");
117
118         Check_Type (val, T_STRING);
119
120         evas_object_text_text_set (*e, StringValuePtr (val));
121
122         return Qnil;
123 }
124
125 void Init_Text (void)
126 {
127         VALUE cText = rb_define_class_under (mEvas, "Text", cEvasObject);
128
129         rb_define_singleton_method (cText, "new", c_new, 1);
130         rb_define_method (cText, "font_source", c_font_source_get, 0);
131         rb_define_method (cText, "font_source=", c_font_source_set, 1);
132         rb_define_method (cText, "get_font", c_get_font, 0);
133         rb_define_method (cText, "set_font", c_set_font, 2);
134         rb_define_method (cText, "text", c_text_get, 0);
135         rb_define_method (cText, "text=", c_text_set, 1);
136 }