diff options
author | Jean-Philippe Andre <jp.andre@samsung.com> | 2017-09-22 13:38:59 +0900 |
---|---|---|
committer | Jean-Philippe Andre <jp.andre@samsung.com> | 2017-09-26 17:58:07 +0900 |
commit | 2b7f9b6dfd372af81fd691ac0a0a87b53f8cce34 (patch) | |
tree | c3700c8ec53e876a0d41ff26ce135e87e3aab859 /src | |
parent | bfa7d2a3b2d6dbd20d6232e950d538611fdb7a9e (diff) |
widget: Add tiny doc for Efl.Ui.Widget.Part
Diffstat (limited to '')
-rw-r--r-- | src/lib/elementary/efl_ui_widget_part.eo | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/lib/elementary/efl_ui_widget_part.eo b/src/lib/elementary/efl_ui_widget_part.eo index e848686b5b..2ddceab417 100644 --- a/src/lib/elementary/efl_ui_widget_part.eo +++ b/src/lib/elementary/efl_ui_widget_part.eo | |||
@@ -1,8 +1,12 @@ | |||
1 | class Efl.Ui.Widget.Part (Efl.Object) | 1 | class Efl.Ui.Widget.Part (Efl.Object) |
2 | { | 2 | { |
3 | [[This is the base class for all "Part" handles in Efl.Ui widgets. | ||
4 | |||
5 | Since objects of this type are returned by @Efl.Part.part, their lifetime | ||
6 | is limited to exactly one function call only. Each widget class should | ||
7 | expose more specific types for their API-defined parts. | ||
8 | ]] | ||
3 | data: Elm_Part_Data; | 9 | data: Elm_Part_Data; |
4 | methods { | ||
5 | } | ||
6 | implements { | 10 | implements { |
7 | Efl.Object.destructor; | 11 | Efl.Object.destructor; |
8 | } | 12 | } |