seoz pushed a commit to branch elementary-1.10. http://git.enlightenment.org/core/elementary.git/commit/?id=eb7f5d542a70b29ccc94e2207d43e073453d24df
commit eb7f5d542a70b29ccc94e2207d43e073453d24df Author: Daniel Juyung Seo <seojuyu...@gmail.com> Date: Tue Jul 15 02:06:10 2014 +0900 elm_win: added focused and unfocused smart callback descriptions. This was removed by a commit b1df32e61c. The removal of redundant smart callback call was good but we need to have these descriptions still. --- src/lib/elm_win.c | 2 ++ src/lib/elm_win.eo | 2 ++ 2 files changed, 4 insertions(+) diff --git a/src/lib/elm_win.c b/src/lib/elm_win.c index aa6dd66..f6ae1f5 100644 --- a/src/lib/elm_win.c +++ b/src/lib/elm_win.c @@ -253,6 +253,8 @@ static const Evas_Smart_Cb_Description _smart_callbacks[] = { {SIG_ROTATION_CHANGED, ""}, {SIG_PROFILE_CHANGED, ""}, {SIG_WM_ROTATION_CHANGED, ""}, + {SIG_WIDGET_FOCUSED, ""}, /**< handled by elm_widget */ + {SIG_WIDGET_UNFOCUSED, ""}, /**< handled by elm_widget */ {NULL, NULL} }; diff --git a/src/lib/elm_win.eo b/src/lib/elm_win.eo index 397d950..cf8ae74 100644 --- a/src/lib/elm_win.eo +++ b/src/lib/elm_win.eo @@ -1335,6 +1335,8 @@ class Elm_Win (Elm_Widget, Elm_Interface_Atspi_Window) indicator,prop,changed; rotation,changed; profile,changed; + focused; + unfocused; wm,rotation,changed; } --