From 2f25639ceb30504ded4a2a18b44af4581c5b254c Mon Sep 17 00:00:00 2001 From: Jihoon Kim Date: Fri, 16 Nov 2012 05:58:20 +0000 Subject: [PATCH] elementary: move Elm_Focus_Direction into Focus group SVN revision: 79358 --- legacy/elementary/src/lib/elm_focus.h | 11 +++++++++++ legacy/elementary/src/lib/elm_general.h | 6 ------ 2 files changed, 11 insertions(+), 6 deletions(-) diff --git a/legacy/elementary/src/lib/elm_focus.h b/legacy/elementary/src/lib/elm_focus.h index 59fc97cdc5..1d07355cee 100644 --- a/legacy/elementary/src/lib/elm_focus.h +++ b/legacy/elementary/src/lib/elm_focus.h @@ -33,6 +33,17 @@ * some of these functions. */ +/** + * Focus directions. + * + * @ingroup Focus + */ +typedef enum +{ + ELM_FOCUS_PREVIOUS, /**< previous direction */ + ELM_FOCUS_NEXT /**< next direction */ +} Elm_Focus_Direction; + /** * Get the whether an Elementary object has the focus or not. * diff --git a/legacy/elementary/src/lib/elm_general.h b/legacy/elementary/src/lib/elm_general.h index b8a7686012..d2b5c9b81f 100644 --- a/legacy/elementary/src/lib/elm_general.h +++ b/legacy/elementary/src/lib/elm_general.h @@ -106,12 +106,6 @@ typedef enum * the main loop */ } Elm_Policy_Exit; -typedef enum -{ - ELM_FOCUS_PREVIOUS, - ELM_FOCUS_NEXT -} Elm_Focus_Direction; - typedef enum { ELM_OBJECT_SELECT_MODE_DEFAULT = 0, /**< default select mode */