From 88e92a63ed7cd4a6515729f9ca513ea18742b9dc Mon Sep 17 00:00:00 2001 From: Xavi Artigas Date: Wed, 23 May 2018 10:48:21 +0200 Subject: [PATCH] efl: rename Efl.Gfx.*.* -> Efl.Gfx.*_* --- src/lib/efl/interfaces/efl_gfx_gradient.eo | 4 ++-- src/lib/efl/interfaces/efl_gfx_path.eo | 4 ++-- src/lib/efl/interfaces/efl_gfx_shape.eo | 2 +- src/lib/efl/interfaces/efl_gfx_types.eot | 16 ++++++++-------- 4 files changed, 13 insertions(+), 13 deletions(-) diff --git a/src/lib/efl/interfaces/efl_gfx_gradient.eo b/src/lib/efl/interfaces/efl_gfx_gradient.eo index c8d4b3c880..311e873698 100644 --- a/src/lib/efl/interfaces/efl_gfx_gradient.eo +++ b/src/lib/efl/interfaces/efl_gfx_gradient.eo @@ -13,7 +13,7 @@ interface Efl.Gfx.Gradient [[Get the list of color stops.]] } values { - colors: ptr(const(Efl.Gfx.Gradient.Stop)); [[Color stops list]] + colors: ptr(const(Efl.Gfx.Gradient_Stop)); [[Color stops list]] length: uint; [[Length of the list]] } } @@ -27,7 +27,7 @@ interface Efl.Gfx.Gradient ]] } values { - s: Efl.Gfx.Gradient.Spread; [[Spread type to be used]] + s: Efl.Gfx.Gradient_Spread; [[Spread type to be used]] } } } diff --git a/src/lib/efl/interfaces/efl_gfx_path.eo b/src/lib/efl/interfaces/efl_gfx_path.eo index a6df70d756..730ec8ba91 100644 --- a/src/lib/efl/interfaces/efl_gfx_path.eo +++ b/src/lib/efl/interfaces/efl_gfx_path.eo @@ -18,7 +18,7 @@ mixin Efl.Gfx.Path get { } values { - op: ptr(const(Efl.Gfx.Path.Command_Type)); [[Command list]] + op: ptr(const(Efl.Gfx.Path_Command_Type)); [[Command list]] points: ptr(const(double)); [[Point list]] } } @@ -284,6 +284,6 @@ mixin Efl.Gfx.Path } } events { - changed: Efl.Gfx.Path.Change_Event; [[Graphics path was changed.]] + changed: Efl.Gfx.Path_Change_Event; [[Graphics path was changed.]] } } diff --git a/src/lib/efl/interfaces/efl_gfx_shape.eo b/src/lib/efl/interfaces/efl_gfx_shape.eo index bd3c769422..6ad491763c 100644 --- a/src/lib/efl/interfaces/efl_gfx_shape.eo +++ b/src/lib/efl/interfaces/efl_gfx_shape.eo @@ -113,7 +113,7 @@ mixin Efl.Gfx.Shape (Efl.Gfx.Path) get { } 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]] } } diff --git a/src/lib/efl/interfaces/efl_gfx_types.eot b/src/lib/efl/interfaces/efl_gfx_types.eot index 7ceb923a10..8f8292c992 100644 --- a/src/lib/efl/interfaces/efl_gfx_types.eot +++ b/src/lib/efl/interfaces/efl_gfx_types.eot @@ -30,7 +30,7 @@ enum Efl.Gfx.Render_Op { last [[Sentinel value to indicate last enum field during iteration]] } -enum Efl.Gfx.Path.Command_Type { +enum Efl.Gfx.Path_Command_Type { [[These values determine how the points are interpreted in a stream of points. @since 1.14 ]] @@ -66,7 +66,7 @@ enum Efl.Gfx.Join last [[Sentinel value to indicate last enum field during iteration]] } -enum Efl.Gfx.Gradient.Spread +enum Efl.Gfx.Gradient_Spread { [[Specifies how the area outside the gradient area should be filled. $ref efl_gfx_gradient_spread_set() @@ -78,7 +78,7 @@ enum Efl.Gfx.Gradient.Spread last [[Sentinel value to indicate last enum field during iteration]] } -enum Efl.Gfx.Fill.Rule +enum Efl.Gfx.Fill_Rule { [[Type defining how an image content get filled. @since 1.14 @@ -96,7 +96,7 @@ struct Efl.Gfx.Dash { gap: double; [[Distance between two dashes.]] } -struct Efl.Gfx.Gradient.Stop +struct Efl.Gfx.Gradient_Stop { [[Type defining gradient stops. Describes the location and color of a transition point in a gradient. @@ -109,7 +109,7 @@ struct Efl.Gfx.Gradient.Stop a: int; [[The component A color of the gradient stop]] } -struct Efl.Gfx.Stroke.Color +struct Efl.Gfx.Stroke_Color { [[Internal structure for @Efl.Gfx.Stroke.]] r: int; [[The component R color of the stroke]] @@ -127,14 +127,14 @@ struct Efl.Gfx.Stroke scale: double; [[Stroke scale]] width: double; [[Stroke width]] centered: double; [[Stroke centered]] - color: Efl.Gfx.Stroke.Color; [[Stroke color]] + color: Efl.Gfx.Stroke_Color; [[Stroke color]] dash: ptr(Efl.Gfx.Dash); [[Stroke dash]] dash_length: uint; [[Stroke dash length]] cap: Efl.Gfx.Cap; [[Stroke cap]] join: Efl.Gfx.Join; [[Stroke join]] } -struct Efl.Gfx.Shape.Public +struct Efl.Gfx.Shape_Public { [[Public shape]] stroke: Efl.Gfx.Stroke; [[Internal representation as stroke]] @@ -158,7 +158,7 @@ enum Efl.Gfx.Change_Flag all = 0xffff [[all properties got changed]] } -struct Efl.Gfx.Path.Change_Event { +struct Efl.Gfx.Path_Change_Event { what: Efl.Gfx.Change_Flag; [[Indicates what changed.]] }