[EflSharp] Update Circle and efl cs files (#995)
[platform/core/csapi/tizenfx.git] / internals / src / EflSharp / EflSharp / efl / efl_ui_focus_composition.eo.cs
old mode 100644 (file)
new mode 100755 (executable)
index 6b6996d..f0d2c7a
@@ -1,3 +1,4 @@
+#define EFL_BETA
 #pragma warning disable CS1591
 using System;
 using System.Runtime.InteropServices;
@@ -13,6 +14,7 @@ namespace Focus {
 
 /// <summary>This defines the inheriting widget as Composition widget.
 /// A composition widget is a widget that&apos;s the logical parent of another set of widgets which can be used for interaction.</summary>
+/// <remarks>This is a <b>BETA</b> class. It can be modified or removed in the future. Do not use it for product development.</remarks>
 [Efl.Ui.Focus.ICompositionConcrete.NativeMethods]
 [Efl.Eo.BindingEntity]
 public interface IComposition : 
@@ -59,24 +61,25 @@ void Prepare();
     /// If the element is a Efl.Ui.Widget nothing is done and the widget is simply part of the order.</summary>
     /// <value>The order to use</value>
     Eina.List<Efl.Gfx.IEntity> CompositionElements {
-        get ;
-        set ;
+        get;
+        set;
     }
     /// <summary>Set to true if all children should be registered as logicals</summary>
     /// <value><c>true</c> or <c>false</c></value>
     bool LogicalMode {
-        get ;
-        set ;
+        get;
+        set;
     }
 }
 /// <summary>This defines the inheriting widget as Composition widget.
 /// A composition widget is a widget that&apos;s the logical parent of another set of widgets which can be used for interaction.</summary>
-sealed public class ICompositionConcrete :
+/// <remarks>This is a <b>BETA</b> class. It can be modified or removed in the future. Do not use it for product development.</remarks>
+sealed public  class ICompositionConcrete :
     Efl.Eo.EoWrapper
     , IComposition
     
 {
-    ///<summary>Pointer to the native class description.</summary>
+    /// <summary>Pointer to the native class description.</summary>
     public override System.IntPtr NativeClass
     {
         get
@@ -92,7 +95,8 @@ sealed public class ICompositionConcrete :
         }
     }
 
-    /// <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 ICompositionConcrete(ConstructingHandle ch) : base(ch)
     {
@@ -489,3 +493,17 @@ logical_order.Own = false;
 
 }
 
+#if EFL_BETA
+#pragma warning disable CS1591
+public static class Efl_Ui_FocusICompositionConcrete_ExtensionMethods {
+    public static Efl.BindableProperty<Eina.List<Efl.Gfx.IEntity>> CompositionElements<T>(this Efl.Ui.ItemFactory<T> fac, Efl.Csharp.ExtensionTag<Efl.Ui.Focus.IComposition, T>magic = null) where T : Efl.Ui.Focus.IComposition {
+        return new Efl.BindableProperty<Eina.List<Efl.Gfx.IEntity>>("composition_elements", fac);
+    }
+
+    public static Efl.BindableProperty<bool> LogicalMode<T>(this Efl.Ui.ItemFactory<T> fac, Efl.Csharp.ExtensionTag<Efl.Ui.Focus.IComposition, T>magic = null) where T : Efl.Ui.Focus.IComposition {
+        return new Efl.BindableProperty<bool>("logical_mode", fac);
+    }
+
+}
+#pragma warning restore CS1591
+#endif