Remove the summary for non-browserble API
[platform/core/csapi/tizenfx.git] / src / ElmSharp / ElmSharp / EvasObjectEvent.cs
old mode 100755 (executable)
new mode 100644 (file)
index 96a3716..6799be3
@@ -39,142 +39,177 @@ namespace ElmSharp
         /// Mouse In Event CallbackType.
         /// </summary>
         MouseIn,
+
         /// <summary>
         /// Mouse Out Event CallbackType
         /// </summary>
         MouseOut,
+
         /// <summary>
         /// Mouse Button Down Event CallbackType
         /// </summary>
         MouseDown,
+
         /// <summary>
         /// Mouse Button Up Event CallbackType
         /// </summary>
         MouseUp,
+
         /// <summary>
         /// Mouse Move Event CallbackType
         /// </summary>
         MouseMove,
+
         /// <summary>
         /// Mouse Wheel Event CallbackType
         /// </summary>
         MouseWheel,
+
         /// <summary>
         /// Multi-touch Down Event CallbackType
         /// </summary>
         MultiDown,
+
         /// <summary>
         /// Multi-touch Up Event CallbackType
         /// </summary>
         MultiUp,
+
         /// <summary>
         /// Multi-touch Move Event CallbackType
         /// </summary>
         MultiMove,
+
         /// <summary>
         /// Object Being Freed (Called after Del)
         /// </summary>
         Free,
+
         /// <summary>
         /// Key Press Event CallbackType
         /// </summary>
         KeyDown,
+
         /// <summary>
         /// Key Release Event CallbackType
         /// </summary>
         KeyUp,
+
         /// <summary>
         /// Focus In Event CallbackType
         /// </summary>
         FocusIn,
+
         /// <summary>
         /// Focus Out Event CallbackType
         /// </summary>
         FocusOut,
+
         /// <summary>
         /// Show Event CallbackType
         /// </summary>
         Show,
+
         /// <summary>
         /// Hide Event CallbackType
         /// </summary>
         Hide,
+
         /// <summary>
         /// Move Event CallbackType
         /// </summary>
         Move,
+
         /// <summary>
         /// Resize Event CallbackType
         /// </summary>
         Resize,
+
         /// <summary>
         /// Restack Event CallbackType
         /// </summary>
         Restack,
+
         /// <summary>
         /// Object Being Deleted (called before Free)
         /// </summary>
         Del,
+
         /// <summary>
         /// Hold Event CallbackType, Informational purpose event to indicate something
         /// </summary>
         Hold,
+
         /// <summary>
         /// Size hints changed Event CallbackType
         /// </summary>
         ChangedSizeHints,
+
         /// <summary>
         /// Image has been preloaded
         /// </summary>
         ImagePreloaded,
+
         /// <summary>
         /// Canvas got focus as a whole
         /// </summary>
         CanvasFocusIn,
+
         /// <summary>
         /// Canvas lost focus as a whole
         /// </summary>
         CanvasFocusOut,
+
         /// <summary>
         /// Called just before rendering is updated on the canvas target
         /// </summary>
         RenderFlushPre,
+
         /// <summary>
         /// Called just after rendering is updated on the canvas target
         /// </summary>
         RenderFlushPost,
+
         /// <summary>
         /// Canvas object got focus
         /// </summary>
         CanvasObjectFocusIn,
+
         /// <summary>
         /// Canvas object lost focus
         /// </summary>
         CanvasObjectFocusOut,
+
         /// <summary>
         /// Image data has been unloaded (by some mechanism in Evas that throw out original image data)
         /// </summary>
         ImageUnloaded,
+
         /// <summary>
         /// Called just before rendering starts on the canvas target
         /// </summary>
         RenderPre,
+
         /// <summary>
         /// Called just after rendering stops on the canvas target
         /// </summary>
         RenderPost,
+
         /// <summary>
         /// Image size is changed
         /// </summary>
         ImageResize,
+
         /// <summary>
         /// Devices added, removed or changed on canvas
         /// </summary>
         DeviceChanged,
+
         /// <summary>
         /// Axis is changed
         /// </summary>
         AxisUpdate,
+
         /// <summary>
         /// Canvas Viewport size is changed
         /// </summary>
@@ -212,13 +247,7 @@ namespace ElmSharp
         public EvasObjectEvent(EvasObject sender, EvasObjectCallbackType type, SmartEventInfoParser parser) : this(sender, sender.Handle, type, parser)
         {
         }
-        /// <summary>
-        /// Creates and initializes a new instance of the EvasObjectEvent.
-        /// </summary>
-        /// <param name="sender">EvasObject class belong to</param>
-        /// <param name="handle">EvasObject class's handle</param>
-        /// <param name="type">EvasObjectCallbackType</param>
-        /// <param name="parser">SmartEventInfoParser</param>
+
         [EditorBrowsableAttribute(EditorBrowsableState.Never)]
         public EvasObjectEvent(EvasObject sender, IntPtr handle, EvasObjectCallbackType type, SmartEventInfoParser parser)
         {
@@ -228,6 +257,7 @@ namespace ElmSharp
             _parser = parser;
             sender.AddToEventLifeTracker(this);
         }
+
         /// <summary>
         /// Creates and initializes a new instance of the EvasObjectEvent.
         /// </summary>
@@ -330,7 +360,9 @@ namespace ElmSharp
     public class EvasObjectEvent : IInvalidatable
     {
         private EvasObjectEvent<EventArgs> _evasObjectEvent;
+
         private event EventHandler _handlers;
+
         private bool _disposed = false;
 
         /// <summary>
@@ -341,12 +373,7 @@ namespace ElmSharp
         public EvasObjectEvent(EvasObject sender, EvasObjectCallbackType type) : this(sender, sender.Handle, type)
         {
         }
-        /// <summary>
-        /// Creates and initializes a new instance of the EvasObjectEvent.
-        /// </summary>
-        /// <param name="sender">EvasObject class belong to</param>
-        /// <param name="handle">EvasObject class's handle</param>
-        /// <param name="type">EvasObjectCallbackTypes</param>
+
         [EditorBrowsableAttribute(EditorBrowsableState.Never)]
         public EvasObjectEvent(EvasObject sender, IntPtr handle, EvasObjectCallbackType type)
         {
@@ -416,4 +443,4 @@ namespace ElmSharp
             _evasObjectEvent.MakeInvalidate();
         }
     }
-}
+}
\ No newline at end of file