[EflSharp] Update Circle and efl cs files (#995)
[platform/core/csapi/tizenfx.git] / internals / src / EflSharp / EflSharp / efl / efl_gfx_stack.eo.cs
old mode 100644 (file)
new mode 100755 (executable)
index 85b9686..cccd941
@@ -1,3 +1,4 @@
+#define EFL_BETA
 #pragma warning disable CS1591
 using System;
 using System.Runtime.InteropServices;
@@ -118,8 +119,8 @@ void LowerToBottom();
     /// (Since EFL 1.22)</summary>
     /// <value>The number of the layer to place the object on. Must be between <see cref="Efl.Gfx.Constants.StackLayerMin"/> and <see cref="Efl.Gfx.Constants.StackLayerMax"/>.</value>
     short Layer {
-        get ;
-        set ;
+        get;
+        set;
     }
     /// <summary>Get the Evas object stacked right below <c>obj</c>
     /// This function will traverse layers in its search, if there are objects on layers below the one <c>obj</c> is placed at.
@@ -128,7 +129,7 @@ void LowerToBottom();
     /// (Since EFL 1.22)</summary>
     /// <value>The <see cref="Efl.Gfx.IStack"/> object directly below <c>obj</c>, if any, or <c>null</c>, if none.</value>
     Efl.Gfx.IStack Below {
-        get ;
+        get;
     }
     /// <summary>Get the Evas object stacked right above <c>obj</c>
     /// This function will traverse layers in its search, if there are objects on layers above the one <c>obj</c> is placed at.
@@ -137,17 +138,17 @@ void LowerToBottom();
     /// (Since EFL 1.22)</summary>
     /// <value>The <see cref="Efl.Gfx.IStack"/> object directly below <c>obj</c>, if any, or <c>null</c>, if none.</value>
     Efl.Gfx.IStack Above {
-        get ;
+        get;
     }
 }
 /// <summary>Efl graphics stack interface
 /// (Since EFL 1.22)</summary>
-sealed public class IStackConcrete :
+sealed public  class IStackConcrete :
     Efl.Eo.EoWrapper
     , IStack
     
 {
-    ///<summary>Pointer to the native class description.</summary>
+    /// <summary>Pointer to the native class description.</summary>
     public override System.IntPtr NativeClass
     {
         get
@@ -163,7 +164,8 @@ sealed public class IStackConcrete :
         }
     }
 
-    /// <summary>Constructor to be used when objects are expected to be constructed from native code.</summary>
+    /// <summary>Subclasses should override this constructor if they are expected to be instantiated from native code.
+    /// Do not call this constructor directly.</summary>
     /// <param name="ch">Tag struct storing the native handle of the object being constructed.</param>
     private IStackConcrete(ConstructingHandle ch) : base(ch)
     {
@@ -218,7 +220,7 @@ sealed public class IStackConcrete :
             }
         }
     }
-    ///<summary>Method to raise event StackingChangedEvt.</summary>
+    /// <summary>Method to raise event StackingChangedEvt.</summary>
     public void OnStackingChangedEvt(EventArgs e)
     {
         var key = "_EFL_GFX_ENTITY_EVENT_STACKING_CHANGED";
@@ -750,3 +752,15 @@ sealed public class IStackConcrete :
 
 }
 
+#if EFL_BETA
+#pragma warning disable CS1591
+public static class Efl_GfxIStackConcrete_ExtensionMethods {
+    public static Efl.BindableProperty<short> Layer<T>(this Efl.Ui.ItemFactory<T> fac, Efl.Csharp.ExtensionTag<Efl.Gfx.IStack, T>magic = null) where T : Efl.Gfx.IStack {
+        return new Efl.BindableProperty<short>("layer", fac);
+    }
+
+    
+    
+}
+#pragma warning restore CS1591
+#endif