diff options
author | Tom Hacohen <tom@stosb.com> | 2013-07-31 14:31:23 +0100 |
---|---|---|
committer | Tom Hacohen <tom@stosb.com> | 2013-07-31 14:31:23 +0100 |
commit | dfb2fb2de560ef5608b53ded07e040d9c97bb5aa (patch) | |
tree | 7b0b9ca4a7c4a519fd726f7aaf2794fb89c620bd /src/lib/evas/Evas_Legacy.h | |
parent | 4dd259f3b159af87e6f569082ffb5353a3886b2f (diff) |
Evas Text object: Improved the docs explaining font selection.
Diffstat (limited to 'src/lib/evas/Evas_Legacy.h')
-rw-r--r-- | src/lib/evas/Evas_Legacy.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/evas/Evas_Legacy.h b/src/lib/evas/Evas_Legacy.h index fed808660f..2ea4cb2e50 100644 --- a/src/lib/evas/Evas_Legacy.h +++ b/src/lib/evas/Evas_Legacy.h | |||
@@ -5177,17 +5177,17 @@ EAPI void evas_object_text_font_source_set(Evas_Object *obj, con | |||
5177 | EAPI const char *evas_object_text_font_source_get(const Evas_Object *obj) EINA_WARN_UNUSED_RESULT EINA_ARG_NONNULL(1); | 5177 | EAPI const char *evas_object_text_font_source_get(const Evas_Object *obj) EINA_WARN_UNUSED_RESULT EINA_ARG_NONNULL(1); |
5178 | 5178 | ||
5179 | /** | 5179 | /** |
5180 | * Set the font family and size on a given text object. | 5180 | * Set the font family or filename, and size on a given text object. |
5181 | * | 5181 | * |
5182 | * @param obj The text object to set font for. | 5182 | * @param obj The text object to set font for. |
5183 | * @param font The font (family) name. | 5183 | * @param font The font family name or filename. |
5184 | * @param size The font size, in points. | 5184 | * @param size The font size, in points. |
5185 | * | 5185 | * |
5186 | * This function allows the font name and size of a text object to be | 5186 | * This function allows the font name and size of a text object to be |
5187 | * set. The @p font string has to follow fontconfig's convention on | 5187 | * set. The @p font string has to follow fontconfig's convention on |
5188 | * naming fonts, as it's the underlying library used to query system | 5188 | * naming fonts, as it's the underlying library used to query system |
5189 | * fonts by Evas (see the @c fc-list command's output, on your system, | 5189 | * fonts by Evas (see the @c fc-list command's output, on your system, |
5190 | * to get an idea). | 5190 | * to get an idea). Alternatively, one can use a full path to a font file. |
5191 | * | 5191 | * |
5192 | * @see evas_object_text_font_get() | 5192 | * @see evas_object_text_font_get() |
5193 | * @see evas_object_text_font_source_set() | 5193 | * @see evas_object_text_font_source_set() |