efl: stabilize Efl.Model

Summary:
T8267
Depends on D10135

Reviewers: zmike, segfaultxavi, bu5hm4n, SanghyeonLee, lauromoura, felipealmeida

Reviewed By: SanghyeonLee

Subscribers: #reviewers, #committers

Tags: #efl

Maniphest Tasks: T7885

Differential Revision: https://phab.enlightenment.org/D10136
This commit is contained in:
Cedric Bail 2019-09-25 12:00:28 -03:00 committed by Lauro Moura
parent c3db279304
commit 2078fe00e0
1 changed files with 4 additions and 4 deletions

View File

@ -1,4 +1,4 @@
struct @beta Efl.Model_Property_Event {
struct Efl.Model_Property_Event {
[[EFL model property event data structure]]
changed_properties: array<stringshare>; [[List of changed properties]]
invalidated_properties: array<stringshare>; [[Removed properties identified by name]]
@ -13,7 +13,7 @@ struct @beta Efl.Model_Children_Event {
the parent, it will be available here.]]
}
interface @beta Efl.Model
interface Efl.Model
{
[[Basic Model abstraction.
@ -178,8 +178,8 @@ interface @beta Efl.Model
properties,changed: Efl.Model_Property_Event; [[Event dispatched when
properties list is
available.]]
child,added: Efl.Model_Children_Event; [[Event dispatched when new child is added.]]
child,removed: Efl.Model_Children_Event; [[Event dispatched when child is removed.]]
child,added @beta: Efl.Model_Children_Event; [[Event dispatched when new child is added.]]
child,removed @beta: Efl.Model_Children_Event; [[Event dispatched when child is removed.]]
children,count,changed: void; [[Event dispatched when children count is finished.]]
}
}