diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/ecore_con/ecore_con_base.eo | 4 | ||||
-rw-r--r-- | src/lib/evas/canvas/evas_textgrid.eo | 27 |
2 files changed, 17 insertions, 14 deletions
diff --git a/src/lib/ecore_con/ecore_con_base.eo b/src/lib/ecore_con/ecore_con_base.eo index 48e92c2d4b..10ffeba71d 100644 --- a/src/lib/ecore_con/ecore_con_base.eo +++ b/src/lib/ecore_con/ecore_con_base.eo | |||
@@ -175,8 +175,8 @@ abstract Ecore.Con.Base (Eo.Base) { | |||
175 | 175 | ||
176 | /* FIXME: Should actually be a binbuf. */ | 176 | /* FIXME: Should actually be a binbuf. */ |
177 | struct Ecore_Con_Event_Data_Received { | 177 | struct Ecore_Con_Event_Data_Received { |
178 | data: void *; /*@ The data thet got sent. */ | 178 | data: void *; [[The data thet got sent.]] |
179 | size: int; /*@ The length of the data sent. */ | 179 | size: int; [[The length of the data sent.]] |
180 | } | 180 | } |
181 | 181 | ||
182 | /* TODO | 182 | /* TODO |
diff --git a/src/lib/evas/canvas/evas_textgrid.eo b/src/lib/evas/canvas/evas_textgrid.eo index b6fa285c76..9ef3816414 100644 --- a/src/lib/evas/canvas/evas_textgrid.eo +++ b/src/lib/evas/canvas/evas_textgrid.eo | |||
@@ -1,19 +1,22 @@ | |||
1 | enum Evas.Textgrid.Palette { | 1 | enum Evas.Textgrid.Palette { |
2 | /*@ The palette to use for the foreground and background colors. | 2 | [[The palette to use for the foreground and background colors. |
3 | @since 1.7 */ | 3 | |
4 | none, /**< No palette is used */ | 4 | @since 1.7 |
5 | standard, /**< standard palette (around 16 colors) */ | 5 | ]] |
6 | extended, /**< extended palette (at max 256 colors) */ | 6 | none, [[No palette is used]] |
7 | last /**< ignore it */ | 7 | standard, [[standard palette (around 16 colors)]] |
8 | extended, [[extended palette (at max 256 colors)]] | ||
9 | last [[ignore it]] | ||
8 | } | 10 | } |
9 | 11 | ||
10 | enum Evas.Textgrid.Font_Style { | 12 | enum Evas.Textgrid.Font_Style { |
11 | /*@ * The style to give to each character of the grid. | 13 | [[The style to give to each character of the grid. |
12 | * @since 1.7 | 14 | |
13 | */ | 15 | @since 1.7 |
14 | normal = (1 << 0), /**< Normal style */ | 16 | ]] |
15 | bold = (1 << 1), /**< Bold style */ | 17 | normal = (1 << 0), [[Normal style]] |
16 | italic = (1 << 2) /**< Oblique style */ | 18 | bold = (1 << 1), [[Bold style]] |
19 | italic = (1 << 2) [[Oblique style]] | ||
17 | } | 20 | } |
18 | 21 | ||
19 | /* XXX: Acutal definition is in C. */ | 22 | /* XXX: Acutal definition is in C. */ |