Added Evas#font_hinting=.
[ruby-evas.git] / src / rb_evas.c
index ff76dba1f7b3c8bf02b179972f6914d7ba51b0c9..b38082f549274d0e9ad22da4b0ac2e92e8510ee8 100644 (file)
@@ -1,6 +1,4 @@
 /*
- * $Id: rb_evas.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
@@ -113,7 +111,7 @@ static VALUE c_font_path_prepend (VALUE self, VALUE path)
 {
        GET_OBJ (self, RbEvas, e);
 
-       evas_font_path_append (e->real, StringValuePtr (path));
+       evas_font_path_prepend (e->real, StringValuePtr (path));
 
        return Qnil;
 }
@@ -325,6 +323,18 @@ static VALUE c_output_viewport_get (VALUE self)
                            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);
@@ -355,4 +365,9 @@ void Init_Evas (void)
        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);
 }