Efl gfx shape: Fix Eolian warnings.

This includes either migrating types to eolian, fixing namespace or
importing extra types.
This commit is contained in:
Tom Hacohen 2016-02-16 14:25:15 +00:00
parent c0ba02e0ab
commit fab9bd38c8
1 changed files with 6 additions and 5 deletions

View File

@ -1,4 +1,5 @@
import eina_types; import eina_types;
import efl_gfx_types;
mixin Efl.Gfx.Shape mixin Efl.Gfx.Shape
{ {
@ -78,7 +79,7 @@ mixin Efl.Gfx.Shape
[[Not Implemented]] [[Not Implemented]]
} }
values { values {
dash: const(Efl_Gfx_Dash) *; dash: const(Efl.Gfx.Dash) *;
length: uint; length: uint;
} }
} }
@ -100,7 +101,7 @@ mixin Efl.Gfx.Shape
]] ]]
} }
values { values {
c: Efl_Gfx_Cap; [[cap style to use, default is EFL_GFX_CAP_BUTT]] c: Efl.Gfx.Cap; [[cap style to use, default is EFL_GFX_CAP_BUTT]]
} }
} }
@property stroke_join { @property stroke_join {
@ -122,7 +123,7 @@ mixin Efl.Gfx.Shape
]] ]]
} }
values { values {
j: Efl_Gfx_Join; [[join style to use, default is EFL_GFX_JOIN_MITER]] j: Efl.Gfx.Join; [[join style to use, default is EFL_GFX_JOIN_MITER]]
} }
} }
@property fill_rule { @property fill_rule {
@ -140,7 +141,7 @@ mixin Efl.Gfx.Shape
]] ]]
} }
values { values {
fill_rule: Efl_Gfx_Fill_Rule; [[The current fill rule of the shape object. fill_rule: Efl.Gfx.Fill.Rule; [[The current fill rule of the shape object.
One of $EFL_GFX_FILL_RULE_WINDING, $EFL_GFX_FILL_RULE_ODD_EVEN]] One of $EFL_GFX_FILL_RULE_WINDING, $EFL_GFX_FILL_RULE_ODD_EVEN]]
} }
} }
@ -161,7 +162,7 @@ mixin Efl.Gfx.Shape
]] ]]
} }
values { values {
op: const(Efl_Gfx_Path_Command) *; [[command list]] op: const(Efl.Gfx.Path.Command_Type) *; [[command list]]
points: const(double) *; [[point list]] points: const(double) *; [[point list]]
} }
} }