diff options
author | Sungtaek Hong <sth253.hong@samsung.com> | 2018-01-24 15:50:58 +0900 |
---|---|---|
committer | Jean-Philippe Andre <jp.andre@samsung.com> | 2018-01-24 18:14:26 +0900 |
commit | cb25699dacde420a0e0c3434065ab8dac242ee6e (patch) | |
tree | aadf195322243f48771eb3235e9079c5a25891b5 /src/lib/elementary/elm_notify.eo | |
parent | f6ba674cd8ada4e018fd205dab2e877e9a19a820 (diff) | |
download | efl-cb25699dacde420a0e0c3434065ab8dac242ee6e.tar.gz |
efl_ui_legacy: add new interface to indicate legacy widget
Summary:
For now, how to check whether a widget is legacy or not
is to check flags in private data or static flag, which is set
during elm_legacy_add.
If Efl.Ui.Legacy interface is added, it can be easilly checked
by efl_isa(obj, EFL_UI_LEGACY_INTERFACE)
Reviewers: woohyun, jpeg, cedric, Jaehyun_Cho
Subscribers: conr2d, cedric, jpeg
Differential Revision: https://phab.enlightenment.org/D5748
Diffstat (limited to 'src/lib/elementary/elm_notify.eo')
-rw-r--r-- | src/lib/elementary/elm_notify.eo | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/elementary/elm_notify.eo b/src/lib/elementary/elm_notify.eo index a3a0afcf7f..4b4236efe6 100644 --- a/src/lib/elementary/elm_notify.eo +++ b/src/lib/elementary/elm_notify.eo @@ -1,4 +1,4 @@ -class Elm.Notify (Efl.Ui.Widget, Efl.Ui.Focus.Layer, Efl.Content, Efl.Part) +class Elm.Notify (Efl.Ui.Widget, Efl.Ui.Focus.Layer, Efl.Content, Efl.Part, Efl.Ui.Legacy) { [[Elementary notification class]] legacy_prefix: elm_notify; |