eolian: convert all of cedric's tabs to spaces in .eo files
authorMike Blumenkrantz <zmike@osg.samsung.com>
Mon, 12 Feb 2018 17:56:31 +0000 (12:56 -0500)
committerWonki Kim <wonki_.kim@samsung.com>
Thu, 5 Apr 2018 18:05:30 +0000 (03:05 +0900)
40 files changed:
src/lib/ecore/efl_loop_fd.eo
src/lib/ecore/efl_loop_timer.eo
src/lib/ecore/efl_promise.eo
src/lib/ector/cairo/ector_cairo_surface.eo
src/lib/ector/cairo/ector_renderer_cairo.eo
src/lib/ector/ector_renderer.eo
src/lib/ector/ector_renderer_shape.eo
src/lib/ector/gl/ector_gl_surface.eo
src/lib/ector/gl/ector_renderer_gl.eo
src/lib/ector/software/ector_renderer_software.eo
src/lib/efl/interfaces/efl_input_device.eo
src/lib/efl/interfaces/efl_io_reader.eo
src/lib/efl/interfaces/efl_io_writer.eo
src/lib/efl/interfaces/efl_pack_table.eo
src/lib/efl/interfaces/efl_text_style.eo
src/lib/eio/efl_io_manager.eo
src/lib/elementary/efl_access.eo
src/lib/elementary/efl_access_component.eo
src/lib/elementary/efl_access_text.eo
src/lib/elementary/efl_access_value.eo
src/lib/elementary/efl_ui_box_flow.eo
src/lib/elementary/efl_ui_image_zoomable.eo
src/lib/elementary/efl_ui_layout_part_box.eo
src/lib/elementary/efl_ui_layout_part_table.eo
src/lib/elementary/efl_ui_multibuttonentry.eo
src/lib/elementary/efl_ui_nstate.eo
src/lib/elementary/efl_ui_pan.eo
src/lib/elementary/efl_ui_scroll_manager.eo
src/lib/elementary/efl_ui_spin_button.eo
src/lib/elementary/elm_code_widget.eo
src/lib/elementary/elm_ctxpopup_item.eo
src/lib/elementary/elm_interface_fileselector.eo
src/lib/elementary/elm_interface_scrollable.eo
src/lib/elementary/elm_pan.eo
src/lib/elementary/elm_widget_item.eo
src/lib/evas/canvas/efl_canvas_filter_internal.eo
src/lib/evas/canvas/efl_vg_container.eo
src/lib/evas/canvas/efl_vg_shape.eo
src/lib/evas/canvas/evas_canvas.eo
src/lib/evas/canvas/evas_text.eo

index b817c9e..18847ea 100644 (file)
@@ -12,25 +12,25 @@ class Efl.Loop.Fd (Efl.Loop.Consumer)
    methods {
       @property fd {
          [[Defines which file descriptor to watch. If it is a file, use file_fd variant.]]
-        set {
-           [[Defines the fd to watch.]]
-        }
-        get {
-        }
-        values {
-           fd: int; [[The file descriptor.]]
-        }
+    set {
+       [[Defines the fd to watch.]]
+    }
+    get {
+    }
+    values {
+       fd: int; [[The file descriptor.]]
+    }
       }
       @property fd_file {
          [[Defines which file descriptor to watch when watching a file.]]
-        set {
-           [[Defines the fd to watch on.]]
-        }
-        get {
-        }
-        values {
-           fd: int; [[The file descriptor.]]
-        }
+    set {
+       [[Defines the fd to watch on.]]
+    }
+    get {
+    }
+    values {
+       fd: int; [[The file descriptor.]]
+    }
       }
    }
    events {
index 1255dc2..8f040f4 100644 (file)
@@ -45,7 +45,7 @@ class Efl.Loop.Timer (Efl.Loop.Consumer)
       loop_reset {
          [[This effectively resets a timer but based on the time when this iteration of the main loop started.
            @since 1.18
-        ]]
+    ]]
       }
       delay {
          [[Adds a delay to the next occurrence of a timer.
index bed53b3..910bb45 100644 (file)
@@ -9,20 +9,20 @@ class Efl.Promise (Efl.Loop.Consumer)
 
            The progress is not stored and when the function returns it will not be accessed
            anymore. The pointer is owned by the caller and will remain so after the return
-          of the function call.
-        ]]
+      of the function call.
+    ]]
          params {
             @in p: const(void_ptr); [[Progress to be set]]
-        }
+    }
       }
       @property future {
          [[Requests a new future linked to this promise.
 
-          Efl_Future are optional and will be automatically deleted if no callbacks have
-          been set before the next iteration of the main loop.
-        ]]
+      Efl_Future are optional and will be automatically deleted if no callbacks have
+      been set before the next iteration of the main loop.
+    ]]
          get {
-           [[The returned new future.]]
+       [[The returned new future.]]
          }
          values {
             f: future<void_ptr, void_ptr>; [[Returns a future where the value will be set by calling value_set whilst the progress is 
@@ -30,28 +30,28 @@ class Efl.Promise (Efl.Loop.Consumer)
          }
       }
       @property value {
-        [[The value expected by all connected future.]]
+          [[The value expected by all connected future.]]
          set {
-           [[
+       [[
               This function can be called only once. You cannot call #failed.set after doing so.
               The value will be owned by the promise until it's destroyed. It will be cleaned
               when the promise and all futures depending on it are destroyed.
             ]]
-        }
-        values {
-           v: void_ptr; [[The pointer to the value.]]
-           free_cb: __builtin_free_cb; [[The function to call to free the value.]]
-        }
+    }
+    values {
+       v: void_ptr; [[The pointer to the value.]]
+       free_cb: __builtin_free_cb; [[The function to call to free the value.]]
+    }
       }
       @property failed {
          [[Defines the failure state of this promise.]]
-        set {
-           [[
+    set {
+       [[
               This function can be called only once and you cannot call #value.set after doing so.
-           ]]
-        }
+       ]]
+    }
          values {
-           err: Eina.Error; [[The reason for failure of this promise.]]
+       err: Eina.Error; [[The reason for failure of this promise.]]
          }
       }
       connect {
@@ -59,11 +59,11 @@ class Efl.Promise (Efl.Loop.Consumer)
 
            This helper will automatically trigger #value.set or #failed.set when the future
            succeeds or fails respectively, with the value provided by the future.
-        ]]
-        params {
-           @in f: future<void_ptr, void_ptr>; [[The future to connect to this promise.]]
-        }
-        return: bool; [[Returns $false if unable to set up the connection.]]
+    ]]
+    params {
+       @in f: future<void_ptr, void_ptr>; [[The future to connect to this promise.]]
+    }
+    return: bool; [[Returns $false if unable to set up the connection.]]
       }
    }
    events {
index 7967c4d..76f2c82 100644 (file)
@@ -11,15 +11,15 @@ class Ector.Cairo.Surface (Efl.Object, Ector.Surface)
       @property context {
          [[Cairo context]]
          set {
-        }
-        get {
-        }
-        values {
-           ctx: ptr(cairo_t); [[Cairo context]]
-        }
+    }
+    get {
+    }
+    values {
+       ctx: ptr(cairo_t); [[Cairo context]]
+    }
       }
       symbol_get {
-       [[Lookup symbal name in cairo lib]]
+   [[Lookup symbal name in cairo lib]]
          return: void_ptr @warn_unused; [[Pointer to cairo lib with this symbol]]
          params {
             @in name: string; [[Symbol name]]
index 75d4757..a0ee972 100644 (file)
@@ -3,7 +3,7 @@ abstract Ector.Renderer.Cairo (Ector.Renderer)
    [[Ector cairo renderer abstract class]]
    methods {
       fill @pure_virtual {
-        [[Fill operation]]
+          [[Fill operation]]
          return: bool; [[$true on success, $false otherwise]]
          params {
             @in mul_col: uint; [[Premultiplied color]]
index 451c77c..03b1d36 100644 (file)
@@ -18,45 +18,45 @@ abstract Ector.Renderer (Efl.Object)
       @property surface {
          [[Surface associated with this renderer]]
          set {
-           [[Do not use.]]
-        }
-        get {
-           [[Gets the surface associated with this renderer. Can not be set.]]
-        }
-        values {
-           s: Ector.Surface; [[Associated surface]]
-        }
+       [[Do not use.]]
+    }
+    get {
+       [[Gets the surface associated with this renderer. Can not be set.]]
+    }
+    values {
+       s: Ector.Surface; [[Associated surface]]
+    }
       }
       @property transformation {
-        [[Transformation property]]
+          [[Transformation property]]
          set {
-        }
-        get {
-        }
-        values {
-           @cref m: Eina.Matrix3; [[Transformation matrix]]
-        }
+    }
+    get {
+    }
+    values {
+       @cref m: Eina.Matrix3; [[Transformation matrix]]
+    }
       }
       @property origin {
-        [[Renderer origin]]
+          [[Renderer origin]]
          set {
-        }
-        get {
-        }
-        values {
-           x: double; [[X coordinate]]
-           y: double; [[Y coordinate]]
-        }
+    }
+    get {
+    }
+    values {
+       x: double; [[X coordinate]]
+       y: double; [[Y coordinate]]
+    }
       }
       @property visibility {
          [[The given Ector renderer can be visible or invisible.]]
          set {
-        }
-        get {
-        }
-        values {
-           v: bool; [[$true to make the object visible, $false otherwise]]
-        }
+    }
+    get {
+    }
+    values {
+       v: bool; [[$true to make the object visible, $false otherwise]]
+    }
       }
       @property color {
          [[Retrieves the general/main color of the given Ector renderer.
@@ -73,61 +73,61 @@ abstract Ector.Renderer (Efl.Object)
          set {
          }
          get {
-        }
-        values {
+    }
+    values {
             r: int; [[The red component of the given color.]]
             g: int; [[The green component of the given color.]]
             b: int; [[The blue component of the given color.]]
             a: int; [[The alpha component of the given color.]]
-        }
+    }
       }
       @property mask {
-        [[Rendering mask]]
+          [[Rendering mask]]
          set {
-        }
-        get {
-        }
-        values {
-           r: Ector.Renderer; [[Rendering mask]]
-        }
+    }
+    get {
+    }
+    values {
+       r: Ector.Renderer; [[Rendering mask]]
+    }
       }
       @property quality {
          [[Quality of the renderer]]
          set {
-        }
-        get {
-        }
-        values {
-           q: Ector.Quality; [[Quality of the renderer]]
-        }
+    }
+    get {
+    }
+    values {
+       q: Ector.Quality; [[Quality of the renderer]]
+    }
       }
       @property crc {
          [[Cyclic redundancy check]]
          get {
             return: uint; [[CRC value]]
-        }
+    }
       }
       bounds_get @pure_virtual {
          [[Retrieves the bounds of the renderer]]
-        params {
-           @out r: Eina.Rect; [[Bounds as @Eina.Rect]]
-        }
+    params {
+       @out r: Eina.Rect; [[Bounds as @Eina.Rect]]
+    }
       }
       draw @pure_virtual {
-        [[Actual draw operation]]
+          [[Actual draw operation]]
          return: bool; [[$true on success, $false otherwise]]
-        params {
-           @in op: Efl.Gfx.Render_Op; [[Renderer operation]]
-           @in clips: array<ptr(Eina.Rect)>; [[Array of @Eina.Rect clip]]
-           @in mul_col: uint; [[Premultiplied color]]
-        }
+    params {
+       @in op: Efl.Gfx.Render_Op; [[Renderer operation]]
+       @in clips: array<ptr(Eina.Rect)>; [[Array of @Eina.Rect clip]]
+       @in mul_col: uint; [[Premultiplied color]]
+    }
       }
       prepare {
-        [[Prepare for rendering]]
+          [[Prepare for rendering]]
          return: bool; [[$true on success, $false otherwise]]
       }
       done @pure_virtual {
-        [[Done with rendering]]
+          [[Done with rendering]]
          return: bool; [[$true on success, $false otherwise]]
       }
    }
index 73d1676..1a1a9ae 100644 (file)
@@ -6,34 +6,34 @@ mixin Ector.Renderer.Shape (Efl.Gfx.Shape)
    eo_prefix: ector_renderer_shape;
    methods {
       @property fill {
-        [[Fill property]]
+          [[Fill property]]
          set {
-        }
-        get {
-        }
-        values {
-           r: const(Ector.Renderer); [[Ector fill renderer]]
-        }
+    }
+    get {
+    }
+    values {
+       r: const(Ector.Renderer); [[Ector fill renderer]]
+    }
       }
       @property stroke_fill {
-        [[Stroke fill property]]
+          [[Stroke fill property]]
          set {
-        }
-        get {
-        }
-        values {
-           r: const(Ector.Renderer); [[Ector stroke fill renderer]]
-        }
+    }
+    get {
+    }
+    values {
+       r: const(Ector.Renderer); [[Ector stroke fill renderer]]
+    }
       }
       @property stroke_marker {
-        [[Stroke marker property]]
+          [[Stroke marker property]]
          set {
-        }
-        get {
-        }
-        values {
-           r: const(Ector.Renderer); [[Ector stroke marker renderer]]
-        }
+    }
+    get {
+    }
+    values {
+       r: const(Ector.Renderer); [[Ector stroke marker renderer]]
+    }
       }
    }
 }
index 798befa..034a27a 100644 (file)
@@ -13,22 +13,22 @@ class Ector.GL.Surface (Ector.GL.Buffer, Ector.Surface)
          }
       }
       push {
-        [[Push surface to GPU]]
+          [[Push surface to GPU]]
          return: bool; [[$true on success, $false otherwise]]
-        params {
-           @in flags: uint64; [[GL flags]]
-           @in vertex: ptr(GLshort); [[GL vertex]]
-           @in vertex_count: uint; [[GL vertex count]]
-           @in mul_col: uint; [[Premultiplied color]]
-        }
+    params {
+       @in flags: uint64; [[GL flags]]
+       @in vertex: ptr(GLshort); [[GL vertex]]
+       @in vertex_count: uint; [[GL vertex count]]
+       @in mul_col: uint; [[Premultiplied color]]
+    }
       }
       state_define {
-        [[Define state]]
+          [[Define state]]
          return: bool; [[$true on success, $false otherwise]]
-        params {
+    params {
             @in op: Efl.Gfx.Render_Op; [[Render operation]]
-           @in clips: array<ptr(Eina.Rect)>; [[Array of @Eina.Rect clip]]
-        }
+       @in clips: array<ptr(Eina.Rect)>; [[Array of @Eina.Rect clip]]
+    }
       }
    }
    implements {
index 592b595..18b305b 100644 (file)
@@ -5,14 +5,14 @@ abstract Ector.Renderer.GL (Ector.Renderer)
    [[Ector GL renderer abstract class]]
    methods {
       fill @pure_virtual {
-        [[Fill operation]]
+          [[Fill operation]]
          return: bool; [[$true on success, $false otherwise]]
-        params {
-           @in flags: uint64; [[GL flags]]
-           @in vertex: ptr(GLshort); [[GL vertex]]
-           @in vertex_count: uint; [[GL vertex count]]
-           @in mul_col: uint; [[Premultiplied color]]
-        }
+    params {
+       @in flags: uint64; [[GL flags]]
+       @in vertex: ptr(GLshort); [[GL vertex]]
+       @in vertex_count: uint; [[GL vertex count]]
+       @in mul_col: uint; [[Premultiplied color]]
+    }
       }
    }
    implements {
index 1677210..4d226fc 100644 (file)
@@ -4,7 +4,7 @@ class Ector.Renderer.Software (Ector.Renderer)
    data: null;
    methods {
       fill @pure_virtual {
-        [[Renderer fill operation]]
+          [[Renderer fill operation]]
          return: bool; [[$true on success, $false otherwise]]
       }
    }
index 9da6a33..94a67bf 100644 (file)
@@ -52,13 +52,13 @@ class Efl.Input.Device (Efl.Object)
    ]]
    methods {
       @property device_type {
-        [[Device type property]]
+          [[Device type property]]
          values {
             klass: Efl.Input.Device.Type; [[Input device class]]
          }
       }
       @property source {
-        [[Device source property]]
+          [[Device source property]]
          values {
             src: Efl.Input.Device; [[Input device]]
          }
index 1b3cc6d..6a6e5ea 100644 (file)
@@ -40,7 +40,7 @@ interface Efl.Io.Reader {
             set @protected { }
             values {
                 can_read: bool; [[$true if it can be read without blocking or failing, $false
-                                 otherwise]]
+                        otherwise]]
             }
         }
 
index cba6ff3..f640e73 100644 (file)
@@ -41,7 +41,7 @@ interface Efl.Io.Writer {
             set @protected { }
             values {
                 can_write: bool; [[$true if it can be written without blocking or failure, $false
-                                  otherwise]]
+                         otherwise]]
             }
         }
     }
index c79bd82..ff744ec 100644 (file)
@@ -61,7 +61,7 @@ interface Efl.Pack.Table (Efl.Pack.Linear)
          }
       }
       @property table_columns {
-        [[Gird columns property]]
+          [[Gird columns property]]
          set { [[Specifies limit for linear adds - if direction is horizontal]] }
          get {}
          values {
@@ -69,7 +69,7 @@ interface Efl.Pack.Table (Efl.Pack.Linear)
          }
       }
       @property table_rows {
-        [[Table rows property]]
+          [[Table rows property]]
          set { [[Specifies limit for linear adds - if direction is vertical]] }
          get {}
          values {
index 91e3372..70b95a0 100644 (file)
@@ -76,7 +76,7 @@ interface Efl.Text.Style {
       }
 
       @property backing_type {
-        [[Enable or disable backing type]]
+          [[Enable or disable backing type]]
          values
          {
             type: Efl.Text.Style.Backing_Type; [[Backing type]]
@@ -84,7 +84,7 @@ interface Efl.Text.Style {
       }
 
       @property backing_color {
-        [[Backing color]]
+          [[Backing color]]
          values
          {
             r: ubyte; [[Red component]]
index 99b4c6f..d81edc9 100644 (file)
@@ -32,7 +32,7 @@ class Efl.Io.Manager (Efl.Loop.Consumer)
       ]]
       params {
         @in path: string; [[Path we want to list entries for]]
-       paths: EflIoPath; [[Callback called for each packet of files found]]
+   paths: EflIoPath; [[Callback called for each packet of files found]]
       }
       return: ptr(Eina.Future) @owned; [[Amount of files found during the listing of the directory]]
     }
@@ -60,7 +60,7 @@ class Efl.Io.Manager (Efl.Loop.Consumer)
       [[Lists all extended attributes asynchronously.]]
       params {
          @in path: string; [[Path we want to list entries for]]
-        paths: EflIoPath; [[Callback called for each packet of extended attributes found.]]
+    paths: EflIoPath; [[Callback called for each packet of extended attributes found.]]
       }
       return: ptr(Eina.Future) @owned; [[Amount of extended attributes found]]
     }
index f0b491c..5664f8a 100644 (file)
@@ -546,7 +546,7 @@ mixin Efl.Access (Efl.Interface, Efl.Object)
          }
       }
       event_emit @class @protected @beta {
-        [[Emit event]]
+          [[Emit event]]
          params {
             @in accessible: Efl.Access; [[Accessibility object.]]
             @cref event: Efl.Event.Description; [[Accessibility event type.]]
index 3850a67..e9c40e6 100644 (file)
@@ -74,7 +74,7 @@ mixin Efl.Access.Component ()
          }
       }
       contains @protected @beta {
-        [[Contains accessible widget]]
+          [[Contains accessible widget]]
          params {
             screen_coords: bool; [[If $true x and y values will be relative to
                                    screen origin, otherwise relative to canvas]]
index 2fd8230..7e04fac 100644 (file)
@@ -85,7 +85,7 @@ interface Efl.Access.Text ()
          }
       }
       @property caret_offset @protected @beta {
-        [[Caret offset property]]
+          [[Caret offset property]]
          get {
             [[Gets offset position of caret (cursor)]]
          }
@@ -123,7 +123,7 @@ interface Efl.Access.Text ()
          }
       }
       @property default_attributes @protected @beta {
-        [[Default attributes]]
+          [[Default attributes]]
          get {
          }
          values {
@@ -131,7 +131,7 @@ interface Efl.Access.Text ()
          }
       }
       @property character_extents @protected @beta {
-        [[Character extents]]
+          [[Character extents]]
          get {
             return: bool; [[$true if character extents, $false otherwise]]
          }
@@ -144,7 +144,7 @@ interface Efl.Access.Text ()
          }
       }
       @property character_count @protected @beta {
-        [[Character count]]
+          [[Character count]]
          get {
          }
          values {
@@ -152,7 +152,7 @@ interface Efl.Access.Text ()
          }
       }
       @property offset_at_point @protected @beta {
-        [[Offset at given point]]
+          [[Offset at given point]]
          get {
          }
          keys {
@@ -165,7 +165,7 @@ interface Efl.Access.Text ()
          }
       }
       @property bounded_ranges @protected @beta {
-        [[Bounded ranges]]
+          [[Bounded ranges]]
          get {
          }
          keys {
@@ -179,7 +179,7 @@ interface Efl.Access.Text ()
          }
       }
       @property range_extents @protected @beta {
-        [[Range extents]]
+          [[Range extents]]
          get {
             return: bool; [[$true if range extents, $false otherwise]]
          }
index 4a7f676..703f18b 100644 (file)
@@ -3,7 +3,7 @@ interface Efl.Access.Value ()
    [[Elementary Access value interface]]
    methods {
       @property value_and_text @protected @beta {
-        [[Value and text property]]
+          [[Value and text property]]
          get {
             [[Gets value displayed by a accessible widget.]]
          }
index a946998..fa3ac14 100644 (file)
@@ -3,7 +3,7 @@ class Efl.Ui.Box_Flow (Efl.Ui.Box, Efl.Pack.Layout)
    [[A custom layout engine for @Efl.Ui.Box.]]
    methods {
       @property box_flow_homogenous {
-        [[Box flow homogenous property]]
+          [[Box flow homogenous property]]
          set {}
          get {}
          values {
@@ -11,7 +11,7 @@ class Efl.Ui.Box_Flow (Efl.Ui.Box, Efl.Pack.Layout)
          }
       }
       @property box_flow_max_size {
-        [[Box flow maximum size property]]
+          [[Box flow maximum size property]]
          set {}
          get {}
          values {
index 789457c..32e2025 100644 (file)
@@ -68,8 +68,8 @@ class Efl.Ui.Image_Zoomable (Efl.Ui.Widget, Efl.Ui.Image, Efl.Ui.Zoom,
       Efl.Orientation.flip { get; set; }
       Efl.Layout.Group.group_size_min { get; }
       Efl.Layout.Group.group_size_max { get; }
-         Efl.Layout.Signal.signal_callback_add;
-         Efl.Layout.Signal.signal_callback_del;
+     Efl.Layout.Signal.signal_callback_add;
+     Efl.Layout.Signal.signal_callback_del;
       //Efl.Canvas.Layout_Group.group_data { get; }
    }
    events {
index 52f6884..215bee7 100644 (file)
@@ -10,7 +10,7 @@ class Efl.Ui.Layout.Part.Box (Efl.Object, Efl.Pack.Linear,
    methods {
       /* FIXME: Remove this. */
       @property real_part @protected {
-        [[Real part property]]
+          [[Real part property]]
          set {}
          values {
             layout: Efl.Object; [[Real part object]]
index a408128..adef75a 100644 (file)
@@ -9,7 +9,7 @@ class Efl.Ui.Layout.Part.Table (Efl.Object, Efl.Pack.Table)
    methods {
       /* FIXME: Remove this. */
       @property real_part @protected {
-        [[Real part property]]
+          [[Real part property]]
          set {}
          values {
             layout: Efl.Object; [[Real part object]]
index 0d97197..57d3cbe 100644 (file)
@@ -29,7 +29,7 @@ class Efl.Ui.Multibuttonentry (Efl.Ui.Layout, Efl.Ui.Clickable, Efl.Ui.Format)
          }
          values {
             expanded: bool; [[The value of expanded state. Set this to $true for expanded state. Set
-                            this to $false for single line state.]]
+                       this to $false for single line state.]]
          }
       }
       @property items {
index 5780ded..baa9733 100644 (file)
@@ -6,7 +6,7 @@ class Efl.Ui.Nstate(Efl.Ui.Button)
          [[Activate widget]]
       }
       @property count {
-        [[Maximum number of states]]
+          [[Maximum number of states]]
          set {
          }
          get {
index 5648a85..af1cc81 100644 (file)
@@ -4,7 +4,7 @@ class Efl.Ui.Pan (Efl.Canvas.Group,
    [[Elementary pan class]]
    methods {
       @property pan_position {
-        [[Position]]
+    [[Position]]
          set {
          }
          get {
@@ -14,27 +14,27 @@ class Efl.Ui.Pan (Efl.Canvas.Group,
          }
       }
       @property content_size {
-        [[Content size]]
+    [[Content size]]
          get {
          }
          values {
-           size: Eina.Size2D;
+       size: Eina.Size2D;
          }
       }
       @property pan_position_min {
-        [[The minimal position to scroll]]
+    [[The minimal position to scroll]]
          get {
          }
          values {
-           pos: Eina.Position2D;
+       pos: Eina.Position2D;
          }
       }
       @property pan_position_max {
-        [[The maximal position to scroll]]
+    [[The maximal position to scroll]]
          get {
          }
          values {
-           pos: Eina.Position2D;
+       pos: Eina.Position2D;
          }
       }
    }
index 462b964..f7a34df 100644 (file)
@@ -8,12 +8,12 @@ class Efl.Ui.Scroll.Manager (Efl.Object,
    eo_prefix: efl_ui_scroll_manager;
    methods {
       @property pan @protected {
-        [[This is the internal canvas object managed by scroll manager.
-                
-          This property is protected as it is meant for scrollable object
-          implementations only, to set and access the internal canvas object.
-          If pan is set to NULL, scrolling does not work.
-        ]]
+    [[This is the internal canvas object managed by scroll manager.
+       
+      This property is protected as it is meant for scrollable object
+      implementations only, to set and access the internal canvas object.
+      If pan is set to NULL, scrolling does not work.
+    ]]
          set {
          }
          values {
index 1bf2f2a..a40b15b 100644 (file)
@@ -1,5 +1,5 @@
 class Efl.Ui.Spin_Button (Efl.Ui.Spin, Efl.Ui.Focus.Composition,
-                                 Efl.Access.Value, Efl.Access.Widget.Action)
+                        Efl.Access.Value, Efl.Access.Widget.Action)
 {
    [[A Button Spin.
 
index 63a6e84..0d51c1b 100644 (file)
@@ -194,7 +194,7 @@ class Elm.Code_Widget (Efl.Ui.Layout, Efl.Access.Text)
          }
       }
       line_refresh {
-        [[Refresh code line in widget]]
+          [[Refresh code line in widget]]
          params {
             line: ptr(Elm_Code_Line); [[The line to refresh.]]
          }
@@ -207,7 +207,7 @@ class Elm.Code_Widget (Efl.Ui.Layout, Efl.Access.Text)
          return: bool; [[$true if the line specified is currently visible within the scroll region.]]
       }
       lines_visible_get {
-        [[Get the number of code lines currently visible in the widget]]
+          [[Get the number of code lines currently visible in the widget]]
          return: uint; [[the number of lines currently visible in the widget.]]
       }
       position_at_coordinates_get {
@@ -234,11 +234,11 @@ class Elm.Code_Widget (Efl.Ui.Layout, Efl.Access.Text)
       }
 
       text_left_gutter_width_get {
-        [[Get the column width of the gutter]]
+          [[Get the column width of the gutter]]
          return: int; [[The current column width of the gutter for the widget.]]
       }
       text_between_positions_get {
-        [[Get text between given positions]]
+          [[Get text between given positions]]
          params {
             start_line: uint; [[The line of the first character to get]]
             start_col: uint; [[The widget column of the first character to get]]
@@ -256,7 +256,7 @@ class Elm.Code_Widget (Efl.Ui.Layout, Efl.Access.Text)
       }
 
       line_text_column_width_to_position {
-        [[Get text column width at given position]]
+          [[Get text column width at given position]]
          params {
             line: ptr(Elm_Code_Line); [[Code line]]
             position: uint; [[Code position]]
@@ -264,14 +264,14 @@ class Elm.Code_Widget (Efl.Ui.Layout, Efl.Access.Text)
          return: uint; [[Text column width]]
       }
       line_text_column_width_get {
-        [[Get text column width for code line]]
+          [[Get text column width for code line]]
          params {
             line: ptr(Elm_Code_Line); [[Code line]]
          }
          return: uint; [[Text column width]]
       }
       line_text_position_for_column_get {
-        [[Get position from column]]
+          [[Get position from column]]
          params {
             line: ptr(Elm_Code_Line); [[Code line]]
             column: uint; [[Column]]
@@ -279,7 +279,7 @@ class Elm.Code_Widget (Efl.Ui.Layout, Efl.Access.Text)
          return: uint; [[Position]]
       }
       text_tabwidth_at_column_get {
-        [[Get tabwidth for column]]
+          [[Get tabwidth for column]]
          params {
             column: uint; [[Column]]
          }
index 481c98b..f8ad810 100644 (file)
@@ -6,7 +6,7 @@ class Elm.Ctxpopup.Item(Elm.Widget.Item, Efl.Ui.Item, Efl.Access.Widget.Action,
    eo_prefix: elm_obj_ctxpopup_item;
    methods {
       init {
-        [[Init context popup item]]
+          [[Init context popup item]]
          params {
             func: Evas_Smart_Cb @nullable; [[Smart callback function]]
             data: const(void_ptr) @optional; [[Data pointer]]
index 3a8e814..27cec44 100644 (file)
@@ -139,7 +139,7 @@ interface Elm.Interface.Fileselector ()
          }
       }
       @property current_name {
-        [[ Current name property]]
+          [[ Current name property]]
          set {
          }
          get {
index 7c824a9..a8f14a9 100644 (file)
@@ -105,7 +105,7 @@ mixin Elm.Interface_Scrollable(Efl.Ui.Scrollable, Efl.Ui.Focus.Manager.Sub, Efl.
          }
       }
       @property momentum_animator_disabled {
-        [[Momentum animator]]
+          [[Momentum animator]]
          set {
          }
          get {
@@ -186,7 +186,7 @@ mixin Elm.Interface_Scrollable(Efl.Ui.Scrollable, Efl.Ui.Focus.Manager.Sub, Efl.
          }
       }
       @property bounce_animator_disabled {
-        [[Bounce animator]]
+          [[Bounce animator]]
          set {
          }
          get {
@@ -196,7 +196,7 @@ mixin Elm.Interface_Scrollable(Efl.Ui.Scrollable, Efl.Ui.Focus.Manager.Sub, Efl.
          }
       }
       @property page_scroll_limit {
-        [[Page scroll limit]]
+          [[Page scroll limit]]
          set {
          }
          get {
@@ -230,7 +230,7 @@ mixin Elm.Interface_Scrollable(Efl.Ui.Scrollable, Efl.Ui.Focus.Manager.Sub, Efl.
          }
       }
       @property paging {
-        [[Pagin property]]
+          [[Pagin property]]
          set {
          }
          get {
@@ -264,7 +264,7 @@ mixin Elm.Interface_Scrollable(Efl.Ui.Scrollable, Efl.Ui.Focus.Manager.Sub, Efl.
          }
       }
       @property step_size {
-        [[Step size]]
+          [[Step size]]
          set {
          }
          get {
@@ -312,7 +312,7 @@ mixin Elm.Interface_Scrollable(Efl.Ui.Scrollable, Efl.Ui.Focus.Manager.Sub, Efl.
          }
       }
       @property freeze {
-        [[Freeze property]]
+          [[Freeze property]]
          set {
          }
          values {
@@ -368,7 +368,7 @@ mixin Elm.Interface_Scrollable(Efl.Ui.Scrollable, Efl.Ui.Focus.Manager.Sub, Efl.
          }
       }
       @property extern_pan {
-        [[Extern pan]]
+          [[Extern pan]]
          set {
          }
          values {
@@ -384,7 +384,7 @@ mixin Elm.Interface_Scrollable(Efl.Ui.Scrollable, Efl.Ui.Focus.Manager.Sub, Efl.
          }
       }
       @property hold {
-        [[Hold property]]
+          [[Hold property]]
          set {
          }
          values {
@@ -433,7 +433,7 @@ mixin Elm.Interface_Scrollable(Efl.Ui.Scrollable, Efl.Ui.Focus.Manager.Sub, Efl.
          }
       }
       @property mirrored {
-        [[Mirroed property]]
+          [[Mirroed property]]
          set {
          }
          values {
@@ -441,7 +441,7 @@ mixin Elm.Interface_Scrollable(Efl.Ui.Scrollable, Efl.Ui.Focus.Manager.Sub, Efl.
          }
       }
       @property content_min_limit_cb {
-        [[set the callback to run on minimal limit content]]
+          [[set the callback to run on minimal limit content]]
          set {
          }
          values {
@@ -457,7 +457,7 @@ mixin Elm.Interface_Scrollable(Efl.Ui.Scrollable, Efl.Ui.Focus.Manager.Sub, Efl.
          }
       }
       @property scrollable_content {
-        [[Content property]]
+          [[Content property]]
          set {
          }
          values {
@@ -513,7 +513,7 @@ mixin Elm.Interface_Scrollable(Efl.Ui.Scrollable, Efl.Ui.Focus.Manager.Sub, Efl.
          }
       }
       @property objects {
-        [[Object property]]
+          [[Object property]]
          set {
          }
          values {
@@ -552,7 +552,7 @@ mixin Elm.Interface_Scrollable(Efl.Ui.Scrollable, Efl.Ui.Focus.Manager.Sub, Efl.
          }
       }
       @property content_viewport_geometry {
-        [[Content viewport geometry]]
+          [[Content viewport geometry]]
          get {
          }
          values {
@@ -575,7 +575,7 @@ mixin Elm.Interface_Scrollable(Efl.Ui.Scrollable, Efl.Ui.Focus.Manager.Sub, Efl.
          }
       }
       content_pos_set {
-        [[Set the content position]]
+          [[Set the content position]]
          params {
             @in x: int; [[X coordinate]]
             @in y: int; [[Y coordinate]]
@@ -584,7 +584,7 @@ mixin Elm.Interface_Scrollable(Efl.Ui.Scrollable, Efl.Ui.Focus.Manager.Sub, Efl.
          }
       }
       content_pos_get {
-        [[Get content position]]
+          [[Get content position]]
          params {
             @out x: int; [[X coordinate]]
             @out y: int; [[Y coordinate]]
index 3276fe0..b9d2aa2 100644 (file)
@@ -7,7 +7,7 @@ class Elm.Pan (Efl.Canvas.Group)
    data: Elm_Pan_Smart_Data;
    methods {
       @property pos {
-        [[Position]]
+          [[Position]]
          set {
          }
          get {
@@ -18,7 +18,7 @@ class Elm.Pan (Efl.Canvas.Group)
          }
       }
       @property content_size {
-        [[Content size]]
+          [[Content size]]
          get {
          }
          values {
@@ -27,7 +27,7 @@ class Elm.Pan (Efl.Canvas.Group)
          }
       }
       @property pos_min {
-        [[Minimal position]]
+          [[Minimal position]]
          get {
          }
          values {
@@ -36,7 +36,7 @@ class Elm.Pan (Efl.Canvas.Group)
          }
       }
       @property pos_max {
-        [[Maximal position]]
+          [[Maximal position]]
          get {
          }
          values {
index 5750816..fbd35be 100644 (file)
@@ -492,11 +492,11 @@ class Elm.Widget.Item(Efl.Object, Efl.Access,
                   @since 1.8]]
            }
            disable @protected {
-               [[Disable widget item]]
+              [[Disable widget item]]
                 legacy: null;
            }
            del_pre @protected {
-               [[Delete pre widget item]]
+              [[Delete pre widget item]]
                 legacy: null;
                 return: bool; [[$true on success, $false otherwise]]
            }
index 0a2c34b..0298b83 100644 (file)
@@ -83,10 +83,10 @@ mixin Efl.Canvas.Filter.Internal (Efl.Gfx.Filter, Efl.Object)
          return: bool; [[Indicates success from the object render function.]]
          params {
             filter: void_ptr; [[Current filter context]]
-           engine: void_ptr; [[Engine context]]
-           output: void_ptr; [[Output context]]
+       engine: void_ptr; [[Engine context]]
+       output: void_ptr; [[Output context]]
             drawctx: void_ptr; [[Draw context (for evas engine)]]
-           data: void_ptr; [[Private data used by textblock]]
+       data: void_ptr; [[Private data used by textblock]]
             l: int; [[Left]]
             r: int; [[Right]]
             t: int; [[Top]]
index 4913e78..264d94e 100644 (file)
@@ -4,14 +4,14 @@ class Efl.VG.Container (Efl.VG)
    legacy_prefix: evas_vg_container;
    methods {
       child_get {
-        [[Get child of container]]
+          [[Get child of container]]
          params {
             @in name: string; [[Child node name]]
          }
          return: Efl.VG; [[Child object]]
       }
       children_get {
-        [[Get all children of container]]
+          [[Get all children of container]]
          return: iterator<Efl.VG> @owned @warn_unused; [[Iterator to children]]
       }
    }
index 6dc846b..716d187 100644 (file)
@@ -4,34 +4,34 @@ class Efl.VG.Shape (Efl.VG, Efl.Gfx.Shape)
    legacy_prefix: evas_vg_shape;
    methods {
       @property fill {
-        [[Fill of the shape object]]
+          [[Fill of the shape object]]
          set {
-        }
-        get {
-        }
-        values {
-           f: Efl.VG; [[Fill object]]
-        }
+    }
+    get {
+    }
+    values {
+       f: Efl.VG; [[Fill object]]
+    }
       }
       @property stroke_fill {
-        [[Stroke fill of the shape object]]
+          [[Stroke fill of the shape object]]
          set {
-        }
-        get {
-        }
-        values {
-           f: Efl.VG; [[Stroke fill object]]
-        }
+    }
+    get {
+    }
+    values {
+       f: Efl.VG; [[Stroke fill object]]
+    }
       }
       @property stroke_marker {
-        [[Stroke marker of the shape object]]
+          [[Stroke marker of the shape object]]
          set {
-        }
-        get {
-        }
-        values {
-           m: Efl.VG; [[Stroke marker object]]
-        }
+    }
+    get {
+    }
+    values {
+       m: Efl.VG; [[Stroke marker object]]
+    }
       }
    }
    implements {
index 5a51b69..257aed6 100644 (file)
@@ -670,7 +670,7 @@ class Evas.Canvas (Efl.Object, Efl.Canvas, Efl.Animator, Efl.Input.Interface,
          ]]
       }
       objects_in_rectangle_get @const {
-        [[Get all objects in the given rectangle]]
+          [[Get all objects in the given rectangle]]
          return: list<Efl.Canvas.Object> @warn_unused; [[List of objects]]
          params {
             @in x: int; [[X coordinate]]
index 7a8049e..91e952d 100644 (file)
@@ -165,7 +165,7 @@ class Evas.Text (Efl.Canvas.Object, Efl.Text, Efl.Text.Properties,
          }
       }
       @property max_descent {
-        [[Maximal descent property]]
+          [[Maximal descent property]]
          get {
             return: int; [[Evas coordinate]]
          }
@@ -190,37 +190,37 @@ class Evas.Text (Efl.Canvas.Object, Efl.Text, Efl.Text.Properties,
          }
       }
       @property ascent {
-        [[Ascent property]]
+          [[Ascent property]]
          get {
             return: int; [[Evas coordinate]]
          }
       }
       @property horiz_advance {
-        [[Horizontal advance property]]
+          [[Horizontal advance property]]
          get {
             return: int; [[Evas coordinate]]
          }
       }
       @property inset {
-        [[Inset property]]
+          [[Inset property]]
          get {
             return: int; [[Evas coordinate]]
          }
       }
       @property max_ascent {
-        [[Maximal ascent property]]
+          [[Maximal ascent property]]
          get {
             return: int; [[Evas coordinate]]
          }
       }
       @property vert_advance {
-        [[Vertical advance property]]
+          [[Vertical advance property]]
          get {
             return: int; [[Evas coordinate]]
          }
       }
       @property descent {
-        [[descent property]]
+          [[descent property]]
          get {
             return: int; [[Evas coordinate]]
          }
@@ -239,7 +239,7 @@ class Evas.Text (Efl.Canvas.Object, Efl.Text, Efl.Text.Properties,
          }
       }
       char_coords_get @const {
-        [[Get character coordinates]]
+          [[Get character coordinates]]
          return: int; [[Logical position of char]]
          params {
             @in x: int; [[X coordinate]]