INT2FIX (h));
}
+static VALUE
+c_font_hinting_set (VALUE self, VALUE val)
+{
+ GET_OBJ (self, RbEvas, e);
+
+ Check_Type (val, T_FIXNUM);
+
+ evas_font_hinting_set (e->real, FIX2INT (val));
+
+ return Qnil;
+}
+
void Init_Evas (void)
{
cEvas = rb_define_class_under (mEvas, "Evas", rb_cObject);
rb_define_method (cEvas, "find_object", c_find_object, 1);
rb_define_method (cEvas, "output_size", c_output_size_get, 0);
rb_define_method (cEvas, "output_viewport", c_output_viewport_get, 0);
+ rb_define_method (cEvas, "font_hinting=", c_font_hinting_set, 1);
+
+ DEF_CONST (cEvas, EVAS_FONT_HINTING_, NONE);
+ DEF_CONST (cEvas, EVAS_FONT_HINTING_, AUTO);
+ DEF_CONST (cEvas, EVAS_FONT_HINTING_, BYTECODE);
}
\
return rb_str_new2 (buf);
+#define DEF_CONST(mod, prefix, name) \
+ rb_define_const ((mod), #name, INT2FIX (prefix##name));
+
VALUE mEvas;
#endif
#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; \
\