New 1.18 API: elm-Configuration.font_hint_type

This commit is contained in:
Davide Andreoli 2016-08-12 12:59:27 +02:00
parent 7066070992
commit 5342d77d60
2 changed files with 12 additions and 0 deletions

View File

@ -1202,6 +1202,17 @@ cdef class Configuration(object):
def __set__(self, Elm_Focus_Autoscroll_Mode mode):
elm_config_focus_autoscroll_mode_set(mode)
property font_hint_type:
""" Apply the specified font hinting type.
:type: :ref:`Evas_Font_Hinting_Flags` (**writeonly**)
.. versionadded:: 1.18
"""
def __set__(self, int mode):
elm_config_font_hint_type_set(mode)
property window_auto_focus_enable:
"""The auto focus enable flag

View File

@ -158,6 +158,7 @@ cdef extern from "Elementary.h":
void elm_config_selection_unfocused_clear_set(Eina_Bool enabled)
void elm_config_font_overlay_unset(const char *text_class)
void elm_config_font_overlay_apply()
void elm_config_font_hint_type_set(int type)
Evas_Coord elm_config_finger_size_get()
void elm_config_finger_size_set(Evas_Coord size)