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 */