evas,ecore_con: more struct/enum doc updates

This commit is contained in:
Daniel Kolesa 2015-06-11 16:51:43 +01:00
parent 3c3e52440b
commit 786f848f67
2 changed files with 17 additions and 14 deletions

View File

@ -175,8 +175,8 @@ abstract Ecore.Con.Base (Eo.Base) {
/* FIXME: Should actually be a binbuf. */
struct Ecore_Con_Event_Data_Received {
data: void *; /*@ The data thet got sent. */
size: int; /*@ The length of the data sent. */
data: void *; [[The data thet got sent.]]
size: int; [[The length of the data sent.]]
}
/* TODO

View File

@ -1,19 +1,22 @@
enum Evas.Textgrid.Palette {
/*@ The palette to use for the foreground and background colors.
@since 1.7 */
none, /**< No palette is used */
standard, /**< standard palette (around 16 colors) */
extended, /**< extended palette (at max 256 colors) */
last /**< ignore it */
[[The palette to use for the foreground and background colors.
@since 1.7
]]
none, [[No palette is used]]
standard, [[standard palette (around 16 colors)]]
extended, [[extended palette (at max 256 colors)]]
last [[ignore it]]
}
enum Evas.Textgrid.Font_Style {
/*@ * The style to give to each character of the grid.
* @since 1.7
*/
normal = (1 << 0), /**< Normal style */
bold = (1 << 1), /**< Bold style */
italic = (1 << 2) /**< Oblique style */
[[The style to give to each character of the grid.
@since 1.7
]]
normal = (1 << 0), [[Normal style]]
bold = (1 << 1), [[Bold style]]
italic = (1 << 2) [[Oblique style]]
}
/* XXX: Acutal definition is in C. */