Efl.Model_* (from Efl.Model.*)
authorXavi Artigas <xavierartigas@yahoo.es>
Fri, 13 Apr 2018 08:21:46 +0000 (10:21 +0200)
committerWonki Kim <wonki_.kim@samsung.com>
Tue, 29 May 2018 17:13:48 +0000 (02:13 +0900)
Ref https://phab.enlightenment.org/T6847

Reviewed-by: Cedric Bail <cedric@osg.samsung.com>
src/lib/ecore/efl_model_composite_boolean.eo
src/lib/ecore/efl_model_composite_boolean_children.eo
src/lib/ecore/efl_model_composite_selection.eo
src/lib/ecore/efl_model_composite_selection_children.eo
src/lib/ecore/efl_model_container.eo
src/lib/ecore/efl_model_container_item.eo
src/lib/ecore/efl_model_item.eo
src/lib/efl/interfaces/efl_model.eo

index bb7eacb..2ca24a2 100644 (file)
@@ -1,4 +1,4 @@
-class Efl.Model.Composite.Boolean (Efl.Object, Efl.Model, Efl.Ui.View)
+class Efl.Model_Composite_Boolean (Efl.Object, Efl.Model, Efl.Ui.View)
 {
    [[Efl model composite boolean class]]
    methods {
index 623bd1d..236ca21 100644 (file)
@@ -1,4 +1,4 @@
-class Efl.Model.Composite.Boolean.Children (Efl.Object, Efl.Model)
+class Efl.Model_Composite_Boolean_Children (Efl.Object, Efl.Model)
 {
    [[Efl model composite boolean children class]]
    implements {
index c122de5..5e6a9c8 100644 (file)
@@ -1,4 +1,4 @@
-class Efl.Model.Composite.Selection (Efl.Model.Composite.Boolean)
+class Efl.Model_Composite_Selection (Efl.Model_Composite_Boolean)
 {
    [[Efl model composite selection class]]
    methods {
index 2ea5c95..4c6ef7c 100644 (file)
@@ -1,4 +1,4 @@
-class Efl.Model.Composite.Selection.Children (Efl.Object, Efl.Model)
+class Efl.Model_Composite_Selection_Children (Efl.Object, Efl.Model)
 {
    [[Efl model composite selection children class]]
    implements {
index 5638512..05a88ed 100644 (file)
@@ -1,12 +1,12 @@
 import eina_types;
 
-class Efl.Model.Container (Efl.Object, Efl.Model)
+class Efl.Model_Container (Efl.Object, Efl.Model)
 {
    [[
      Class used to create data models from Eina containers.
 
      Each container supplied represents a series of property values, each item
-     being the property value for a child object (@Efl.Model.Container.Item).
+     being the property value for a child object (@Efl.Model_Container_Item).
 
      The data in the given containers are copied and stored internally.
 
index c959494..cbc8ab7 100644 (file)
@@ -1,21 +1,21 @@
 import eina_types;
 
-class Efl.Model.Container.Item (Efl.Object, Efl.Model)
+class Efl.Model_Container_Item (Efl.Object, Efl.Model)
 {
    [[
-     Used as a child of @Efl.Model.Container.
+     Used as a child of @Efl.Model_Container.
 
-     Provides the @Efl.Model API for elements of @Efl.Model.Container.
+     Provides the @Efl.Model API for elements of @Efl.Model_Container.
      Should not be used in another context, so do not manually create objects
      of this class.
    ]]
    methods {
       define {
-         [[Defines @Efl.Model.Container.Item internal data.]]
+         [[Defines @Efl.Model_Container_Item internal data.]]
          params {
             parent_data: void_ptr; [[Pointer to the private data of the
-                                    @Efl.Model.Container parent object.]]
-            index: uint; [[Index of this item within the @Efl.Model.Container
+                                    @Efl.Model_Container parent object.]]
+            index: uint; [[Index of this item within the @Efl.Model_Container
                            children.]]
          }
       }
index 622cd24..170dd99 100644 (file)
@@ -1,6 +1,6 @@
 import eina_types;
 
-class Efl.Model.Item (Efl.Object, Efl.Model)
+class Efl.Model_Item (Efl.Object, Efl.Model)
 {
    [[
      Generic model that allows any property to be manually set.
index d615c44..06477f9 100644 (file)
@@ -1,4 +1,4 @@
-struct Efl.Model.Property_Event {
+struct Efl.Model_Property_Event {
      [[EFL model property event data structure]]
      changed_properties: array<string>; [[List of changed properties]]
      invalidated_properties: array<string>; [[Removed properties identified by name]]
@@ -144,7 +144,7 @@ interface Efl.Model ()
       }
 
    events {
-      properties,changed: Efl.Model.Property_Event; [[Event dispatched when
+      properties,changed: Efl.Model_Property_Event; [[Event dispatched when
                                                       properties list is
                                                       available.]]
       child,added: Efl.Object; [[Event dispatched when new child is added.]]