summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Juyung Seo <seojuyung2@gmail.com>2014-07-15 02:06:10 +0900
committerDaniel Juyung Seo <seojuyung2@gmail.com>2014-07-15 11:36:18 +0900
commiteb7f5d542a70b29ccc94e2207d43e073453d24df (patch)
tree27fac83d446da9588989bf2db632aa858315f219
parentb1df32e61c5f2bade4fd8a07c86b620aa010259f (diff)
downloadelementary-eb7f5d542a70b29ccc94e2207d43e073453d24df.tar.gz
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.
-rw-r--r--src/lib/elm_win.c2
-rw-r--r--src/lib/elm_win.eo2
2 files changed, 4 insertions, 0 deletions
diff --git a/src/lib/elm_win.c b/src/lib/elm_win.c
index aa6dd6634..f6ae1f58b 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 397d950b0..cf8ae74d4 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;
}