diff --git a/bindings/vala/eek-0.90/eek-0.90.files b/bindings/vala/eek-0.90/eek-0.90.files index efbcb317..fca13821 100644 --- a/bindings/vala/eek-0.90/eek-0.90.files +++ b/bindings/vala/eek-0.90/eek-0.90.files @@ -9,6 +9,7 @@ include/eek-0.90/eek/eek-section.h include/eek-0.90/eek/eek-serializable.h include/eek-0.90/eek/eek-symbol.h include/eek-0.90/eek/eek-symbol-matrix.h +include/eek-0.90/eek/eek-text.h include/eek-0.90/eek/eek-theme.h include/eek-0.90/eek/eek-types.h include/eek-0.90/eek/eek-xml.h diff --git a/bindings/vala/eek-0.90/eek-0.90.gi b/bindings/vala/eek-0.90/eek-0.90.gi index a76ffd1e..764a5abd 100644 --- a/bindings/vala/eek-0.90/eek-0.90.gi +++ b/bindings/vala/eek-0.90/eek-0.90.gi @@ -900,7 +900,7 @@ - + @@ -1061,6 +1061,18 @@ + + + + + + + + + + + + @@ -1082,7 +1094,7 @@ - + @@ -1127,7 +1139,7 @@ - + @@ -1144,6 +1156,24 @@ + + + + + + + + + + + + + + + + + + @@ -1235,6 +1265,7 @@ + diff --git a/bindings/vala/eek-0.90/eek-0.90.metadata b/bindings/vala/eek-0.90/eek-0.90.metadata index 93e22fa2..027633a1 100644 --- a/bindings/vala/eek-0.90/eek-0.90.metadata +++ b/bindings/vala/eek-0.90/eek-0.90.metadata @@ -1 +1,24 @@ Eek cheader_filename="eek/eek.h" + +EekBounds is_value_type="1" +eek_bounds_copy hidden="1" +eek_bounds_free hidden="1" + +EekPoint is_value_type="1" +eek_point_copy hidden="1" +eek_point_free hidden="1" + +EekOutline is_value_type="1" +eek_outline_copy hidden="1" +eek_outline_free hidden="1" + +EekColor is_value_type="1" +eek_color_copy hidden="1" +eek_color_free hidden="1" +eek_color_new hidden="1" + +eek_element_get_bounds.bounds is_out="1" +eek_element_get_absolute_position.x is_out="1" +eek_element_get_absolute_position.y is_out="1" +eek_element_get_symbol_index.group is_out="1" +eek_element_get_symbol_index.level is_out="1" diff --git a/eek/eek-text.c b/eek/eek-text.c index 6604aed9..9ccea4ad 100644 --- a/eek/eek-text.c +++ b/eek/eek-text.c @@ -18,6 +18,11 @@ * 02110-1301 USA */ +/** + * SECTION:eek-text + * @short_description: an #EekText represents a text symbol + */ + #ifdef HAVE_CONFIG_H #include "config.h" #endif /* HAVE_CONFIG_H */ @@ -166,6 +171,12 @@ eek_text_new (const gchar *text) NULL); } +/** + * eek_text_get_text: + * @text: an #EekText + * + * Get a text value associated with @text + */ const gchar * eek_text_get_text (EekText *text) { diff --git a/eek/eek-text.h b/eek/eek-text.h index 5d77114e..6fb21fd2 100644 --- a/eek/eek-text.h +++ b/eek/eek-text.h @@ -39,6 +39,12 @@ G_BEGIN_DECLS typedef struct _EekTextClass EekTextClass; typedef struct _EekTextPrivate EekTextPrivate; +/** + * EekText: + * + * The #EekText structure contains only private data and should only + * be accessed using the provided API. + */ struct _EekText { /*< private >*/ EekSymbol parent;