Merge branch 'intefl/svn_merge' of ssh://165.213.149.219:29418/slp/pkgs/e/elementary...
authorJaehwan Kim <jae.hwan.kim@samsung.com>
Fri, 9 Mar 2012 10:00:02 +0000 (19:00 +0900)
committerJaehwan Kim <jae.hwan.kim@samsung.com>
Fri, 9 Mar 2012 10:00:02 +0000 (19:00 +0900)
14 files changed:
TC/elm_ts/actionslider/Makefile
TC/elm_ts/actionslider/tet_captured [deleted file]
TC/elm_ts/actionslider/tslist
TC/elm_ts/actionslider/utc_UIFW_elm_actionslider_hold_func.c [deleted file]
TC/elm_ts/actionslider/utc_UIFW_elm_actionslider_label_set_func.c [deleted file]
TC/elm_ts/conformant/Makefile
TC/elm_ts/conformant/tslist
TC/elm_ts/conformant/utc_UIFW_elm_conformant_content_set_func.c [deleted file]
TC/elm_ts/conformant/utc_UIFW_elm_conformant_content_unset_func.c [deleted file]
TC/elm_ts/dayselector/Makefile
src/lib/elm_deprecated.h
src/lib/elm_entry.c
src/lib/elm_entry.h
src/lib/elm_removed.h

index dbbd7f8..d9ea846 100755 (executable)
@@ -2,9 +2,7 @@ CC ?= gcc
 
 TARGETS = utc_UIFW_elm_actionslider_add_func \
                  utc_UIFW_elm_actionslider_indicator_pos_set_func \
-                 utc_UIFW_elm_actionslider_magnet_pos_set_func \
-                 utc_UIFW_elm_actionslider_label_set_func \
-                 utc_UIFW_elm_actionslider_hold_func
+                 utc_UIFW_elm_actionslider_magnet_pos_set_func
 
 PKGS = elementary evas
 
diff --git a/TC/elm_ts/actionslider/tet_captured b/TC/elm_ts/actionslider/tet_captured
deleted file mode 100644 (file)
index 5e64960..0000000
+++ /dev/null
@@ -1 +0,0 @@
-make: `utc_UIFW_elm_actionslider_hold_func' is up to date.
index 5f04385..b715df7 100644 (file)
@@ -1,5 +1,3 @@
 /elm_ts/actionslider/utc_UIFW_elm_actionslider_add_func
 /elm_ts/actionslider/utc_UIFW_elm_actionslider_indicator_pos_set_func
 /elm_ts/actionslider/utc_UIFW_elm_actionslider_magnet_pos_set_func
-/elm_ts/actionslider/utc_UIFW_elm_actionslider_label_set_func
-/elm_ts/actionslider/utc_UIFW_elm_actionslider_hold_func
diff --git a/TC/elm_ts/actionslider/utc_UIFW_elm_actionslider_hold_func.c b/TC/elm_ts/actionslider/utc_UIFW_elm_actionslider_hold_func.c
deleted file mode 100644 (file)
index 88c5709..0000000
+++ /dev/null
@@ -1,93 +0,0 @@
-#include <tet_api.h>
-#include <Elementary.h>
-
-// Definitions
-// For checking the result of the positive test case.
-#define TET_CHECK_PASS(x1, y...) \
-{ \
-       Evas_Object *err = y; \
-       if (err == (x1)) \
-               { \
-                       tet_printf("[TET_CHECK_PASS]:: %s[%d] : Test has failed..", __FILE__,__LINE__); \
-                       tet_result(TET_FAIL); \
-                       return; \
-               } \
-}
-
-// For checking the result of the negative test case.
-#define TET_CHECK_FAIL(x1, y...) \
-{ \
-       Evas_Object *err = y; \
-       if (err != (x1)) \
-               { \
-                       tet_printf("[TET_CHECK_FAIL]:: %s[%d] : Test has failed..", __FILE__,__LINE__); \
-                       tet_result(TET_FAIL); \
-                       return; \
-               } \
-}
-
-
-Evas_Object *main_win;
-Evas_Object *actionslider;
-
-static void startup(void);
-static void cleanup(void);
-
-void (*tet_startup)(void) = startup;
-void (*tet_cleanup)(void) = cleanup;
-
-static void utc_UIFW_elm_actionslider_hold_func_01(void);
-static void utc_UIFW_elm_actionslider_hold_func_02(void);
-
-enum {
-       POSITIVE_TC_IDX = 0x01,
-       NEGATIVE_TC_IDX,
-};
-
-struct tet_testlist tet_testlist[] = {
-       { utc_UIFW_elm_actionslider_hold_func_01, POSITIVE_TC_IDX },
-       { utc_UIFW_elm_actionslider_hold_func_02, NEGATIVE_TC_IDX },
-       { NULL, 0 }
-};
-
-static void startup(void)
-{
-       tet_infoline("[[ TET_MSG ]]:: ============ Startup ============ ");
-       elm_init(0, NULL);
-       main_win = elm_win_add(NULL, "main", ELM_WIN_BASIC);
-       evas_object_show(main_win);
-
-       actionslider = elm_actionslider_add(main_win);
-}
-
-static void cleanup(void)
-{
-       if ( NULL != main_win ) {
-               evas_object_del(main_win);
-               main_win = NULL;
-       }
-       elm_shutdown();
-       tet_infoline("[[ TET_MSG ]]:: ============ Cleanup ============ ");
-
-       evas_object_del(actionslider);
-}
-
-/**
- * @brief Positive test case of elm_actionslider_hold()
- */
-static void utc_UIFW_elm_actionslider_hold_func_01(void)
-{
-       elm_actionslider_hold(actionslider, EINA_TRUE);
-
-       tet_result(TET_PASS);
-}
-
-/**
- * @brief Negative test case of ug_init elm_actionslider_hold()
- */
-static void utc_UIFW_elm_actionslider_hold_func_02(void)
-{
-       elm_actionslider_hold(NULL, EINA_FALSE);
-
-       tet_result(TET_PASS);
-}
diff --git a/TC/elm_ts/actionslider/utc_UIFW_elm_actionslider_label_set_func.c b/TC/elm_ts/actionslider/utc_UIFW_elm_actionslider_label_set_func.c
deleted file mode 100644 (file)
index ca9b762..0000000
+++ /dev/null
@@ -1,94 +0,0 @@
-#include <tet_api.h>
-#include <Elementary.h>
-
-// Definitions
-// For checking the result of the positive test case.
-#define TET_CHECK_PASS(x1, y...) \
-{ \
-       Evas_Object *err = y; \
-       if (err == (x1)) \
-               { \
-                       tet_printf("[TET_CHECK_PASS]:: %s[%d] : Test has failed..", __FILE__,__LINE__); \
-                       tet_result(TET_FAIL); \
-                       return; \
-               } \
-}
-
-// For checking the result of the negative test case.
-#define TET_CHECK_FAIL(x1, y...) \
-{ \
-       Evas_Object *err = y; \
-       if (err != (x1)) \
-               { \
-                       tet_printf("[TET_CHECK_FAIL]:: %s[%d] : Test has failed..", __FILE__,__LINE__); \
-                       tet_result(TET_FAIL); \
-                       return; \
-               } \
-}
-
-
-Evas_Object *main_win;
-Evas_Object *actionslider;
-
-static void startup(void);
-static void cleanup(void);
-
-void (*tet_startup)(void) = startup;
-void (*tet_cleanup)(void) = cleanup;
-
-static void utc_UIFW_elm_actionslider_label_set_func_01(void);
-static void utc_UIFW_elm_actionslider_label_set_func_02(void);
-
-enum {
-       POSITIVE_TC_IDX = 0x01,
-       NEGATIVE_TC_IDX,
-};
-
-struct tet_testlist tet_testlist[] = {
-       { utc_UIFW_elm_actionslider_label_set_func_01, POSITIVE_TC_IDX },
-       { utc_UIFW_elm_actionslider_label_set_func_02, NEGATIVE_TC_IDX },
-       { NULL, 0 }
-};
-
-static void startup(void)
-{
-       tet_infoline("[[ TET_MSG ]]:: ============ Startup ============ ");
-       elm_init(0, NULL);
-       main_win = elm_win_add(NULL, "main", ELM_WIN_BASIC);
-       evas_object_show(main_win);
-
-       actionslider = elm_actionslider_add(main_win);
-}
-
-static void cleanup(void)
-{
-       if ( NULL != main_win ) {
-               evas_object_del(main_win);
-               main_win = NULL;
-       }
-       elm_shutdown();
-       tet_infoline("[[ TET_MSG ]]:: ============ Cleanup ============ ");
-
-       evas_object_del(actionslider);
-}
-
-/**
- * @brief Positive test case of elm_actionslider_label_set()
- */
-static void utc_UIFW_elm_actionslider_label_set_func_01(void)
-{
-       elm_actionslider_label_set(actionslider, ELM_ACTIONSLIDER_LABEL_CENTER, "Actionslider");
-
-       tet_result(TET_PASS);
-}
-
-/**
- * @brief Negative test case of ug_init elm_actionslider_label_set()
- */
-static void utc_UIFW_elm_actionslider_label_set_func_02(void)
-{
-       elm_actionslider_label_set(actionslider, 100, "Actionslider");
-       elm_actionslider_label_set(actionslider, ELM_ACTIONSLIDER_LABEL_BUTTON, NULL);
-
-       tet_result(TET_PASS);
-}
index 6d8ee69..f3884e1 100755 (executable)
@@ -1,8 +1,6 @@
 CC ?= gcc
 
-TARGETS = utc_UIFW_elm_conformant_add_func \
-         utc_UIFW_elm_conformant_content_set_func \
-         utc_UIFW_elm_conformant_content_unset_func
+TARGETS = utc_UIFW_elm_conformant_add_func
 
 PKGS = elementary evas
 
index 028e587..24c759f 100644 (file)
@@ -1,4 +1,2 @@
 /elm_ts/conformant/utc_UIFW_elm_conformant_add_func
-/elm_ts/conformant/utc_UIFW_elm_conformant_content_set_func
-/elm_ts/conformant/utc_UIFW_elm_conformant_content_unset_func
 
diff --git a/TC/elm_ts/conformant/utc_UIFW_elm_conformant_content_set_func.c b/TC/elm_ts/conformant/utc_UIFW_elm_conformant_content_set_func.c
deleted file mode 100644 (file)
index 4456eb5..0000000
+++ /dev/null
@@ -1,110 +0,0 @@
-#include <tet_api.h>\r
-#include <Elementary.h>\r
-\r
-// Definitions\r
-// For checking the result of the positive test case.\r
-#define TET_CHECK_PASS(x1, y...) \\r
-{ \\r
-       Evas_Object *err = y; \\r
-       if (err == (x1)) \\r
-               { \\r
-                       tet_printf("[TET_CHECK_PASS]:: %s[%d] : Test has failed..", __FILE__,__LINE__); \\r
-                       tet_result(TET_FAIL); \\r
-                       return; \\r
-               } \\r
-}\r
-\r
-// For checking the result of the negative test case.\r
-#define TET_CHECK_FAIL(x1, y...) \\r
-{ \\r
-       Evas_Object *err = y; \\r
-       if (err != (x1)) \\r
-               { \\r
-                       tet_printf("[TET_CHECK_FAIL]:: %s[%d] : Test has failed..", __FILE__,__LINE__); \\r
-                       tet_result(TET_FAIL); \\r
-                       return; \\r
-               } \\r
-}\r
-\r
-\r
-Evas_Object *main_win;\r
-\r
-static void startup(void);\r
-static void cleanup(void);\r
-\r
-void (*tet_startup)(void) = startup;\r
-void (*tet_cleanup)(void) = cleanup;\r
-\r
-static void utc_UIFW_elm_conformant_content_set_func_01(void);\r
-static void utc_UIFW_elm_conformant_content_set_func_02(void);\r
-\r
-enum {\r
-       POSITIVE_TC_conf = 0x01,\r
-       NEGATIVE_TC_conf,\r
-};\r
-\r
-struct tet_testlist tet_testlist[] = {\r
-       { utc_UIFW_elm_conformant_content_set_func_01, POSITIVE_TC_conf },\r
-       { utc_UIFW_elm_conformant_content_set_func_02, NEGATIVE_TC_conf },\r
-        { NULL, 0}\r
-};\r
-\r
-static void startup(void)\r
-{\r
-       tet_infoline("[[ TET_MSG ]]:: ============ Startup ============ ");\r
-       elm_init(0, NULL);\r
-       main_win = elm_win_add(NULL, "main", ELM_WIN_BASIC);\r
-       evas_object_show(main_win);     \r
-}\r
-\r
-static void cleanup(void)\r
-{\r
-       if ( NULL != main_win ) {\r
-               evas_object_del(main_win);\r
-               main_win = NULL;\r
-       }\r
-       elm_shutdown();\r
-       tet_infoline("[[ TET_MSG ]]:: ============ Cleanup ============ ");\r
-}\r
-\r
-/**\r
- * @brief Positive test case of elm_conformant_content_set()\r
- */\r
-static void utc_UIFW_elm_conformant_content_set_func_01(void)\r
-{\r
-       Evas_Object *conf = NULL, *conform= NULL;
-        Evas_Object* entry = NULL;\r
-       conf = elm_conformant_add(main_win);\r
-       evas_object_show(conf);
-       entry = elm_scrolled_entry_add(main_win);
-       evas_object_show(entry);
-        elm_conformant_content_set(conf,entry);
-       conform = elm_object_parent_widget_get(entry);\r
-       if (!conform) {\r
-               tet_infoline("elm_conformant_content_set() failed in positive test case");\r
-               tet_result(TET_FAIL);\r
-               return;\r
-       }\r
-       tet_result(TET_PASS);\r
-}\r
-\r
-/**\r
- * @brief Negative test case of elm_conformant_content_set()\r
- */\r
-static void utc_UIFW_elm_conformant_content_set_func_02(void)\r
-{\r
-       Evas_Object *conf = NULL, *conform= NULL;
-        Evas_Object* entry = NULL;\r
-       conf = elm_conformant_add(main_win);\r
-       evas_object_show(conf);
-       entry = elm_scrolled_entry_add(NULL);
-       evas_object_show(entry);
-        elm_conformant_content_set(NULL,entry);
-       conform = elm_object_parent_widget_get(entry);\r
-       if (conform) {
-               tet_infoline("elm_conformant_content_set() failed in negative test case");\r
-               tet_result(TET_FAIL);\r
-               return;\r
-       }\r
-       tet_result(TET_PASS);\r
-}\r
diff --git a/TC/elm_ts/conformant/utc_UIFW_elm_conformant_content_unset_func.c b/TC/elm_ts/conformant/utc_UIFW_elm_conformant_content_unset_func.c
deleted file mode 100644 (file)
index 252b1be..0000000
+++ /dev/null
@@ -1,112 +0,0 @@
-#include <tet_api.h>\r
-#include <Elementary.h>\r
-\r
-// Definitions\r
-// For checking the result of the positive test case.\r
-#define TET_CHECK_PASS(x1, y...) \\r
-{ \\r
-       Evas_Object *err = y; \\r
-       if (err == (x1)) \\r
-               { \\r
-                       tet_printf("[TET_CHECK_PASS]:: %s[%d] : Test has failed..", __FILE__,__LINE__); \\r
-                       tet_result(TET_FAIL); \\r
-                       return; \\r
-               } \\r
-}\r
-\r
-// For checking the result of the negative test case.\r
-#define TET_CHECK_FAIL(x1, y...) \\r
-{ \\r
-       Evas_Object *err = y; \\r
-       if (err != (x1)) \\r
-               { \\r
-                       tet_printf("[TET_CHECK_FAIL]:: %s[%d] : Test has failed..", __FILE__,__LINE__); \\r
-                       tet_result(TET_FAIL); \\r
-                       return; \\r
-               } \\r
-}\r
-\r
-\r
-Evas_Object *main_win;\r
-\r
-static void startup(void);\r
-static void cleanup(void);\r
-\r
-void (*tet_startup)(void) = startup;\r
-void (*tet_cleanup)(void) = cleanup;\r
-\r
-static void utc_UIFW_elm_conformant_content_unset_func_01(void);\r
-static void utc_UIFW_elm_conformant_content_unset_func_02(void);\r
-\r
-enum {\r
-       POSITIVE_TC_conf = 0x01,\r
-       NEGATIVE_TC_conf,\r
-};\r
-\r
-struct tet_testlist tet_testlist[] = {\r
-       { utc_UIFW_elm_conformant_content_unset_func_01, POSITIVE_TC_conf },\r
-       { utc_UIFW_elm_conformant_content_unset_func_02, NEGATIVE_TC_conf },\r
-        { NULL, 0}\r
-};\r
-\r
-static void startup(void)\r
-{\r
-       tet_infoline("[[ TET_MSG ]]:: ============ Startup ============ ");\r
-       elm_init(0, NULL);\r
-       main_win = elm_win_add(NULL, "main", ELM_WIN_BASIC);\r
-       evas_object_show(main_win);     \r
-}\r
-\r
-static void cleanup(void)\r
-{\r
-       if ( NULL != main_win ) {\r
-               evas_object_del(main_win);\r
-               main_win = NULL;\r
-       }\r
-       elm_shutdown();\r
-       tet_infoline("[[ TET_MSG ]]:: ============ Cleanup ============ ");\r
-}\r
-\r
-/**\r
- * @brief Positive test case of elm_conformant_content_unset()\r
- */\r
-static void utc_UIFW_elm_conformant_content_unset_func_01(void)\r
-{\r
-       Evas_Object *conf = NULL, *conform= NULL;
-        Evas_Object* entry = NULL;\r
-       conf = elm_conformant_add(main_win);\r
-       evas_object_show(conf);
-       entry = elm_scrolled_entry_add(NULL);
-       evas_object_show(entry);
-        elm_conformant_content_set(conf,entry);
-        elm_conformant_content_unset(conf);
-       conform = elm_object_parent_widget_get(entry);\r
-       if (conform) {
-               tet_infoline("elm_conformant_content_unset() failed in positive test case");\r
-               tet_result(TET_FAIL);\r
-               return;\r
-       }\r
-       tet_result(TET_PASS);\r
-}\r
-\r
-/**\r
- * @brief Negative test case of elm_conformant_content_unset()\r
- */\r
-static void utc_UIFW_elm_conformant_content_unset_func_02(void)\r
-{\r
-       Evas_Object *conf = NULL, *conform= NULL;
-        Evas_Object* entry = NULL;\r
-       conf = elm_conformant_add(main_win);\r
-       evas_object_show(conf);
-       entry = elm_scrolled_entry_add(main_win);
-       evas_object_show(entry);
-        elm_conformant_content_set(conf,entry);
-        elm_conformant_content_unset(NULL);
-       conform = elm_object_parent_widget_get(entry);\r
-       if (!conform) {\r
-               tet_infoline("elm_conformant_content_unset() failed in negative test case");
-               tet_result(TET_FAIL);\r
-               return;\r
-       }\r
-       tet_result(TET_PASS);\r
-}\r
index 26cfcad..66b27f1 100755 (executable)
@@ -1,6 +1,6 @@
 CC ?= gcc
 
-TARGETS = utc_UIFW_elm_dayselector_add_func \
+TARGETS = utc_UIFW_elm_dayselector_add_func
 
 
 PKGS = elementary evas
index baf8b09..d28a776 100644 (file)
@@ -403,57 +403,6 @@ EINA_DEPRECATED EAPI void                         elm_hoversel_item_del_cb_set(E
 EINA_DEPRECATED EAPI void                         elm_hoversel_item_del(Elm_Object_Item *it);
 
 /**
- * Set actionslider labels.
- *
- * @param obj The actionslider object
- * @param left_label The label to be set on the left.
- * @param center_label The label to be set on the center.
- * @param right_label The label to be set on the right.
- * @deprecated use elm_object_text_set() instead.
- */
-EINA_DEPRECATED EAPI void        elm_actionslider_labels_set(Evas_Object *obj, const char *left_label, const char *center_label, const char *right_label);
-
-/**
- * Get actionslider labels.
- *
- * @param obj The actionslider object
- * @param left_label A char** to place the left_label of @p obj into.
- * @param center_label A char** to place the center_label of @p obj into.
- * @param right_label A char** to place the right_label of @p obj into.
- * @deprecated use elm_object_text_set() instead.
- */
-EINA_DEPRECATED EAPI void        elm_actionslider_labels_get(const Evas_Object *obj, const char **left_label, const char **center_label, const char **right_label);
-
-/**
- * Set the label used on the indicator.
- *
- * @param obj The actionslider object
- * @param label The label to be set on the indicator.
- * @deprecated use elm_object_text_set() instead.
- */
-EINA_DEPRECATED EAPI void        elm_actionslider_indicator_label_set(Evas_Object *obj, const char *label);
-
-/**
- * Get the label used on the indicator object.
- *
- * @param obj The actionslider object
- * @return The indicator label
- * @deprecated use elm_object_text_get() instead.
- */
-EINA_DEPRECATED EAPI const char *elm_actionslider_indicator_label_get(Evas_Object *obj);
-
-/**
- * Hold actionslider object movement.
- *
- * @param[in] obj The actionslider object
- * @param[in] flag Actionslider hold/release
- * (EINA_TURE = hold/EIN_FALSE = release)
- *
- * @ingroup Actionslider
- */
-EINA_DEPRECATED EAPI void   elm_actionslider_hold(Evas_Object *obj, Eina_Bool flag);
-
-/**
  * Set the overlay object used for the background object.
  *
  * @param obj The bg object
@@ -698,73 +647,6 @@ EINA_DEPRECATED EAPI Evas_Object *elm_button_icon_get(const Evas_Object *obj);
 EINA_DEPRECATED EAPI Evas_Object *elm_button_icon_unset(Evas_Object *obj);
 
 /**
- * Set a day text color to the same that represents Saturdays.
- *
- * @param obj The calendar object.
- * @param pos The text position. Position is the cell counter, from left
- * to right, up to down. It starts on 0 and ends on 41.
- *
- * @deprecated use elm_calendar_mark_add() instead like:
- *
- * @code
- * struct tm t = { 0, 0, 12, 6, 0, 0, 6, 6, -1 };
- * elm_calendar_mark_add(obj, "sat", &t, ELM_CALENDAR_WEEKLY);
- * @endcode
- *
- * @see elm_calendar_mark_add()
- *
- */
-EINA_DEPRECATED EAPI void elm_calendar_text_saturday_color_set(Evas_Object *obj, int pos);
-
-/**
- * Set a day text color to the same that represents Sundays.
- *
- * @param obj The calendar object.
- * @param pos The text position. Position is the cell counter, from left
- * to right, up to down. It starts on 0 and ends on 41.
-
- * @deprecated use elm_calendar_mark_add() instead like:
- *
- * @code
- * struct tm t = { 0, 0, 12, 7, 0, 0, 0, 0, -1 };
- * elm_calendar_mark_add(obj, "sat", &t, ELM_CALENDAR_WEEKLY);
- * @endcode
- *
- * @see elm_calendar_mark_add()
- *
- */
-EINA_DEPRECATED EAPI void elm_calendar_text_sunday_color_set(Evas_Object *obj, int pos);
-
-/**
- * Set a day text color to the same that represents Weekdays.
- *
- * @param obj The calendar object
- * @param pos The text position. Position is the cell counter, from left
- * to right, up to down. It starts on 0 and ends on 41.
- *
- * @deprecated use elm_calendar_mark_add() instead like:
- *
- * @code
- * struct tm t = { 0, 0, 12, 1, 0, 0, 0, 0, -1 };
- *
- * elm_calendar_mark_add(obj, "week", &t, ELM_CALENDAR_WEEKLY); // monday
- * t.tm_tm_mday++; t.tm_wday++; t.tm_yday++;
- * elm_calendar_mark_add(obj, "week", &t, ELM_CALENDAR_WEEKLY); // tuesday
- * t.tm_tm_mday++; t.tm_wday++; t.tm_yday++;
- * elm_calendar_mark_add(obj, "week", &t, ELM_CALENDAR_WEEKLY); // wednesday
- * t.tm_tm_mday++; t.tm_wday++; t.tm_yday++;
- * elm_calendar_mark_add(obj, "week", &t, ELM_CALENDAR_WEEKLY); // thursday
- * t.tm_tm_mday++; t.tm_wday++; t.tm_yday++;
- * elm_calendar_mark_add(obj, "week", &t, ELM_CALENDAR_WEEKLY); // friday
- * @endcode
- *
- * @see elm_calendar_mark_add()
- *
- */
-EINA_DEPRECATED EAPI void elm_calendar_text_weekday_color_set(Evas_Object *obj, int pos);
-
-
-/**
  * @brief Set the text label of the check object
  *
  * @param obj The check object
@@ -885,63 +767,6 @@ EINA_DEPRECATED EAPI Evas_Object *elm_check_icon_unset(Evas_Object *obj);
 EINA_DEPRECATED EAPI void         elm_check_states_labels_set(Evas_Object *obj, const char *ontext, const char *offtext);
 EINA_DEPRECATED EAPI void         elm_check_states_labels_get(const Evas_Object *obj, const char **ontext, const char **offtext);
 
-
-/**
- * Set the content of the conformant widget.
- *
- * @param obj The conformant object.
- * @param content The content to be displayed by the conformant.
- *
- * Content will be sized and positioned considering the space required
- * to display a virtual keyboard. So it won't fill all the conformant
- * size. This way is possible to be sure that content won't resize
- * or be re-positioned after the keyboard is displayed.
- *
- * Once the content object is set, a previously set one will be deleted.
- * If you want to keep that old content object, use the
- * elm_object_content_unset() function.
- *
- * @see elm_object_content_unset()
- * @see elm_object_content_get()
- *
- * @deprecated use elm_object_content_set() instead
- *
- */
-EINA_DEPRECATED EAPI void         elm_conformant_content_set(Evas_Object *obj, Evas_Object *content);
-
-/**
- * Get the content of the conformant widget.
- *
- * @param obj The conformant object.
- * @return The content that is being used.
- *
- * Return the content object which is set for this widget.
- * It won't be unparent from conformant. For that, use
- * elm_object_content_unset().
- *
- * @see elm_object_content_set().
- * @see elm_object_content_unset()
- *
- * @deprecated use elm_object_content_get() instead
- *
- */
-EINA_DEPRECATED EAPI Evas_Object *elm_conformant_content_get(const Evas_Object *obj);
-
-/**
- * Unset the content of the conformant widget.
- *
- * @param obj The conformant object.
- * @return The content that was being used.
- *
- * Unparent and return the content object which was set for this widget.
- *
- * @see elm_object_content_set().
- *
- * @deprecated use elm_object_content_unset() instead
- *
- */
-EINA_DEPRECATED EAPI Evas_Object *elm_conformant_content_unset(Evas_Object *obj);
-
 /**
  * Get the side labels max length.
  *
@@ -6021,72 +5846,6 @@ EINA_DEPRECATED EAPI void                         elm_toolbar_no_select_mode_set
  */
 EINA_DEPRECATED EAPI Eina_Bool                    elm_toolbar_no_select_mode_get(const Evas_Object *obj);
 
-/*
- * Set the interval on time updates for a user mouse button hold
- * on clock widgets' time edition.
- *
- * @param obj The clock object
- * @param interval The (first) interval value in seconds
- *
- * This interval value is @b decreased while the user holds the
- * mouse pointer either incrementing or decrementing a given the
- * clock digit's value.
- *
- * This helps the user to get to a given time distant from the
- * current one easier/faster, as it will start to flip quicker and
- * quicker on mouse button holds.
- *
- * The calculation for the next flip interval value, starting from
- * the one set with this call, is the previous interval divided by
- * 1.05, so it decreases a little bit.
- *
- * The default starting interval value for automatic flips is
- * @b 0.85 seconds.
- *
- * @deprecated elm_clock_first_interval_set()
- *
- */
-EINA_DEPRECATED EAPI void              elm_clock_interval_set(Evas_Object *obj, double interval);
-
-/**
- * Get the interval on time updates for a user mouse button hold
- * on clock widgets' time edition.
- *
- * @param obj The clock object
- * @return The (first) interval value, in seconds, set on it
- *
- * @elm_clock_first_interval_get()
- */
-EINA_DEPRECATED EAPI double            elm_clock_interval_get(const Evas_Object *obj);
-
-/**
- * Set what digits of the given clock widget should be editable
- * when in edition mode.
- *
- * @param obj The clock object
- * @param digedit Bit mask indicating the digits to be editable
- * (values in #Elm_Clock_Edit_Mode).
- *
- * If the @p digedit param is #ELM_CLOCK_NONE, editing will be
- * disabled on @p obj (same effect as elm_clock_edit_set(), with @c
- * EINA_FALSE).
- *
- * @deprecated elm_clock_edit_mode_set()
- */
-EINA_DEPRECATED EAPI void              elm_clock_digit_edit_set(Evas_Object *obj, Elm_Clock_Edit_Mode digedit);
-
-/**
- * Retrieve what digits of the given clock widget should be
- * editable when in edition mode.
- *
- * @param obj The clock object
- * @return Bit mask indicating the digits to be editable
- * (values in #Elm_Clock_Edit_Mode).
- *
- * @deprecated elm_clock_edit_mode_get()
- */
-EINA_DEPRECATED EAPI Elm_Clock_Edit_Mode elm_clock_digit_edit_get(const Evas_Object *obj);
-
 /**
  * Enable or disable always select mode on the list object.
  *
index 1434bca..f6833d2 100644 (file)
@@ -4605,3 +4605,33 @@ _entry_hover_anchor_clicked(void *data, Evas_Object *obj, void *event_info)
    evas_object_show(wd->anchor_hover.hover);
 }
 /* END - ANCHOR HOVER */
+
+EAPI void
+elm_entry_magnifier_disabled_set(Evas_Object *obj, Eina_Bool disabled)
+{
+   ELM_CHECK_WIDTYPE(obj, widtype);
+   Widget_Data *wd = elm_widget_data_get(obj);
+   if (!wd) return;
+   if (wd->magnifier_enabled == !disabled) return;
+   wd->magnifier_enabled = !disabled;
+}
+
+EAPI Eina_Bool
+elm_entry_magnifier_disabled_get(const Evas_Object *obj)
+{
+   ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
+   Widget_Data *wd = elm_widget_data_get(obj);
+   if (!wd) return EINA_FALSE;
+   return !wd->magnifier_enabled;
+}
+
+EAPI void
+elm_entry_magnifier_type_set(Evas_Object *obj, int type)
+{
+   ELM_CHECK_WIDTYPE(obj, widtype);
+   Widget_Data *wd = elm_widget_data_get(obj);
+   if (!wd) return;
+
+   wd->mgf_type = type;
+   _magnifier_create(obj);
+}
index 311d2bd..1743c57 100644 (file)
@@ -1550,5 +1550,23 @@ EAPI const char                 *elm_entry_anchor_hover_style_get(const Evas_Obj
 EAPI void                        elm_entry_anchor_hover_end(Evas_Object *obj);
 
 /**
+ * This disables the entry's magnifer feature.
+ *
+ * @param obj The entry object
+ * @param disabled If true, the magnifier is not displayed
+ */
+
+EAPI void         elm_entry_magnifier_disabled_set(Evas_Object *obj, Eina_Bool disabled);
+/**
+ * This returns whether the entry's magnifier feature is disabled.
+ *
+ * @param obj The entry object
+ * @return If true, the feature is disabled
+ */
+EAPI Eina_Bool    elm_entry_magnifier_disabled_get(const Evas_Object *obj);
+
+EAPI void                   elm_entry_magnifier_type_set(Evas_Object *obj, int type);
+
+/**
  * @}
  */
index 4dbecfc..70b7969 100644 (file)
@@ -851,46 +851,6 @@ EINA_DEPRECATED EAPI void                         elm_hoversel_item_del_cb_set(E
 EINA_DEPRECATED EAPI void                         elm_hoversel_item_del(Elm_Object_Item *it);
 
 /**
- * Set actionslider labels.
- *
- * @param obj The actionslider object
- * @param left_label The label to be set on the left.
- * @param center_label The label to be set on the center.
- * @param right_label The label to be set on the right.
- * @deprecated use elm_object_text_set() instead.
- */
-EINA_DEPRECATED EAPI void        elm_actionslider_labels_set(Evas_Object *obj, const char *left_label, const char *center_label, const char *right_label);
-
-/**
- * Get actionslider labels.
- *
- * @param obj The actionslider object
- * @param left_label A char** to place the left_label of @p obj into.
- * @param center_label A char** to place the center_label of @p obj into.
- * @param right_label A char** to place the right_label of @p obj into.
- * @deprecated use elm_object_text_set() instead.
- */
-EINA_DEPRECATED EAPI void        elm_actionslider_labels_get(const Evas_Object *obj, const char **left_label, const char **center_label, const char **right_label);
-
-/**
- * Set the label used on the indicator.
- *
- * @param obj The actionslider object
- * @param label The label to be set on the indicator.
- * @deprecated use elm_object_text_set() instead.
- */
-EINA_DEPRECATED EAPI void        elm_actionslider_indicator_label_set(Evas_Object *obj, const char *label);
-
-/**
- * Get the label used on the indicator object.
- *
- * @param obj The actionslider object
- * @return The indicator label
- * @deprecated use elm_object_text_get() instead.
- */
-EINA_DEPRECATED EAPI const char *elm_actionslider_indicator_label_get(Evas_Object *obj);
-
-/**
  * Set the overlay object used for the background object.
  *
  * @param obj The bg object
@@ -1138,76 +1098,6 @@ EINA_DEPRECATED EAPI Evas_Object *elm_button_icon_get(const Evas_Object *obj);
 EINA_DEPRECATED EAPI Evas_Object *elm_button_icon_unset(Evas_Object *obj);
 
 /**
- * Set a day text color to the same that represents Saturdays.
- *
- * @param obj The calendar object.
- * @param pos The text position. Position is the cell counter, from left
- * to right, up to down. It starts on 0 and ends on 41.
- *
- * @deprecated use elm_calendar_mark_add() instead like:
- *
- * @code
- * struct tm t = { 0, 0, 12, 6, 0, 0, 6, 6, -1 };
- * elm_calendar_mark_add(obj, "sat", &t, ELM_CALENDAR_WEEKLY);
- * @endcode
- *
- * @see elm_calendar_mark_add()
- *
- * @ingroup Calendar
- */
-EINA_DEPRECATED EAPI void elm_calendar_text_saturday_color_set(Evas_Object *obj, int pos);
-
-/**
- * Set a day text color to the same that represents Sundays.
- *
- * @param obj The calendar object.
- * @param pos The text position. Position is the cell counter, from left
- * to right, up to down. It starts on 0 and ends on 41.
-
- * @deprecated use elm_calendar_mark_add() instead like:
- *
- * @code
- * struct tm t = { 0, 0, 12, 7, 0, 0, 0, 0, -1 };
- * elm_calendar_mark_add(obj, "sat", &t, ELM_CALENDAR_WEEKLY);
- * @endcode
- *
- * @see elm_calendar_mark_add()
- *
- * @ingroup Calendar
- */
-EINA_DEPRECATED EAPI void elm_calendar_text_sunday_color_set(Evas_Object *obj, int pos);
-
-/**
- * Set a day text color to the same that represents Weekdays.
- *
- * @param obj The calendar object
- * @param pos The text position. Position is the cell counter, from left
- * to right, up to down. It starts on 0 and ends on 41.
- *
- * @deprecated use elm_calendar_mark_add() instead like:
- *
- * @code
- * struct tm t = { 0, 0, 12, 1, 0, 0, 0, 0, -1 };
- *
- * elm_calendar_mark_add(obj, "week", &t, ELM_CALENDAR_WEEKLY); // monday
- * t.tm_tm_mday++; t.tm_wday++; t.tm_yday++;
- * elm_calendar_mark_add(obj, "week", &t, ELM_CALENDAR_WEEKLY); // tuesday
- * t.tm_tm_mday++; t.tm_wday++; t.tm_yday++;
- * elm_calendar_mark_add(obj, "week", &t, ELM_CALENDAR_WEEKLY); // wednesday
- * t.tm_tm_mday++; t.tm_wday++; t.tm_yday++;
- * elm_calendar_mark_add(obj, "week", &t, ELM_CALENDAR_WEEKLY); // thursday
- * t.tm_tm_mday++; t.tm_wday++; t.tm_yday++;
- * elm_calendar_mark_add(obj, "week", &t, ELM_CALENDAR_WEEKLY); // friday
- * @endcode
- *
- * @see elm_calendar_mark_add()
- *
- * @ingroup Calendar
- */
-EINA_DEPRECATED EAPI void elm_calendar_text_weekday_color_set(Evas_Object *obj, int pos);
-
-
-/**
  * @brief Set the text label of the check object
  *
  * @param obj The check object
@@ -1329,6 +1219,72 @@ EINA_DEPRECATED EAPI void         elm_check_states_labels_set(Evas_Object *obj,
 EINA_DEPRECATED EAPI void         elm_check_states_labels_get(const Evas_Object *obj, const char **ontext, const char **offtext);
 
 
+/*
+ * Set the interval on time updates for a user mouse button hold
+ * on clock widgets' time edition.
+ *
+ * @param obj The clock object
+ * @param interval The (first) interval value in seconds
+ *
+ * This interval value is @b decreased while the user holds the
+ * mouse pointer either incrementing or decrementing a given the
+ * clock digit's value.
+ *
+ * This helps the user to get to a given time distant from the
+ * current one easier/faster, as it will start to flip quicker and
+ * quicker on mouse button holds.
+ *
+ * The calculation for the next flip interval value, starting from
+ * the one set with this call, is the previous interval divided by
+ * 1.05, so it decreases a little bit.
+ *
+ * The default starting interval value for automatic flips is
+ * @b 0.85 seconds.
+ *
+ * @deprecated elm_clock_first_interval_set()
+ *
+ */
+EINA_DEPRECATED EAPI void              elm_clock_interval_set(Evas_Object *obj, double interval);
+
+/**
+ * Get the interval on time updates for a user mouse button hold
+ * on clock widgets' time edition.
+ *
+ * @param obj The clock object
+ * @return The (first) interval value, in seconds, set on it
+ *
+ * @elm_clock_first_interval_get()
+ */
+EINA_DEPRECATED EAPI double            elm_clock_interval_get(const Evas_Object *obj);
+
+/**
+ * Set what digits of the given clock widget should be editable
+ * when in edition mode.
+ *
+ * @param obj The clock object
+ * @param digedit Bit mask indicating the digits to be editable
+ * (values in #Elm_Clock_Edit_Mode).
+ *
+ * If the @p digedit param is #ELM_CLOCK_NONE, editing will be
+ * disabled on @p obj (same effect as elm_clock_edit_set(), with @c
+ * EINA_FALSE).
+ *
+ * @deprecated elm_clock_edit_mode_set()
+ */
+EINA_DEPRECATED EAPI void              elm_clock_digit_edit_set(Evas_Object *obj, Elm_Clock_Edit_Mode digedit);
+
+/**
+ * Retrieve what digits of the given clock widget should be
+ * editable when in edition mode.
+ *
+ * @param obj The clock object
+ * @return Bit mask indicating the digits to be editable
+ * (values in #Elm_Clock_Edit_Mode).
+ *
+ * @deprecated elm_clock_edit_mode_get()
+ */
+EINA_DEPRECATED EAPI Elm_Clock_Edit_Mode elm_clock_digit_edit_get(const Evas_Object *obj);
+
 /**
  * Set the content of the conformant widget.
  *