efl: rename Efl.Gfx.*.* -> Efl.Gfx.*_*
authorXavi Artigas <xavierartigas@yahoo.es>
Wed, 23 May 2018 08:48:21 +0000 (10:48 +0200)
committerWonki Kim <wonki_.kim@samsung.com>
Fri, 1 Jun 2018 01:51:33 +0000 (10:51 +0900)
src/lib/efl/interfaces/efl_gfx_gradient.eo
src/lib/efl/interfaces/efl_gfx_path.eo
src/lib/efl/interfaces/efl_gfx_shape.eo
src/lib/efl/interfaces/efl_gfx_types.eot

index c8d4b3c..311e873 100644 (file)
@@ -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]]
          }
       }
    }
index a6df70d..730ec8b 100644 (file)
@@ -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.]]
    }
 }
index bd3c769..6ad4917 100644 (file)
@@ -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]]
          }
       }
index 7ceb923..8f8292c 100644 (file)
@@ -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.]]
 }