Merge "custom eail widget implementation" into tizen
[platform/core/uifw/eail.git] / tests / eail_flip_tc2.c
1 /*
2  * Tested interface: AtkAction
3  *
4  * Tested AtkObject: EailFlip
5  *
6  * Description: Test AtkAction interface
7  *
8  * Test input: accessible object representing EailFlip
9  *
10  * Expected test result: test should return 0 (success)
11  */
12
13 #include <Elementary.h>
14 #include <atk/atk.h>
15
16 #define DEBUG 1
17
18 #include "eail_test_utils.h"
19
20 #define ACTIONS_NUMBER 1
21
22 INIT_TEST("EailFlip")
23
24 static void
25 _init_flip(Evas_Object *win)
26 {
27    Evas_Object *bg, *image, *icon, *flip;
28
29    bg = elm_bg_add(win);
30    elm_win_resize_object_add(win, bg);
31    evas_object_size_hint_weight_set(bg, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
32    evas_object_show(bg);
33
34    image = elm_image_add(win);
35    g_assert(elm_image_file_set(image, "./data/07.jpg", NULL));
36    evas_object_size_hint_weight_set(image, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
37    elm_win_resize_object_add(win, image);
38    evas_object_show(image);
39
40    icon = elm_icon_add(win);
41    elm_icon_order_lookup_set(icon, ELM_ICON_LOOKUP_THEME_FDO);
42    elm_icon_standard_set(icon, "home");
43    elm_win_resize_object_add(win, icon);
44    evas_object_show(icon);
45
46    flip = elm_flip_add(win);
47    elm_object_part_content_set(flip, "front", image);
48    elm_object_part_content_set(flip, "back", icon);
49    evas_object_show(flip);
50
51    elm_flip_interaction_set(flip, ELM_FLIP_INTERACTION_PAGE);
52    elm_flip_interaction_direction_enabled_set(flip, ELM_FLIP_DIRECTION_UP, EINA_TRUE);
53    elm_flip_interaction_direction_enabled_set(flip, ELM_FLIP_DIRECTION_DOWN, EINA_TRUE);
54    elm_flip_interaction_direction_enabled_set(flip, ELM_FLIP_DIRECTION_LEFT, EINA_TRUE);
55    elm_flip_interaction_direction_enabled_set(flip, ELM_FLIP_DIRECTION_RIGHT, EINA_TRUE);
56    elm_flip_interaction_direction_hitsize_set(flip, ELM_FLIP_DIRECTION_UP, 1);
57    elm_flip_interaction_direction_hitsize_set(flip, ELM_FLIP_DIRECTION_DOWN, 1);
58    elm_flip_interaction_direction_hitsize_set(flip, ELM_FLIP_DIRECTION_LEFT, 1);
59    elm_flip_interaction_direction_hitsize_set(flip, ELM_FLIP_DIRECTION_RIGHT, 1);
60 }
61
62 static void
63 _do_test(AtkObject *obj)
64 {
65    g_assert(ATK_IS_ACTION(obj));
66
67    g_assert(ACTIONS_NUMBER == atk_action_get_n_actions(ATK_ACTION(obj)));
68
69    eailu_test_action_activate(ATK_ACTION(obj), "flip");
70
71    g_assert(-1 == (eailu_get_action_number(ATK_ACTION(obj), "typo")));
72
73    eailu_test_action_description_all(ATK_ACTION(obj));
74
75    eailu_test_code_called = 1;
76 }
77
78 EAPI_MAIN int
79 elm_main(int argc, char **argv)
80 {
81    Evas_Object *win;
82
83    win = eailu_create_test_window_with_glib_init(_on_done, _on_focus_in);
84    g_assert(win);
85    _init_flip(win);
86    evas_object_show(win);
87    elm_run();
88    elm_shutdown();
89
90    return 0;
91 }
92 ELM_MAIN()