diff options
author | Tom Hacohen <tom@stosb.com> | 2014-06-03 14:21:17 +0100 |
---|---|---|
committer | Tom Hacohen <tom@stosb.com> | 2014-06-03 14:21:17 +0100 |
commit | acf7130b52aea6574db1905f7ed18f0221d0dc62 (patch) | |
tree | 22adb99e1b0b8b73f610f71be86172d4ead0cf6e | |
parent | 4848c66d47ef258f18963aeb9dbbd865d9f3e04e (diff) |
Update code according to the recent eolian generation changes.
96 files changed, 130 insertions, 130 deletions
diff --git a/src/bin/about.c b/src/bin/about.c index 1023b9a..a6a7b5d 100644 --- a/src/bin/about.c +++ b/src/bin/about.c | |||
@@ -8,7 +8,7 @@ _setup(void) | |||
8 | Evas_Object *o; | 8 | Evas_Object *o; |
9 | Evas_Textblock_Style *st; | 9 | Evas_Textblock_Style *st; |
10 | 10 | ||
11 | o = eo_add(EVAS_OBJ_TEXTBLOCK_CLASS, evas); | 11 | o = eo_add(EVAS_TEXTBLOCK_CLASS, evas); |
12 | if (o) | 12 | if (o) |
13 | eo_do(o, evas_obj_position_set(10, 40), | 13 | eo_do(o, evas_obj_position_set(10, 40), |
14 | evas_obj_size_set(win_w - 20, win_h - 50), | 14 | evas_obj_size_set(win_w - 20, win_h - 50), |
diff --git a/src/bin/image_blend_border.c b/src/bin/image_blend_border.c index 103c70c..ff2dfee 100644 --- a/src/bin/image_blend_border.c +++ b/src/bin/image_blend_border.c | |||
@@ -23,7 +23,7 @@ static void _setup(void) | |||
23 | Evas_Object *o; | 23 | Evas_Object *o; |
24 | for (i = 0; i < OBNUM; i++) | 24 | for (i = 0; i < OBNUM; i++) |
25 | { | 25 | { |
26 | o = eo_add(EVAS_OBJ_IMAGE_CLASS, evas); | 26 | o = eo_add(EVAS_IMAGE_CLASS, evas); |
27 | o_images[i] = o; | 27 | o_images[i] = o; |
28 | if (o) | 28 | if (o) |
29 | eo_do(o, evas_obj_image_file_set(build_path("bar.png"), NULL), | 29 | eo_do(o, evas_obj_image_file_set(build_path("bar.png"), NULL), |
diff --git a/src/bin/image_blend_border_recolor.c b/src/bin/image_blend_border_recolor.c index 3b03606..54527f8 100644 --- a/src/bin/image_blend_border_recolor.c +++ b/src/bin/image_blend_border_recolor.c | |||
@@ -23,7 +23,7 @@ static void _setup(void) | |||
23 | Evas_Object *o; | 23 | Evas_Object *o; |
24 | for (i = 0; i < OBNUM; i++) | 24 | for (i = 0; i < OBNUM; i++) |
25 | { | 25 | { |
26 | o = eo_add(EVAS_OBJ_IMAGE_CLASS, evas); | 26 | o = eo_add(EVAS_IMAGE_CLASS, evas); |
27 | o_images[i] = o; | 27 | o_images[i] = o; |
28 | if (o) | 28 | if (o) |
29 | eo_do(o, evas_obj_image_file_set(build_path("pan.png"), NULL), | 29 | eo_do(o, evas_obj_image_file_set(build_path("pan.png"), NULL), |
diff --git a/src/bin/image_blend_fade_pow2_unscaled.c b/src/bin/image_blend_fade_pow2_unscaled.c index c061c96..3aab91d 100644 --- a/src/bin/image_blend_fade_pow2_unscaled.c +++ b/src/bin/image_blend_fade_pow2_unscaled.c | |||
@@ -25,7 +25,7 @@ static void _setup(void) | |||
25 | { | 25 | { |
26 | int a; | 26 | int a; |
27 | 27 | ||
28 | o = eo_add(EVAS_OBJ_IMAGE_CLASS, evas); | 28 | o = eo_add(EVAS_IMAGE_CLASS, evas); |
29 | o_images[i] = o; | 29 | o_images[i] = o; |
30 | if (o) | 30 | if (o) |
31 | eo_do(o, evas_obj_image_file_set(build_path("logo.png"), NULL), | 31 | eo_do(o, evas_obj_image_file_set(build_path("logo.png"), NULL), |
diff --git a/src/bin/image_blend_fade_unscaled.c b/src/bin/image_blend_fade_unscaled.c index b489238..06e4980 100644 --- a/src/bin/image_blend_fade_unscaled.c +++ b/src/bin/image_blend_fade_unscaled.c | |||
@@ -24,7 +24,7 @@ static void _setup(void) | |||
24 | for (i = 0; i < OBNUM; i++) | 24 | for (i = 0; i < OBNUM; i++) |
25 | { | 25 | { |
26 | int a; | 26 | int a; |
27 | o = eo_add(EVAS_OBJ_IMAGE_CLASS, evas); | 27 | o = eo_add(EVAS_IMAGE_CLASS, evas); |
28 | o_images[i] = o; | 28 | o_images[i] = o; |
29 | if (o) | 29 | if (o) |
30 | eo_do(o, evas_obj_image_file_set(build_path("logo.png"), NULL), | 30 | eo_do(o, evas_obj_image_file_set(build_path("logo.png"), NULL), |
diff --git a/src/bin/image_blend_many_smooth_same_scaled.c b/src/bin/image_blend_many_smooth_same_scaled.c index 2f56d8a..eb29468 100644 --- a/src/bin/image_blend_many_smooth_same_scaled.c +++ b/src/bin/image_blend_many_smooth_same_scaled.c | |||
@@ -25,7 +25,7 @@ static void _setup(void) | |||
25 | Evas_Object *o; | 25 | Evas_Object *o; |
26 | for (i = 0; i < MANYNUM; i++) | 26 | for (i = 0; i < MANYNUM; i++) |
27 | { | 27 | { |
28 | o = eo_add(EVAS_OBJ_IMAGE_CLASS, evas); | 28 | o = eo_add(EVAS_IMAGE_CLASS, evas); |
29 | o_images[i] = o; | 29 | o_images[i] = o; |
30 | n = rnd() % 100; | 30 | n = rnd() % 100; |
31 | w = 3 + ((n * (60 - 3)) / 100); | 31 | w = 3 + ((n * (60 - 3)) / 100); |
diff --git a/src/bin/image_blend_nearest_same_scaled.c b/src/bin/image_blend_nearest_same_scaled.c index bc5903a..9567181 100644 --- a/src/bin/image_blend_nearest_same_scaled.c +++ b/src/bin/image_blend_nearest_same_scaled.c | |||
@@ -23,7 +23,7 @@ static void _setup(void) | |||
23 | Evas_Object *o; | 23 | Evas_Object *o; |
24 | for (i = 0; i < OBNUM; i++) | 24 | for (i = 0; i < OBNUM; i++) |
25 | { | 25 | { |
26 | o = eo_add(EVAS_OBJ_IMAGE_CLASS, evas); | 26 | o = eo_add(EVAS_IMAGE_CLASS, evas); |
27 | o_images[i] = o; | 27 | o_images[i] = o; |
28 | if (o) | 28 | if (o) |
29 | eo_do(o, evas_obj_image_file_set(build_path("logo.png"), NULL), | 29 | eo_do(o, evas_obj_image_file_set(build_path("logo.png"), NULL), |
diff --git a/src/bin/image_blend_nearest_scaled.c b/src/bin/image_blend_nearest_scaled.c index 0faf59f..ad84c44 100644 --- a/src/bin/image_blend_nearest_scaled.c +++ b/src/bin/image_blend_nearest_scaled.c | |||
@@ -23,7 +23,7 @@ static void _setup(void) | |||
23 | Evas_Object *o; | 23 | Evas_Object *o; |
24 | for (i = 0; i < OBNUM; i++) | 24 | for (i = 0; i < OBNUM; i++) |
25 | { | 25 | { |
26 | o = eo_add(EVAS_OBJ_IMAGE_CLASS, evas); | 26 | o = eo_add(EVAS_IMAGE_CLASS, evas); |
27 | o_images[i] = o; | 27 | o_images[i] = o; |
28 | if (o) | 28 | if (o) |
29 | eo_do(o, evas_obj_image_file_set(build_path("logo.png"), NULL), | 29 | eo_do(o, evas_obj_image_file_set(build_path("logo.png"), NULL), |
diff --git a/src/bin/image_blend_nearest_solid_same_scaled.c b/src/bin/image_blend_nearest_solid_same_scaled.c index 3c46fbc..048b77f 100644 --- a/src/bin/image_blend_nearest_solid_same_scaled.c +++ b/src/bin/image_blend_nearest_solid_same_scaled.c | |||
@@ -23,7 +23,7 @@ static void _setup(void) | |||
23 | Evas_Object *o; | 23 | Evas_Object *o; |
24 | for (i = 0; i < OBNUM; i++) | 24 | for (i = 0; i < OBNUM; i++) |
25 | { | 25 | { |
26 | o = eo_add(EVAS_OBJ_IMAGE_CLASS, evas); | 26 | o = eo_add(EVAS_IMAGE_CLASS, evas); |
27 | o_images[i] = o; | 27 | o_images[i] = o; |
28 | if (o) | 28 | if (o) |
29 | eo_do(o, evas_obj_image_file_set(build_path("image.png"), NULL), | 29 | eo_do(o, evas_obj_image_file_set(build_path("image.png"), NULL), |
diff --git a/src/bin/image_blend_nearest_solid_scaled.c b/src/bin/image_blend_nearest_solid_scaled.c index 5196aff..1dc759a 100644 --- a/src/bin/image_blend_nearest_solid_scaled.c +++ b/src/bin/image_blend_nearest_solid_scaled.c | |||
@@ -23,7 +23,7 @@ static void _setup(void) | |||
23 | Evas_Object *o; | 23 | Evas_Object *o; |
24 | for (i = 0; i < OBNUM; i++) | 24 | for (i = 0; i < OBNUM; i++) |
25 | { | 25 | { |
26 | o = eo_add(EVAS_OBJ_IMAGE_CLASS, evas); | 26 | o = eo_add(EVAS_IMAGE_CLASS, evas); |
27 | o_images[i] = o; | 27 | o_images[i] = o; |
28 | if (o) | 28 | if (o) |
29 | eo_do(o, evas_obj_image_file_set(build_path("image.png"), NULL), | 29 | eo_do(o, evas_obj_image_file_set(build_path("image.png"), NULL), |
diff --git a/src/bin/image_blend_occlude1.c b/src/bin/image_blend_occlude1.c index f28a980..8428973 100644 --- a/src/bin/image_blend_occlude1.c +++ b/src/bin/image_blend_occlude1.c | |||
@@ -24,7 +24,7 @@ static void _setup(void) | |||
24 | srnd(); | 24 | srnd(); |
25 | for (i = 0; i < OBNUM; i++) | 25 | for (i = 0; i < OBNUM; i++) |
26 | { | 26 | { |
27 | o = eo_add(EVAS_OBJ_IMAGE_CLASS, evas); | 27 | o = eo_add(EVAS_IMAGE_CLASS, evas); |
28 | o_images[i] = o; | 28 | o_images[i] = o; |
29 | if (i < (OBNUM / 2)) | 29 | if (i < (OBNUM / 2)) |
30 | { | 30 | { |
diff --git a/src/bin/image_blend_occlude1_few.c b/src/bin/image_blend_occlude1_few.c index c3f9ab8..02a1c02 100644 --- a/src/bin/image_blend_occlude1_few.c +++ b/src/bin/image_blend_occlude1_few.c | |||
@@ -27,7 +27,7 @@ static void _setup(void) | |||
27 | srnd(); | 27 | srnd(); |
28 | for (i = 0; i < OBNUM; i++) | 28 | for (i = 0; i < OBNUM; i++) |
29 | { | 29 | { |
30 | o = eo_add(EVAS_OBJ_IMAGE_CLASS, evas); | 30 | o = eo_add(EVAS_IMAGE_CLASS, evas); |
31 | o_images[i] = o; | 31 | o_images[i] = o; |
32 | if (i < (OBNUM / 2)) | 32 | if (i < (OBNUM / 2)) |
33 | { | 33 | { |
diff --git a/src/bin/image_blend_occlude1_many.c b/src/bin/image_blend_occlude1_many.c index 2a396d9..d39b169 100644 --- a/src/bin/image_blend_occlude1_many.c +++ b/src/bin/image_blend_occlude1_many.c | |||
@@ -27,7 +27,7 @@ static void _setup(void) | |||
27 | srnd(); | 27 | srnd(); |
28 | for (i = 0; i < OBNUM; i++) | 28 | for (i = 0; i < OBNUM; i++) |
29 | { | 29 | { |
30 | o = eo_add(EVAS_OBJ_IMAGE_CLASS, evas); | 30 | o = eo_add(EVAS_IMAGE_CLASS, evas); |
31 | o_images[i] = o; | 31 | o_images[i] = o; |
32 | if (i < (OBNUM / 2)) | 32 | if (i < (OBNUM / 2)) |
33 | { | 33 | { |
diff --git a/src/bin/image_blend_occlude1_very_many.c b/src/bin/image_blend_occlude1_very_many.c index 09428df..15013f8 100644 --- a/src/bin/image_blend_occlude1_very_many.c +++ b/src/bin/image_blend_occlude1_very_many.c | |||
@@ -27,7 +27,7 @@ static void _setup(void) | |||
27 | srnd(); | 27 | srnd(); |
28 | for (i = 0; i < OBNUM; i++) | 28 | for (i = 0; i < OBNUM; i++) |
29 | { | 29 | { |
30 | o = eo_add(EVAS_OBJ_IMAGE_CLASS, evas); | 30 | o = eo_add(EVAS_IMAGE_CLASS, evas); |
31 | o_images[i] = o; | 31 | o_images[i] = o; |
32 | if (i < (OBNUM / 2)) | 32 | if (i < (OBNUM / 2)) |
33 | { | 33 | { |
diff --git a/src/bin/image_blend_occlude2.c b/src/bin/image_blend_occlude2.c index 95fe06c..9463c00 100644 --- a/src/bin/image_blend_occlude2.c +++ b/src/bin/image_blend_occlude2.c | |||
@@ -24,7 +24,7 @@ static void _setup(void) | |||
24 | srnd(); | 24 | srnd(); |
25 | for (i = 0; i < OBNUM; i++) | 25 | for (i = 0; i < OBNUM; i++) |
26 | { | 26 | { |
27 | o = eo_add(EVAS_OBJ_IMAGE_CLASS, evas); | 27 | o = eo_add(EVAS_IMAGE_CLASS, evas); |
28 | o_images[i] = o; | 28 | o_images[i] = o; |
29 | if (i & 0x1) | 29 | if (i & 0x1) |
30 | { | 30 | { |
diff --git a/src/bin/image_blend_occlude2_few.c b/src/bin/image_blend_occlude2_few.c index 7086a38..247784d 100644 --- a/src/bin/image_blend_occlude2_few.c +++ b/src/bin/image_blend_occlude2_few.c | |||
@@ -27,7 +27,7 @@ static void _setup(void) | |||
27 | srnd(); | 27 | srnd(); |
28 | for (i = 0; i < OBNUM; i++) | 28 | for (i = 0; i < OBNUM; i++) |
29 | { | 29 | { |
30 | o = eo_add(EVAS_OBJ_IMAGE_CLASS, evas); | 30 | o = eo_add(EVAS_IMAGE_CLASS, evas); |
31 | o_images[i] = o; | 31 | o_images[i] = o; |
32 | if (i & 0x1) | 32 | if (i & 0x1) |
33 | { | 33 | { |
diff --git a/src/bin/image_blend_occlude2_many.c b/src/bin/image_blend_occlude2_many.c index ed7bee5..3fb7126 100644 --- a/src/bin/image_blend_occlude2_many.c +++ b/src/bin/image_blend_occlude2_many.c | |||
@@ -27,7 +27,7 @@ static void _setup(void) | |||
27 | srnd(); | 27 | srnd(); |
28 | for (i = 0; i < OBNUM; i++) | 28 | for (i = 0; i < OBNUM; i++) |
29 | { | 29 | { |
30 | o = eo_add(EVAS_OBJ_IMAGE_CLASS, evas); | 30 | o = eo_add(EVAS_IMAGE_CLASS, evas); |
31 | o_images[i] = o; | 31 | o_images[i] = o; |
32 | if (i & 0x1) | 32 | if (i & 0x1) |
33 | { | 33 | { |
diff --git a/src/bin/image_blend_occlude2_very_many.c b/src/bin/image_blend_occlude2_very_many.c index 7d91162..204d418 100644 --- a/src/bin/image_blend_occlude2_very_many.c +++ b/src/bin/image_blend_occlude2_very_many.c | |||
@@ -27,7 +27,7 @@ static void _setup(void) | |||
27 | srnd(); | 27 | srnd(); |
28 | for (i = 0; i < OBNUM; i++) | 28 | for (i = 0; i < OBNUM; i++) |
29 | { | 29 | { |
30 | o = eo_add(EVAS_OBJ_IMAGE_CLASS, evas); | 30 | o = eo_add(EVAS_IMAGE_CLASS, evas); |
31 | o_images[i] = o; | 31 | o_images[i] = o; |
32 | if (i & 0x1) | 32 | if (i & 0x1) |
33 | { | 33 | { |
diff --git a/src/bin/image_blend_occlude3.c b/src/bin/image_blend_occlude3.c index c464d80..629fbcb 100644 --- a/src/bin/image_blend_occlude3.c +++ b/src/bin/image_blend_occlude3.c | |||
@@ -24,7 +24,7 @@ static void _setup(void) | |||
24 | srnd(); | 24 | srnd(); |
25 | for (i = 0; i < OBNUM; i++) | 25 | for (i = 0; i < OBNUM; i++) |
26 | { | 26 | { |
27 | o = eo_add(EVAS_OBJ_IMAGE_CLASS, evas); | 27 | o = eo_add(EVAS_IMAGE_CLASS, evas); |
28 | o_images[i] = o; | 28 | o_images[i] = o; |
29 | if (i > (OBNUM / 2)) | 29 | if (i > (OBNUM / 2)) |
30 | { | 30 | { |
diff --git a/src/bin/image_blend_occlude3_few.c b/src/bin/image_blend_occlude3_few.c index 9ea8778..25dc0f2 100644 --- a/src/bin/image_blend_occlude3_few.c +++ b/src/bin/image_blend_occlude3_few.c | |||
@@ -27,7 +27,7 @@ static void _setup(void) | |||
27 | srnd(); | 27 | srnd(); |
28 | for (i = 0; i < OBNUM; i++) | 28 | for (i = 0; i < OBNUM; i++) |
29 | { | 29 | { |
30 | o = eo_add(EVAS_OBJ_IMAGE_CLASS, evas); | 30 | o = eo_add(EVAS_IMAGE_CLASS, evas); |
31 | o_images[i] = o; | 31 | o_images[i] = o; |
32 | if (i > (OBNUM / 2)) | 32 | if (i > (OBNUM / 2)) |
33 | { | 33 | { |
diff --git a/src/bin/image_blend_occlude3_many.c b/src/bin/image_blend_occlude3_many.c index 9ab2ab1..96c873b 100644 --- a/src/bin/image_blend_occlude3_many.c +++ b/src/bin/image_blend_occlude3_many.c | |||
@@ -27,7 +27,7 @@ static void _setup(void) | |||
27 | srnd(); | 27 | srnd(); |
28 | for (i = 0; i < OBNUM; i++) | 28 | for (i = 0; i < OBNUM; i++) |
29 | { | 29 | { |
30 | o = eo_add(EVAS_OBJ_IMAGE_CLASS, evas); | 30 | o = eo_add(EVAS_IMAGE_CLASS, evas); |
31 | o_images[i] = o; | 31 | o_images[i] = o; |
32 | if (i > (OBNUM / 2)) | 32 | if (i > (OBNUM / 2)) |
33 | { | 33 | { |
diff --git a/src/bin/image_blend_occlude3_very_many.c b/src/bin/image_blend_occlude3_very_many.c index 3aedd91..097d20b 100644 --- a/src/bin/image_blend_occlude3_very_many.c +++ b/src/bin/image_blend_occlude3_very_many.c | |||
@@ -27,7 +27,7 @@ static void _setup(void) | |||
27 | srnd(); | 27 | srnd(); |
28 | for (i = 0; i < OBNUM; i++) | 28 | for (i = 0; i < OBNUM; i++) |
29 | { | 29 | { |
30 | o = eo_add(EVAS_OBJ_IMAGE_CLASS, evas); | 30 | o = eo_add(EVAS_IMAGE_CLASS, evas); |
31 | o_images[i] = o; | 31 | o_images[i] = o; |
32 | if (i > (OBNUM / 2)) | 32 | if (i > (OBNUM / 2)) |
33 | { | 33 | { |
diff --git a/src/bin/image_blend_smooth_same_scaled.c b/src/bin/image_blend_smooth_same_scaled.c index ddf1b43..7fe2287 100644 --- a/src/bin/image_blend_smooth_same_scaled.c +++ b/src/bin/image_blend_smooth_same_scaled.c | |||
@@ -23,7 +23,7 @@ static void _setup(void) | |||
23 | Evas_Object *o; | 23 | Evas_Object *o; |
24 | for (i = 0; i < OBNUM; i++) | 24 | for (i = 0; i < OBNUM; i++) |
25 | { | 25 | { |
26 | o = eo_add(EVAS_OBJ_IMAGE_CLASS, evas); | 26 | o = eo_add(EVAS_IMAGE_CLASS, evas); |
27 | o_images[i] = o; | 27 | o_images[i] = o; |
28 | if (o) | 28 | if (o) |
29 | eo_do(o, evas_obj_image_file_set(build_path("logo.png"), NULL), | 29 | eo_do(o, evas_obj_image_file_set(build_path("logo.png"), NULL), |
diff --git a/src/bin/image_blend_smooth_scaled.c b/src/bin/image_blend_smooth_scaled.c index e93babf..0c302a8 100644 --- a/src/bin/image_blend_smooth_scaled.c +++ b/src/bin/image_blend_smooth_scaled.c | |||
@@ -23,7 +23,7 @@ static void _setup(void) | |||
23 | Evas_Object *o; | 23 | Evas_Object *o; |
24 | for (i = 0; i < OBNUM; i++) | 24 | for (i = 0; i < OBNUM; i++) |
25 | { | 25 | { |
26 | o = eo_add(EVAS_OBJ_IMAGE_CLASS, evas); | 26 | o = eo_add(EVAS_IMAGE_CLASS, evas); |
27 | o_images[i] = o; | 27 | o_images[i] = o; |
28 | if (o) | 28 | if (o) |
29 | eo_do(o, evas_obj_image_file_set(build_path("logo.png"), NULL), | 29 | eo_do(o, evas_obj_image_file_set(build_path("logo.png"), NULL), |
diff --git a/src/bin/image_blend_smooth_solid_same_scaled.c b/src/bin/image_blend_smooth_solid_same_scaled.c index a62421f..df61030 100644 --- a/src/bin/image_blend_smooth_solid_same_scaled.c +++ b/src/bin/image_blend_smooth_solid_same_scaled.c | |||
@@ -23,7 +23,7 @@ static void _setup(void) | |||
23 | Evas_Object *o; | 23 | Evas_Object *o; |
24 | for (i = 0; i < OBNUM; i++) | 24 | for (i = 0; i < OBNUM; i++) |
25 | { | 25 | { |
26 | o = eo_add(EVAS_OBJ_IMAGE_CLASS, evas); | 26 | o = eo_add(EVAS_IMAGE_CLASS, evas); |
27 | o_images[i] = o; | 27 | o_images[i] = o; |
28 | if (o) | 28 | if (o) |
29 | eo_do(o, evas_obj_image_file_set(build_path("image.png"), NULL), | 29 | eo_do(o, evas_obj_image_file_set(build_path("image.png"), NULL), |
diff --git a/src/bin/image_blend_smooth_solid_scaled.c b/src/bin/image_blend_smooth_solid_scaled.c index b902d73..2ea4525 100644 --- a/src/bin/image_blend_smooth_solid_scaled.c +++ b/src/bin/image_blend_smooth_solid_scaled.c | |||
@@ -23,7 +23,7 @@ static void _setup(void) | |||
23 | Evas_Object *o; | 23 | Evas_Object *o; |
24 | for (i = 0; i < OBNUM; i++) | 24 | for (i = 0; i < OBNUM; i++) |
25 | { | 25 | { |
26 | o = eo_add(EVAS_OBJ_IMAGE_CLASS, evas); | 26 | o = eo_add(EVAS_IMAGE_CLASS, evas); |
27 | o_images[i] = o; | 27 | o_images[i] = o; |
28 | if (o) | 28 | if (o) |
29 | eo_do(o, evas_obj_image_file_set(build_path("image.png"), NULL), | 29 | eo_do(o, evas_obj_image_file_set(build_path("image.png"), NULL), |
diff --git a/src/bin/image_blend_solid_border.c b/src/bin/image_blend_solid_border.c index e9e3e4d..62ab251 100644 --- a/src/bin/image_blend_solid_border.c +++ b/src/bin/image_blend_solid_border.c | |||
@@ -23,7 +23,7 @@ static void _setup(void) | |||
23 | Evas_Object *o; | 23 | Evas_Object *o; |
24 | for (i = 0; i < OBNUM; i++) | 24 | for (i = 0; i < OBNUM; i++) |
25 | { | 25 | { |
26 | o = eo_add(EVAS_OBJ_IMAGE_CLASS, evas); | 26 | o = eo_add(EVAS_IMAGE_CLASS, evas); |
27 | o_images[i] = o; | 27 | o_images[i] = o; |
28 | if (o) | 28 | if (o) |
29 | eo_do(o, evas_obj_image_file_set(build_path("frame.png"), NULL), | 29 | eo_do(o, evas_obj_image_file_set(build_path("frame.png"), NULL), |
diff --git a/src/bin/image_blend_solid_fade_pow2_unscaled.c b/src/bin/image_blend_solid_fade_pow2_unscaled.c index 19e3227..54b4f0f 100644 --- a/src/bin/image_blend_solid_fade_pow2_unscaled.c +++ b/src/bin/image_blend_solid_fade_pow2_unscaled.c | |||
@@ -25,7 +25,7 @@ static void _setup(void) | |||
25 | { | 25 | { |
26 | int a; | 26 | int a; |
27 | 27 | ||
28 | o = eo_add(EVAS_OBJ_IMAGE_CLASS, evas); | 28 | o = eo_add(EVAS_IMAGE_CLASS, evas); |
29 | o_images[i] = o; | 29 | o_images[i] = o; |
30 | if (o) | 30 | if (o) |
31 | eo_do(o, evas_obj_image_file_set(build_path("image.png"), NULL), | 31 | eo_do(o, evas_obj_image_file_set(build_path("image.png"), NULL), |
diff --git a/src/bin/image_blend_solid_fade_unscaled.c b/src/bin/image_blend_solid_fade_unscaled.c index 001d942..f2cf861 100644 --- a/src/bin/image_blend_solid_fade_unscaled.c +++ b/src/bin/image_blend_solid_fade_unscaled.c | |||
@@ -25,7 +25,7 @@ static void _setup(void) | |||
25 | { | 25 | { |
26 | int a; | 26 | int a; |
27 | 27 | ||
28 | o = eo_add(EVAS_OBJ_IMAGE_CLASS, evas); | 28 | o = eo_add(EVAS_IMAGE_CLASS, evas); |
29 | o_images[i] = o; | 29 | o_images[i] = o; |
30 | if (o) | 30 | if (o) |
31 | eo_do(o, evas_obj_image_file_set(build_path("image.png"), NULL), | 31 | eo_do(o, evas_obj_image_file_set(build_path("image.png"), NULL), |
diff --git a/src/bin/image_blend_solid_middle_border.c b/src/bin/image_blend_solid_middle_border.c index da53f69..8e5c7de 100644 --- a/src/bin/image_blend_solid_middle_border.c +++ b/src/bin/image_blend_solid_middle_border.c | |||
@@ -23,7 +23,7 @@ static void _setup(void) | |||
23 | Evas_Object *o; | 23 | Evas_Object *o; |
24 | for (i = 0; i < OBNUM; i++) | 24 | for (i = 0; i < OBNUM; i++) |
25 | { | 25 | { |
26 | o = eo_add(EVAS_OBJ_IMAGE_CLASS, evas); | 26 | o = eo_add(EVAS_IMAGE_CLASS, evas); |
27 | o_images[i] = o; | 27 | o_images[i] = o; |
28 | if (o) | 28 | if (o) |
29 | eo_do(o, evas_obj_image_file_set(build_path("bar.png"), NULL), | 29 | eo_do(o, evas_obj_image_file_set(build_path("bar.png"), NULL), |
diff --git a/src/bin/image_blend_solid_middle_unscaled.c b/src/bin/image_blend_solid_middle_unscaled.c index a914f25..7163a1b 100644 --- a/src/bin/image_blend_solid_middle_unscaled.c +++ b/src/bin/image_blend_solid_middle_unscaled.c | |||
@@ -23,7 +23,7 @@ static void _setup(void) | |||
23 | Evas_Object *o; | 23 | Evas_Object *o; |
24 | for (i = 0; i < OBNUM; i++) | 24 | for (i = 0; i < OBNUM; i++) |
25 | { | 25 | { |
26 | o = eo_add(EVAS_OBJ_IMAGE_CLASS, evas); | 26 | o = eo_add(EVAS_IMAGE_CLASS, evas); |
27 | o_images[i] = o; | 27 | o_images[i] = o; |
28 | if (o) | 28 | if (o) |
29 | eo_do(o, evas_obj_image_file_set(build_path("logo.png"), NULL), | 29 | eo_do(o, evas_obj_image_file_set(build_path("logo.png"), NULL), |
diff --git a/src/bin/image_blend_solid_unscaled.c b/src/bin/image_blend_solid_unscaled.c index 895b3fa..bec8612 100644 --- a/src/bin/image_blend_solid_unscaled.c +++ b/src/bin/image_blend_solid_unscaled.c | |||
@@ -23,7 +23,7 @@ static void _setup(void) | |||
23 | Evas_Object *o; | 23 | Evas_Object *o; |
24 | for (i = 0; i < OBNUM; i++) | 24 | for (i = 0; i < OBNUM; i++) |
25 | { | 25 | { |
26 | o = eo_add(EVAS_OBJ_IMAGE_CLASS, evas); | 26 | o = eo_add(EVAS_IMAGE_CLASS, evas); |
27 | o_images[i] = o; | 27 | o_images[i] = o; |
28 | if (o) | 28 | if (o) |
29 | eo_do(o, evas_obj_image_file_set(build_path("image.png"), NULL), | 29 | eo_do(o, evas_obj_image_file_set(build_path("image.png"), NULL), |
diff --git a/src/bin/image_blend_unscaled.c b/src/bin/image_blend_unscaled.c index 8ec102a..5652e60 100644 --- a/src/bin/image_blend_unscaled.c +++ b/src/bin/image_blend_unscaled.c | |||
@@ -23,7 +23,7 @@ static void _setup(void) | |||
23 | Evas_Object *o; | 23 | Evas_Object *o; |
24 | for (i = 0; i < OBNUM; i++) | 24 | for (i = 0; i < OBNUM; i++) |
25 | { | 25 | { |
26 | o = eo_add(EVAS_OBJ_IMAGE_CLASS, evas); | 26 | o = eo_add(EVAS_IMAGE_CLASS, evas); |
27 | o_images[i] = o; | 27 | o_images[i] = o; |
28 | if (o) | 28 | if (o) |
29 | eo_do(o, evas_obj_image_file_set(build_path("logo.png"), NULL), | 29 | eo_do(o, evas_obj_image_file_set(build_path("logo.png"), NULL), |
diff --git a/src/bin/image_crossfade.c b/src/bin/image_crossfade.c index 20453b3..787e27c 100644 --- a/src/bin/image_crossfade.c +++ b/src/bin/image_crossfade.c | |||
@@ -22,7 +22,7 @@ static void _setup(void) | |||
22 | { | 22 | { |
23 | Evas_Object *o; | 23 | Evas_Object *o; |
24 | 24 | ||
25 | o = eo_add(EVAS_OBJ_IMAGE_CLASS, evas); | 25 | o = eo_add(EVAS_IMAGE_CLASS, evas); |
26 | o_images[0] = o; | 26 | o_images[0] = o; |
27 | if (o) | 27 | if (o) |
28 | eo_do(o, evas_obj_image_file_set(build_path("im1.png"), NULL), | 28 | eo_do(o, evas_obj_image_file_set(build_path("im1.png"), NULL), |
@@ -30,7 +30,7 @@ static void _setup(void) | |||
30 | evas_obj_size_set(720, 420), | 30 | evas_obj_size_set(720, 420), |
31 | evas_obj_visibility_set(EINA_TRUE)); | 31 | evas_obj_visibility_set(EINA_TRUE)); |
32 | 32 | ||
33 | o = eo_add(EVAS_OBJ_IMAGE_CLASS, evas); | 33 | o = eo_add(EVAS_IMAGE_CLASS, evas); |
34 | o_images[1] = o; | 34 | o_images[1] = o; |
35 | if (o) | 35 | if (o) |
36 | eo_do(o, evas_obj_image_file_set(build_path("im2.png"), NULL), | 36 | eo_do(o, evas_obj_image_file_set(build_path("im2.png"), NULL), |
diff --git a/src/bin/image_data_argb.c b/src/bin/image_data_argb.c index 6a9e9c2..33b88c3 100644 --- a/src/bin/image_data_argb.c +++ b/src/bin/image_data_argb.c | |||
@@ -24,7 +24,7 @@ static void _setup(void) | |||
24 | Evas_Object *o; | 24 | Evas_Object *o; |
25 | for (i = 0; i < 1; i++) | 25 | for (i = 0; i < 1; i++) |
26 | { | 26 | { |
27 | o = eo_add(EVAS_OBJ_IMAGE_CLASS, evas); | 27 | o = eo_add(EVAS_IMAGE_CLASS, evas); |
28 | o_images[i] = o; | 28 | o_images[i] = o; |
29 | if (o) | 29 | if (o) |
30 | eo_do(o, evas_obj_image_content_hint_set(EVAS_IMAGE_CONTENT_HINT_DYNAMIC), | 30 | eo_do(o, evas_obj_image_content_hint_set(EVAS_IMAGE_CONTENT_HINT_DYNAMIC), |
diff --git a/src/bin/image_data_argb_alpha.c b/src/bin/image_data_argb_alpha.c index 1a1087a..48757d4 100644 --- a/src/bin/image_data_argb_alpha.c +++ b/src/bin/image_data_argb_alpha.c | |||
@@ -24,7 +24,7 @@ static void _setup(void) | |||
24 | Evas_Object *o; | 24 | Evas_Object *o; |
25 | for (i = 0; i < 1; i++) | 25 | for (i = 0; i < 1; i++) |
26 | { | 26 | { |
27 | o = eo_add(EVAS_OBJ_IMAGE_CLASS, evas); | 27 | o = eo_add(EVAS_IMAGE_CLASS, evas); |
28 | o_images[i] = o; | 28 | o_images[i] = o; |
29 | if (o) | 29 | if (o) |
30 | eo_do(o, evas_obj_image_content_hint_set(EVAS_IMAGE_CONTENT_HINT_DYNAMIC), | 30 | eo_do(o, evas_obj_image_content_hint_set(EVAS_IMAGE_CONTENT_HINT_DYNAMIC), |
diff --git a/src/bin/image_data_ycbcr601pl.c b/src/bin/image_data_ycbcr601pl.c index 60a9d96..c36ce9d 100644 --- a/src/bin/image_data_ycbcr601pl.c +++ b/src/bin/image_data_ycbcr601pl.c | |||
@@ -28,7 +28,7 @@ static void _setup(void) | |||
28 | Evas_Object *o; | 28 | Evas_Object *o; |
29 | for (i = 0; i < 1; i++) | 29 | for (i = 0; i < 1; i++) |
30 | { | 30 | { |
31 | o = eo_add(EVAS_OBJ_IMAGE_CLASS, evas); | 31 | o = eo_add(EVAS_IMAGE_CLASS, evas); |
32 | o_images[i] = o; | 32 | o_images[i] = o; |
33 | if (o) | 33 | if (o) |
34 | eo_do(o, evas_obj_image_content_hint_set(EVAS_IMAGE_CONTENT_HINT_DYNAMIC), | 34 | eo_do(o, evas_obj_image_content_hint_set(EVAS_IMAGE_CONTENT_HINT_DYNAMIC), |
diff --git a/src/bin/image_data_ycbcr601pl_map_nearest_solid_rotate.c b/src/bin/image_data_ycbcr601pl_map_nearest_solid_rotate.c index f55b14b..b018637 100644 --- a/src/bin/image_data_ycbcr601pl_map_nearest_solid_rotate.c +++ b/src/bin/image_data_ycbcr601pl_map_nearest_solid_rotate.c | |||
@@ -28,7 +28,7 @@ static void _setup(void) | |||
28 | Evas_Object *o; | 28 | Evas_Object *o; |
29 | for (i = 0; i < 1; i++) | 29 | for (i = 0; i < 1; i++) |
30 | { | 30 | { |
31 | o = eo_add(EVAS_OBJ_IMAGE_CLASS, evas); | 31 | o = eo_add(EVAS_IMAGE_CLASS, evas); |
32 | o_images[i] = o; | 32 | o_images[i] = o; |
33 | if (o) | 33 | if (o) |
34 | eo_do(o, evas_obj_image_content_hint_set(EVAS_IMAGE_CONTENT_HINT_DYNAMIC), | 34 | eo_do(o, evas_obj_image_content_hint_set(EVAS_IMAGE_CONTENT_HINT_DYNAMIC), |
diff --git a/src/bin/image_data_ycbcr601pl_map_solid_rotate.c b/src/bin/image_data_ycbcr601pl_map_solid_rotate.c index e652c33..0ee2d25 100644 --- a/src/bin/image_data_ycbcr601pl_map_solid_rotate.c +++ b/src/bin/image_data_ycbcr601pl_map_solid_rotate.c | |||
@@ -28,7 +28,7 @@ static void _setup(void) | |||
28 | Evas_Object *o; | 28 | Evas_Object *o; |
29 | for (i = 0; i < 1; i++) | 29 | for (i = 0; i < 1; i++) |
30 | { | 30 | { |
31 | o = eo_add(EVAS_OBJ_IMAGE_CLASS, evas); | 31 | o = eo_add(EVAS_IMAGE_CLASS, evas); |
32 | o_images[i] = o; | 32 | o_images[i] = o; |
33 | if (o) | 33 | if (o) |
34 | eo_do(o, evas_obj_image_content_hint_set(EVAS_IMAGE_CONTENT_HINT_DYNAMIC), | 34 | eo_do(o, evas_obj_image_content_hint_set(EVAS_IMAGE_CONTENT_HINT_DYNAMIC), |
diff --git a/src/bin/image_data_ycbcr601pl_wide_stride.c b/src/bin/image_data_ycbcr601pl_wide_stride.c index 52090e2..b01d894 100644 --- a/src/bin/image_data_ycbcr601pl_wide_stride.c +++ b/src/bin/image_data_ycbcr601pl_wide_stride.c | |||
@@ -28,7 +28,7 @@ static void _setup(void) | |||
28 | Evas_Object *o; | 28 | Evas_Object *o; |
29 | for (i = 0; i < 1; i++) | 29 | for (i = 0; i < 1; i++) |
30 | { | 30 | { |
31 | o = eo_add(EVAS_OBJ_IMAGE_CLASS, evas); | 31 | o = eo_add(EVAS_IMAGE_CLASS, evas); |
32 | o_images[i] = o; | 32 | o_images[i] = o; |
33 | if (o) | 33 | if (o) |
34 | eo_do(o, evas_obj_image_content_hint_set(EVAS_IMAGE_CONTENT_HINT_DYNAMIC), | 34 | eo_do(o, evas_obj_image_content_hint_set(EVAS_IMAGE_CONTENT_HINT_DYNAMIC), |
diff --git a/src/bin/image_map_3d_1.c b/src/bin/image_map_3d_1.c index 46196cd..a2fedca 100644 --- a/src/bin/image_map_3d_1.c +++ b/src/bin/image_map_3d_1.c | |||
@@ -54,7 +54,7 @@ _cube_new(Evas_Coord w, Evas_Coord h, Evas_Coord d) | |||
54 | { | 54 | { |
55 | Evas_Object *o; | 55 | Evas_Object *o; |
56 | char buf[256]; | 56 | char buf[256]; |
57 | o = eo_add(EVAS_OBJ_IMAGE_CLASS, evas); | 57 | o = eo_add(EVAS_IMAGE_CLASS, evas); |
58 | c->side[i].o = o; | 58 | c->side[i].o = o; |
59 | snprintf(buf, sizeof(buf), "cube%i.png", i + 1); | 59 | snprintf(buf, sizeof(buf), "cube%i.png", i + 1); |
60 | if (o) | 60 | if (o) |
diff --git a/src/bin/image_map_3d_2.c b/src/bin/image_map_3d_2.c index aca5e85..4b8f201 100644 --- a/src/bin/image_map_3d_2.c +++ b/src/bin/image_map_3d_2.c | |||
@@ -54,7 +54,7 @@ _cube_new(Evas_Coord w, Evas_Coord h, Evas_Coord d) | |||
54 | { | 54 | { |
55 | Evas_Object *o; | 55 | Evas_Object *o; |
56 | char buf[256]; | 56 | char buf[256]; |
57 | o = eo_add(EVAS_OBJ_IMAGE_CLASS, evas); | 57 | o = eo_add(EVAS_IMAGE_CLASS, evas); |
58 | c->side[i].o = o; | 58 | c->side[i].o = o; |
59 | snprintf(buf, sizeof(buf), "cube%i.png", i + 1); | 59 | snprintf(buf, sizeof(buf), "cube%i.png", i + 1); |
60 | if (o) | 60 | if (o) |
diff --git a/src/bin/image_map_3d_3.c b/src/bin/image_map_3d_3.c index 4cc2ab4..8bf3d1f 100644 --- a/src/bin/image_map_3d_3.c +++ b/src/bin/image_map_3d_3.c | |||
@@ -54,7 +54,7 @@ _cube_new(Evas_Coord w, Evas_Coord h, Evas_Coord d) | |||
54 | { | 54 | { |
55 | Evas_Object *o; | 55 | Evas_Object *o; |
56 | char buf[256]; | 56 | char buf[256]; |
57 | o = eo_add(EVAS_OBJ_IMAGE_CLASS, evas); | 57 | o = eo_add(EVAS_IMAGE_CLASS, evas); |
58 | c->side[i].o = o; | 58 | c->side[i].o = o; |
59 | snprintf(buf, sizeof(buf), "cube%i.png", i + 1); | 59 | snprintf(buf, sizeof(buf), "cube%i.png", i + 1); |
60 | if (o) | 60 | if (o) |
diff --git a/src/bin/image_map_3d_4.c b/src/bin/image_map_3d_4.c index 994a952..4923fe7 100644 --- a/src/bin/image_map_3d_4.c +++ b/src/bin/image_map_3d_4.c | |||
@@ -54,7 +54,7 @@ _cube_new(Evas_Coord w, Evas_Coord h, Evas_Coord d) | |||
54 | { | 54 | { |
55 | Evas_Object *o; | 55 | Evas_Object *o; |
56 | char buf[256]; | 56 | char buf[256]; |
57 | o = eo_add(EVAS_OBJ_IMAGE_CLASS, evas); | 57 | o = eo_add(EVAS_IMAGE_CLASS, evas); |
58 | c->side[i].o = o; | 58 | c->side[i].o = o; |
59 | snprintf(buf, sizeof(buf), "cube%i.png", i + 1); | 59 | snprintf(buf, sizeof(buf), "cube%i.png", i + 1); |
60 | if (o) | 60 | if (o) |
diff --git a/src/bin/image_map_3d_5.c b/src/bin/image_map_3d_5.c index a763be3..0adfa95 100644 --- a/src/bin/image_map_3d_5.c +++ b/src/bin/image_map_3d_5.c | |||
@@ -54,7 +54,7 @@ _cube_new(Evas_Coord w, Evas_Coord h, Evas_Coord d) | |||
54 | { | 54 | { |
55 | Evas_Object *o; | 55 | Evas_Object *o; |
56 | char buf[256]; | 56 | char buf[256]; |
57 | o = eo_add(EVAS_OBJ_IMAGE_CLASS, evas); | 57 | o = eo_add(EVAS_IMAGE_CLASS, evas); |
58 | c->side[i].o = o; | 58 | c->side[i].o = o; |
59 | snprintf(buf, sizeof(buf), "im%i.png", (i % 2) + 1); | 59 | snprintf(buf, sizeof(buf), "im%i.png", (i % 2) + 1); |
60 | if (o) | 60 | if (o) |
diff --git a/src/bin/image_map_3d_6.c b/src/bin/image_map_3d_6.c index 0887430..4888eba 100644 --- a/src/bin/image_map_3d_6.c +++ b/src/bin/image_map_3d_6.c | |||
@@ -54,7 +54,7 @@ _cube_new(Evas_Coord w, Evas_Coord h, Evas_Coord d) | |||
54 | { | 54 | { |
55 | Evas_Object *o; | 55 | Evas_Object *o; |
56 | char buf[256]; | 56 | char buf[256]; |
57 | o = eo_add(EVAS_OBJ_IMAGE_CLASS, evas); | 57 | o = eo_add(EVAS_IMAGE_CLASS, evas); |
58 | c->side[i].o = o; | 58 | c->side[i].o = o; |
59 | snprintf(buf, sizeof(buf), "im%i.png", (i % 2) + 1); | 59 | snprintf(buf, sizeof(buf), "im%i.png", (i % 2) + 1); |
60 | if (o) | 60 | if (o) |
diff --git a/src/bin/image_map_3d_flow.c b/src/bin/image_map_3d_flow.c index 1bf0249..468f971 100644 --- a/src/bin/image_map_3d_flow.c +++ b/src/bin/image_map_3d_flow.c | |||
@@ -29,7 +29,7 @@ static void _setup(void) | |||
29 | { | 29 | { |
30 | char buf[256]; | 30 | char buf[256]; |
31 | 31 | ||
32 | o = eo_add(EVAS_OBJ_IMAGE_CLASS, evas); | 32 | o = eo_add(EVAS_IMAGE_CLASS, evas); |
33 | o_images[i] = o; | 33 | o_images[i] = o; |
34 | snprintf(buf, sizeof(buf), "cube%i.png", (i % 6) + 1); | 34 | snprintf(buf, sizeof(buf), "cube%i.png", (i % 6) + 1); |
35 | if (o) | 35 | if (o) |
@@ -39,7 +39,7 @@ static void _setup(void) | |||
39 | evas_obj_image_smooth_scale_set(0), | 39 | evas_obj_image_smooth_scale_set(0), |
40 | evas_obj_visibility_set(EINA_TRUE)); | 40 | evas_obj_visibility_set(EINA_TRUE)); |
41 | 41 | ||
42 | o = eo_add(EVAS_OBJ_IMAGE_CLASS, evas); | 42 | o = eo_add(EVAS_IMAGE_CLASS, evas); |
43 | o_reflec[i] = o; | 43 | o_reflec[i] = o; |
44 | snprintf(buf, sizeof(buf), "cube%i.png", (i % 6) + 1); | 44 | snprintf(buf, sizeof(buf), "cube%i.png", (i % 6) + 1); |
45 | if (o) | 45 | if (o) |
diff --git a/src/bin/image_map_color_alpha_nearest_rotate.c b/src/bin/image_map_color_alpha_nearest_rotate.c index 61728f6..1180793 100644 --- a/src/bin/image_map_color_alpha_nearest_rotate.c +++ b/src/bin/image_map_color_alpha_nearest_rotate.c | |||
@@ -24,7 +24,7 @@ static void _setup(void) | |||
24 | Evas_Object *o; | 24 | Evas_Object *o; |
25 | for (i = 0; i < (OBNUM / 2); i++) | 25 | for (i = 0; i < (OBNUM / 2); i++) |
26 | { | 26 | { |
27 | o = eo_add(EVAS_OBJ_IMAGE_CLASS, evas); | 27 | o = eo_add(EVAS_IMAGE_CLASS, evas); |
28 | o_images[i] = o; | 28 | o_images[i] = o; |
29 | if (o) | 29 | if (o) |
30 | eo_do(o, evas_obj_image_file_set(build_path("logo.png"), NULL), | 30 | eo_do(o, evas_obj_image_file_set(build_path("logo.png"), NULL), |
diff --git a/src/bin/image_map_color_alpha_nearest_solid_rotate.c b/src/bin/image_map_color_alpha_nearest_solid_rotate.c index b8e868d..3a8f39c 100644 --- a/src/bin/image_map_color_alpha_nearest_solid_rotate.c +++ b/src/bin/image_map_color_alpha_nearest_solid_rotate.c | |||
@@ -24,7 +24,7 @@ static void _setup(void) | |||
24 | Evas_Object *o; | 24 | Evas_Object *o; |
25 | for (i = 0; i < (OBNUM / 2); i++) | 25 | for (i = 0; i < (OBNUM / 2); i++) |
26 | { | 26 | { |
27 | o = eo_add(EVAS_OBJ_IMAGE_CLASS, evas); | 27 | o = eo_add(EVAS_IMAGE_CLASS, evas); |
28 | o_images[i] = o; | 28 | o_images[i] = o; |
29 | if (o) | 29 | if (o) |
30 | eo_do(o, evas_obj_image_file_set(build_path("image.png"), NULL), | 30 | eo_do(o, evas_obj_image_file_set(build_path("image.png"), NULL), |
diff --git a/src/bin/image_map_color_alpha_rotate.c b/src/bin/image_map_color_alpha_rotate.c index 441bbcb..87a81eb 100644 --- a/src/bin/image_map_color_alpha_rotate.c +++ b/src/bin/image_map_color_alpha_rotate.c | |||
@@ -24,7 +24,7 @@ static void _setup(void) | |||
24 | Evas_Object *o; | 24 | Evas_Object *o; |
25 | for (i = 0; i < (OBNUM / 2); i++) | 25 | for (i = 0; i < (OBNUM / 2); i++) |
26 | { | 26 | { |
27 | o = eo_add(EVAS_OBJ_IMAGE_CLASS, evas); | 27 | o = eo_add(EVAS_IMAGE_CLASS, evas); |
28 | o_images[i] = o; | 28 | o_images[i] = o; |
29 | if (o) | 29 | if (o) |
30 | eo_do(o, evas_obj_image_file_set(build_path("logo.png"), NULL), | 30 | eo_do(o, evas_obj_image_file_set(build_path("logo.png"), NULL), |
diff --git a/src/bin/image_map_color_alpha_solid_rotate.c b/src/bin/image_map_color_alpha_solid_rotate.c index 53aa001..38418db 100644 --- a/src/bin/image_map_color_alpha_solid_rotate.c +++ b/src/bin/image_map_color_alpha_solid_rotate.c | |||
@@ -24,7 +24,7 @@ static void _setup(void) | |||
24 | Evas_Object *o; | 24 | Evas_Object *o; |
25 | for (i = 0; i < (OBNUM / 2); i++) | 25 | for (i = 0; i < (OBNUM / 2); i++) |
26 | { | 26 | { |
27 | o = eo_add(EVAS_OBJ_IMAGE_CLASS, evas); | 27 | o = eo_add(EVAS_IMAGE_CLASS, evas); |
28 | o_images[i] = o; | 28 | o_images[i] = o; |
29 | if (o) | 29 | if (o) |
30 | eo_do(o, evas_obj_image_file_set(build_path("image.png"), NULL), | 30 | eo_do(o, evas_obj_image_file_set(build_path("image.png"), NULL), |
diff --git a/src/bin/image_map_color_nearest_rotate.c b/src/bin/image_map_color_nearest_rotate.c index 9307b2c..a15ff63 100644 --- a/src/bin/image_map_color_nearest_rotate.c +++ b/src/bin/image_map_color_nearest_rotate.c | |||
@@ -24,7 +24,7 @@ static void _setup(void) | |||
24 | Evas_Object *o; | 24 | Evas_Object *o; |
25 | for (i = 0; i < (OBNUM / 2); i++) | 25 | for (i = 0; i < (OBNUM / 2); i++) |
26 | { | 26 | { |
27 | o = eo_add(EVAS_OBJ_IMAGE_CLASS, evas); | 27 | o = eo_add(EVAS_IMAGE_CLASS, evas); |
28 | o_images[i] = o; | 28 | o_images[i] = o; |
29 | if (o) | 29 | if (o) |
30 | eo_do(o, evas_obj_image_file_set(build_path("logo.png"), NULL), | 30 | eo_do(o, evas_obj_image_file_set(build_path("logo.png"), NULL), |
diff --git a/src/bin/image_map_color_nearest_solid_rotate.c b/src/bin/image_map_color_nearest_solid_rotate.c index 85b38c0..5912f44 100644 --- a/src/bin/image_map_color_nearest_solid_rotate.c +++ b/src/bin/image_map_color_nearest_solid_rotate.c | |||
@@ -24,7 +24,7 @@ static void _setup(void) | |||
24 | Evas_Object *o; | 24 | Evas_Object *o; |
25 | for (i = 0; i < (OBNUM / 2); i++) | 25 | for (i = 0; i < (OBNUM / 2); i++) |
26 | { | 26 | { |
27 | o = eo_add(EVAS_OBJ_IMAGE_CLASS, evas); | 27 | o = eo_add(EVAS_IMAGE_CLASS, evas); |
28 | o_images[i] = o; | 28 | o_images[i] = o; |
29 | if (o) | 29 | if (o) |
30 | eo_do(o, evas_obj_image_file_set(build_path("image.png"), NULL), | 30 | eo_do(o, evas_obj_image_file_set(build_path("image.png"), NULL), |
diff --git a/src/bin/image_map_color_rotate.c b/src/bin/image_map_color_rotate.c index be909b3..1a4d002 100644 --- a/src/bin/image_map_color_rotate.c +++ b/src/bin/image_map_color_rotate.c | |||
@@ -24,7 +24,7 @@ static void _setup(void) | |||
24 | Evas_Object *o; | 24 | Evas_Object *o; |
25 | for (i = 0; i < (OBNUM / 2); i++) | 25 | for (i = 0; i < (OBNUM / 2); i++) |
26 | { | 26 | { |
27 | o = eo_add(EVAS_OBJ_IMAGE_CLASS, evas); | 27 | o = eo_add(EVAS_IMAGE_CLASS, evas); |
28 | o_images[i] = o; | 28 | o_images[i] = o; |
29 | if (o) | 29 | if (o) |
30 | eo_do(o, evas_obj_image_file_set(build_path("logo.png"), NULL), | 30 | eo_do(o, evas_obj_image_file_set(build_path("logo.png"), NULL), |
diff --git a/src/bin/image_map_color_solid_rotate.c b/src/bin/image_map_color_solid_rotate.c index b88488c..9d2f0a3 100644 --- a/src/bin/image_map_color_solid_rotate.c +++ b/src/bin/image_map_color_solid_rotate.c | |||
@@ -24,7 +24,7 @@ static void _setup(void) | |||
24 | Evas_Object *o; | 24 | Evas_Object *o; |
25 | for (i = 0; i < (OBNUM / 2); i++) | 25 | for (i = 0; i < (OBNUM / 2); i++) |
26 | { | 26 | { |
27 | o = eo_add(EVAS_OBJ_IMAGE_CLASS, evas); | 27 | o = eo_add(EVAS_IMAGE_CLASS, evas); |
28 | o_images[i] = o; | 28 | o_images[i] = o; |
29 | if (o) | 29 | if (o) |
30 | eo_do(o, evas_obj_image_file_set(build_path("image.png"), NULL), | 30 | eo_do(o, evas_obj_image_file_set(build_path("image.png"), NULL), |
diff --git a/src/bin/image_map_nearest_rotate.c b/src/bin/image_map_nearest_rotate.c index ee9ce78..54a5ae7 100644 --- a/src/bin/image_map_nearest_rotate.c +++ b/src/bin/image_map_nearest_rotate.c | |||
@@ -24,7 +24,7 @@ static void _setup(void) | |||
24 | Evas_Object *o; | 24 | Evas_Object *o; |
25 | for (i = 0; i < (OBNUM / 2); i++) | 25 | for (i = 0; i < (OBNUM / 2); i++) |
26 | { | 26 | { |
27 | o = eo_add(EVAS_OBJ_IMAGE_CLASS, evas); | 27 | o = eo_add(EVAS_IMAGE_CLASS, evas); |
28 | o_images[i] = o; | 28 | o_images[i] = o; |
29 | if (o) | 29 | if (o) |
30 | eo_do(o, evas_obj_image_file_set(build_path("logo.png"), NULL), | 30 | eo_do(o, evas_obj_image_file_set(build_path("logo.png"), NULL), |
diff --git a/src/bin/image_map_nearest_solid_rotate.c b/src/bin/image_map_nearest_solid_rotate.c index 8e17bad..11e5bd6 100644 --- a/src/bin/image_map_nearest_solid_rotate.c +++ b/src/bin/image_map_nearest_solid_rotate.c | |||
@@ -24,7 +24,7 @@ static void _setup(void) | |||
24 | Evas_Object *o; | 24 | Evas_Object *o; |
25 | for (i = 0; i < (OBNUM / 2); i++) | 25 | for (i = 0; i < (OBNUM / 2); i++) |
26 | { | 26 | { |
27 | o = eo_add(EVAS_OBJ_IMAGE_CLASS, evas); | 27 | o = eo_add(EVAS_IMAGE_CLASS, evas); |
28 | o_images[i] = o; | 28 | o_images[i] = o; |
29 | if (o) | 29 | if (o) |
30 | eo_do(o, evas_obj_image_file_set(build_path("image.png"), NULL), | 30 | eo_do(o, evas_obj_image_file_set(build_path("image.png"), NULL), |
diff --git a/src/bin/image_map_rotate.c b/src/bin/image_map_rotate.c index eebf68a..c557c14 100644 --- a/src/bin/image_map_rotate.c +++ b/src/bin/image_map_rotate.c | |||
@@ -24,7 +24,7 @@ static void _setup(void) | |||
24 | Evas_Object *o; | 24 | Evas_Object *o; |
25 | for (i = 0; i < (OBNUM / 2); i++) | 25 | for (i = 0; i < (OBNUM / 2); i++) |
26 | { | 26 | { |
27 | o = eo_add(EVAS_OBJ_IMAGE_CLASS, evas); | 27 | o = eo_add(EVAS_IMAGE_CLASS, evas); |
28 | o_images[i] = o; | 28 | o_images[i] = o; |
29 | if (o) | 29 | if (o) |
30 | eo_do(o, evas_obj_image_file_set(build_path("logo.png"), NULL), | 30 | eo_do(o, evas_obj_image_file_set(build_path("logo.png"), NULL), |
diff --git a/src/bin/image_map_solid_rotate.c b/src/bin/image_map_solid_rotate.c index 28da7af..c23f3c7 100644 --- a/src/bin/image_map_solid_rotate.c +++ b/src/bin/image_map_solid_rotate.c | |||
@@ -24,7 +24,7 @@ static void _setup(void) | |||
24 | Evas_Object *o; | 24 | Evas_Object *o; |
25 | for (i = 0; i < (OBNUM / 2); i++) | 25 | for (i = 0; i < (OBNUM / 2); i++) |
26 | { | 26 | { |
27 | o = eo_add(EVAS_OBJ_IMAGE_CLASS, evas); | 27 | o = eo_add(EVAS_IMAGE_CLASS, evas); |
28 | o_images[i] = o; | 28 | o_images[i] = o; |
29 | if (o) | 29 | if (o) |
30 | eo_do(o, evas_obj_image_file_set(build_path("image.png"), NULL), | 30 | eo_do(o, evas_obj_image_file_set(build_path("image.png"), NULL), |
diff --git a/src/bin/image_quality_scale.c b/src/bin/image_quality_scale.c index 9804a3d..f5dadce 100644 --- a/src/bin/image_quality_scale.c +++ b/src/bin/image_quality_scale.c | |||
@@ -24,7 +24,7 @@ static void _setup(void) | |||
24 | Evas_Object *o; | 24 | Evas_Object *o; |
25 | for (i = 0; i < 1; i++) | 25 | for (i = 0; i < 1; i++) |
26 | { | 26 | { |
27 | o = eo_add(EVAS_OBJ_IMAGE_CLASS, evas); | 27 | o = eo_add(EVAS_IMAGE_CLASS, evas); |
28 | o_images[i] = o; | 28 | o_images[i] = o; |
29 | if (o) | 29 | if (o) |
30 | eo_do(o, evas_obj_image_file_set(build_path("tp.png"), NULL), | 30 | eo_do(o, evas_obj_image_file_set(build_path("tp.png"), NULL), |
diff --git a/src/bin/line_blend.c b/src/bin/line_blend.c index dedc471..9ee5e18 100644 --- a/src/bin/line_blend.c +++ b/src/bin/line_blend.c | |||
@@ -26,7 +26,7 @@ static void _setup(void) | |||
26 | { | 26 | { |
27 | int r, g, b, a; | 27 | int r, g, b, a; |
28 | 28 | ||
29 | o = eo_add(EVAS_OBJ_LINE_CLASS, evas); | 29 | o = eo_add(EVAS_LINE_CLASS, evas); |
30 | o_images[i] = o; | 30 | o_images[i] = o; |
31 | a = (rnd()&0xff) / 2; | 31 | a = (rnd()&0xff) / 2; |
32 | r = ((rnd()&0xff) * a) / 255; | 32 | r = ((rnd()&0xff) * a) / 255; |
diff --git a/src/bin/poly_blend.c b/src/bin/poly_blend.c index 4e0101c..5aa8340 100644 --- a/src/bin/poly_blend.c +++ b/src/bin/poly_blend.c | |||
@@ -73,7 +73,7 @@ static void _setup(void) | |||
73 | { | 73 | { |
74 | int r, g, b, a; | 74 | int r, g, b, a; |
75 | 75 | ||
76 | o = eo_add(EVAS_OBJ_POLYGON_CLASS, evas); | 76 | o = eo_add(EVAS_POLYGON_CLASS, evas); |
77 | o_images[i] = o; | 77 | o_images[i] = o; |
78 | a = (rnd()&0xff) / 2; | 78 | a = (rnd()&0xff) / 2; |
79 | r = ((rnd()&0xff) * a) / 255; | 79 | r = ((rnd()&0xff) * a) / 255; |
diff --git a/src/bin/proxy_image.c b/src/bin/proxy_image.c index d539255..600a5d4 100644 --- a/src/bin/proxy_image.c +++ b/src/bin/proxy_image.c | |||
@@ -22,7 +22,7 @@ static void _setup(void) | |||
22 | int i; | 22 | int i; |
23 | Evas_Object *o,*src; | 23 | Evas_Object *o,*src; |
24 | 24 | ||
25 | o = eo_add(EVAS_OBJ_IMAGE_CLASS, evas); | 25 | o = eo_add(EVAS_IMAGE_CLASS, evas); |
26 | if (o) | 26 | if (o) |
27 | eo_do(o, evas_obj_image_file_set(build_path("logo.png"), NULL), | 27 | eo_do(o, evas_obj_image_file_set(build_path("logo.png"), NULL), |
28 | evas_obj_image_fill_set(0, 0, 120, 160), | 28 | evas_obj_image_fill_set(0, 0, 120, 160), |
@@ -33,7 +33,7 @@ static void _setup(void) | |||
33 | 33 | ||
34 | for (i = 1; i < OBNUM; i++) | 34 | for (i = 1; i < OBNUM; i++) |
35 | { | 35 | { |
36 | o = eo_add(EVAS_OBJ_IMAGE_CLASS, evas); | 36 | o = eo_add(EVAS_IMAGE_CLASS, evas); |
37 | o_images[i] = o; | 37 | o_images[i] = o; |
38 | if (o) | 38 | if (o) |
39 | eo_do(o, evas_obj_image_source_set(src), | 39 | eo_do(o, evas_obj_image_source_set(src), |
diff --git a/src/bin/proxy_image_offscreen.c b/src/bin/proxy_image_offscreen.c index be9598f..ee53d8e 100644 --- a/src/bin/proxy_image_offscreen.c +++ b/src/bin/proxy_image_offscreen.c | |||
@@ -26,7 +26,7 @@ static void _setup(void) | |||
26 | int i; | 26 | int i; |
27 | Evas_Object *o,*src; | 27 | Evas_Object *o,*src; |
28 | 28 | ||
29 | o = eo_add(EVAS_OBJ_IMAGE_CLASS, evas); | 29 | o = eo_add(EVAS_IMAGE_CLASS, evas); |
30 | if (o) | 30 | if (o) |
31 | eo_do(o, evas_obj_image_file_set(build_path("logo.png"), NULL), | 31 | eo_do(o, evas_obj_image_file_set(build_path("logo.png"), NULL), |
32 | evas_obj_image_fill_set(0, 0, 120, 160), | 32 | evas_obj_image_fill_set(0, 0, 120, 160), |
@@ -36,7 +36,7 @@ static void _setup(void) | |||
36 | 36 | ||
37 | for (i = 0; i < OBNUM / 2; i++) | 37 | for (i = 0; i < OBNUM / 2; i++) |
38 | { | 38 | { |
39 | o = eo_add(EVAS_OBJ_IMAGE_CLASS, evas); | 39 | o = eo_add(EVAS_IMAGE_CLASS, evas); |
40 | o_images[i] = o; | 40 | o_images[i] = o; |
41 | if (o) | 41 | if (o) |
42 | eo_do(o, evas_obj_image_source_set(src, NULL), | 42 | eo_do(o, evas_obj_image_source_set(src, NULL), |
diff --git a/src/bin/proxy_text_fixed.c b/src/bin/proxy_text_fixed.c index 3b8d8c8..43b251b 100644 --- a/src/bin/proxy_text_fixed.c +++ b/src/bin/proxy_text_fixed.c | |||
@@ -27,7 +27,7 @@ static void _setup(void) | |||
27 | st = EVAS_TEXT_STYLE_SHADOW; | 27 | st = EVAS_TEXT_STYLE_SHADOW; |
28 | for (i = 0; st <= EVAS_TEXT_STYLE_FAR_SOFT_SHADOW; i++) | 28 | for (i = 0; st <= EVAS_TEXT_STYLE_FAR_SOFT_SHADOW; i++) |
29 | { | 29 | { |
30 | o = eo_add(EVAS_OBJ_TEXT_CLASS, evas); | 30 | o = eo_add(EVAS_TEXT_CLASS, evas); |
31 | o_texts[i] = o; | 31 | o_texts[i] = o; |
32 | if (o) | 32 | if (o) |
33 | eo_do(o, evas_obj_text_font_set("Vera-Bold", 20), | 33 | eo_do(o, evas_obj_text_font_set("Vera-Bold", 20), |
@@ -46,7 +46,7 @@ static void _setup(void) | |||
46 | for ( ; i < OBNUM ; i ++) | 46 | for ( ; i < OBNUM ; i ++) |
47 | { | 47 | { |
48 | s = o_texts[i % st]; | 48 | s = o_texts[i % st]; |
49 | o = eo_add(EVAS_OBJ_IMAGE_CLASS, evas); | 49 | o = eo_add(EVAS_IMAGE_CLASS, evas); |
50 | o_texts[i] = o; | 50 | o_texts[i] = o; |
51 | if (o) | 51 | if (o) |
52 | eo_do(o, evas_obj_image_source_set(s)); | 52 | eo_do(o, evas_obj_image_source_set(s)); |
diff --git a/src/bin/proxy_text_random.c b/src/bin/proxy_text_random.c index 812ba2f..6c88d39 100644 --- a/src/bin/proxy_text_random.c +++ b/src/bin/proxy_text_random.c | |||
@@ -30,7 +30,7 @@ static void _setup(void) | |||
30 | "Fiddly", "Family", "Lair", "Monkeys", "Magazine" | 30 | "Fiddly", "Family", "Lair", "Monkeys", "Magazine" |
31 | }; | 31 | }; |
32 | srnd(); | 32 | srnd(); |
33 | o = eo_add(EVAS_OBJ_TEXT_CLASS, evas); | 33 | o = eo_add(EVAS_TEXT_CLASS, evas); |
34 | o_texts[0] = o; | 34 | o_texts[0] = o; |
35 | if (o) | 35 | if (o) |
36 | eo_do(o, evas_obj_text_font_set("Vera-Bold", 20)); | 36 | eo_do(o, evas_obj_text_font_set("Vera-Bold", 20)); |
@@ -55,7 +55,7 @@ static void _setup(void) | |||
55 | eo_do(o, evas_obj_visibility_set(EINA_TRUE)); | 55 | eo_do(o, evas_obj_visibility_set(EINA_TRUE)); |
56 | for (i = 1 ; i < OBNUM ; i ++) | 56 | for (i = 1 ; i < OBNUM ; i ++) |
57 | { | 57 | { |
58 | o = eo_add(EVAS_OBJ_IMAGE_CLASS, evas); | 58 | o = eo_add(EVAS_IMAGE_CLASS, evas); |
59 | o_texts[i] = o; | 59 | o_texts[i] = o; |
60 | if (o) | 60 | if (o) |
61 | eo_do(o, evas_obj_image_source_set(o_texts[0])); | 61 | eo_do(o, evas_obj_image_source_set(o_texts[0])); |
diff --git a/src/bin/rect_blend.c b/src/bin/rect_blend.c index dc5c8ee..d7cc901 100644 --- a/src/bin/rect_blend.c +++ b/src/bin/rect_blend.c | |||
@@ -26,7 +26,7 @@ static void _setup(void) | |||
26 | { | 26 | { |
27 | int r, g, b, a; | 27 | int r, g, b, a; |
28 | 28 | ||
29 | o = eo_add(EVAS_OBJ_RECTANGLE_CLASS, evas); | 29 | o = eo_add(EVAS_RECTANGLE_CLASS, evas); |
30 | o_images[i] = o; | 30 | o_images[i] = o; |
31 | a = rnd()&0xff; | 31 | a = rnd()&0xff; |
32 | r = ((rnd()&0xff) * a) / 255; | 32 | r = ((rnd()&0xff) * a) / 255; |
diff --git a/src/bin/rect_blend_few.c b/src/bin/rect_blend_few.c index ca99d20..11b4281 100644 --- a/src/bin/rect_blend_few.c +++ b/src/bin/rect_blend_few.c | |||
@@ -29,7 +29,7 @@ static void _setup(void) | |||
29 | { | 29 | { |
30 | int r, g, b, a; | 30 | int r, g, b, a; |
31 | 31 | ||
32 | o = eo_add(EVAS_OBJ_RECTANGLE_CLASS, evas); | 32 | o = eo_add(EVAS_RECTANGLE_CLASS, evas); |
33 | o_images[i] = o; | 33 | o_images[i] = o; |
34 | a = rnd()&0xff; | 34 | a = rnd()&0xff; |
35 | r = ((rnd()&0xff) * a) / 255; | 35 | r = ((rnd()&0xff) * a) / 255; |
diff --git a/src/bin/rect_blend_pow2.c b/src/bin/rect_blend_pow2.c index dc1bf84..325f717 100644 --- a/src/bin/rect_blend_pow2.c +++ b/src/bin/rect_blend_pow2.c | |||
@@ -26,7 +26,7 @@ static void _setup(void) | |||
26 | { | 26 | { |
27 | int r, g, b, a; | 27 | int r, g, b, a; |
28 | 28 | ||
29 | o = eo_add(EVAS_OBJ_RECTANGLE_CLASS, evas); | 29 | o = eo_add(EVAS_RECTANGLE_CLASS, evas); |
30 | o_images[i] = o; | 30 | o_images[i] = o; |
31 | a = 256 - (1 << ((rnd() % 8) + 1)); | 31 | a = 256 - (1 << ((rnd() % 8) + 1)); |
32 | if (a < 128) a = 128; | 32 | if (a < 128) a = 128; |
diff --git a/src/bin/rect_blend_pow2_few.c b/src/bin/rect_blend_pow2_few.c index 1c1c2f9..db23e26 100644 --- a/src/bin/rect_blend_pow2_few.c +++ b/src/bin/rect_blend_pow2_few.c | |||
@@ -29,7 +29,7 @@ static void _setup(void) | |||
29 | { | 29 | { |
30 | int r, g, b, a; | 30 | int r, g, b, a; |
31 | 31 | ||
32 | o = eo_add(EVAS_OBJ_RECTANGLE_CLASS, evas); | 32 | o = eo_add(EVAS_RECTANGLE_CLASS, evas); |
33 | o_images[i] = o; | 33 | o_images[i] = o; |
34 | a = 256 - (1 << ((rnd() % 8) + 1)); | 34 | a = 256 - (1 << ((rnd() % 8) + 1)); |
35 | if (a < 128) a = 128; | 35 | if (a < 128) a = 128; |
diff --git a/src/bin/rect_solid.c b/src/bin/rect_solid.c index 98ecba7..aa1305d 100644 --- a/src/bin/rect_solid.c +++ b/src/bin/rect_solid.c | |||
@@ -26,7 +26,7 @@ static void _setup(void) | |||
26 | { | 26 | { |
27 | int r, g, b, a; | 27 | int r, g, b, a; |
28 | 28 | ||
29 | o = eo_add(EVAS_OBJ_RECTANGLE_CLASS, evas); | 29 | o = eo_add(EVAS_RECTANGLE_CLASS, evas); |
30 | o_images[i] = o; | 30 | o_images[i] = o; |
31 | a = 0xff; | 31 | a = 0xff; |
32 | r = ((rnd()&0xff) * a) / 255; | 32 | r = ((rnd()&0xff) * a) / 255; |
diff --git a/src/bin/rect_solid_few.c b/src/bin/rect_solid_few.c index 7e0e667..8e4227d 100644 --- a/src/bin/rect_solid_few.c +++ b/src/bin/rect_solid_few.c | |||
@@ -29,7 +29,7 @@ static void _setup(void) | |||
29 | { | 29 | { |
30 | int r, g, b, a; | 30 | int r, g, b, a; |
31 | 31 | ||
32 | o = eo_add(EVAS_OBJ_RECTANGLE_CLASS, evas); | 32 | o = eo_add(EVAS_RECTANGLE_CLASS, evas); |
33 | o_images[i] = o; | 33 | o_images[i] = o; |
34 | a = 0xff; | 34 | a = 0xff; |
35 | r = ((rnd()&0xff) * a) / 255; | 35 | r = ((rnd()&0xff) * a) / 255; |
diff --git a/src/bin/text_basic.c b/src/bin/text_basic.c index 12f21af..8900574 100644 --- a/src/bin/text_basic.c +++ b/src/bin/text_basic.c | |||
@@ -25,7 +25,7 @@ static void _setup(void) | |||
25 | 25 | ||
26 | for (i = 0; i < OBNUM; i++) | 26 | for (i = 0; i < OBNUM; i++) |
27 | { | 27 | { |
28 | o = eo_add(EVAS_OBJ_TEXT_CLASS, evas); | 28 | o = eo_add(EVAS_TEXT_CLASS, evas); |
29 | o_texts[i] = o; | 29 | o_texts[i] = o; |
30 | if (o) | 30 | if (o) |
31 | eo_do(o, evas_obj_text_font_set("Vera-Bold", 20), | 31 | eo_do(o, evas_obj_text_font_set("Vera-Bold", 20), |
diff --git a/src/bin/text_change.c b/src/bin/text_change.c index 9dde5ca..decedd7 100644 --- a/src/bin/text_change.c +++ b/src/bin/text_change.c | |||
@@ -32,7 +32,7 @@ static void _setup(void) | |||
32 | srnd(); | 32 | srnd(); |
33 | for (i = 0; i < OBNUM; i++) | 33 | for (i = 0; i < OBNUM; i++) |
34 | { | 34 | { |
35 | o = eo_add(EVAS_OBJ_TEXT_CLASS, evas); | 35 | o = eo_add(EVAS_TEXT_CLASS, evas); |
36 | o_texts[i] = o; | 36 | o_texts[i] = o; |
37 | if (o) | 37 | if (o) |
38 | eo_do(o, evas_obj_text_font_set("Vera-Bold", 20)); | 38 | eo_do(o, evas_obj_text_font_set("Vera-Bold", 20)); |
diff --git a/src/bin/text_styles.c b/src/bin/text_styles.c index 0da103f..0e6539d 100644 --- a/src/bin/text_styles.c +++ b/src/bin/text_styles.c | |||
@@ -27,7 +27,7 @@ static void _setup(void) | |||
27 | st = EVAS_TEXT_STYLE_SHADOW; | 27 | st = EVAS_TEXT_STYLE_SHADOW; |
28 | for (i = 0; i < OBNUM; i++) | 28 | for (i = 0; i < OBNUM; i++) |
29 | { | 29 | { |
30 | o = eo_add(EVAS_OBJ_TEXT_CLASS, evas); | 30 | o = eo_add(EVAS_TEXT_CLASS, evas); |
31 | o_texts[i] = o; | 31 | o_texts[i] = o; |
32 | if (o) | 32 | if (o) |
33 | eo_do(o, evas_obj_text_font_set("Vera-Bold", 20), | 33 | eo_do(o, evas_obj_text_font_set("Vera-Bold", 20), |
diff --git a/src/bin/text_styles_different_strings.c b/src/bin/text_styles_different_strings.c index 2120f9d..d6e0e53 100644 --- a/src/bin/text_styles_different_strings.c +++ b/src/bin/text_styles_different_strings.c | |||
@@ -34,7 +34,7 @@ static void _setup(void) | |||
34 | st = EVAS_TEXT_STYLE_SHADOW; | 34 | st = EVAS_TEXT_STYLE_SHADOW; |
35 | for (i = 0; i < OBNUM; i++) | 35 | for (i = 0; i < OBNUM; i++) |
36 | { | 36 | { |
37 | o = eo_add(EVAS_OBJ_TEXT_CLASS, evas); | 37 | o = eo_add(EVAS_TEXT_CLASS, evas); |
38 | o_texts[i] = o; | 38 | o_texts[i] = o; |
39 | if (o) | 39 | if (o) |
40 | eo_do(o, evas_obj_text_font_set("Vera-Bold", 20)); | 40 | eo_do(o, evas_obj_text_font_set("Vera-Bold", 20)); |
diff --git a/src/bin/textblock_auto_align.c b/src/bin/textblock_auto_align.c index 702516f..0824f2a 100644 --- a/src/bin/textblock_auto_align.c +++ b/src/bin/textblock_auto_align.c | |||
@@ -23,7 +23,7 @@ static void _setup(void) | |||
23 | Evas_Object *o; | 23 | Evas_Object *o; |
24 | Evas_Textblock_Style *st; | 24 | Evas_Textblock_Style *st; |
25 | 25 | ||
26 | o = eo_add(EVAS_OBJ_TEXTBLOCK_CLASS, evas); | 26 | o = eo_add(EVAS_TEXTBLOCK_CLASS, evas); |
27 | o_text = o; | 27 | o_text = o; |
28 | st = evas_textblock_style_new(); | 28 | st = evas_textblock_style_new(); |
29 | evas_textblock_style_set | 29 | evas_textblock_style_set |
diff --git a/src/bin/textblock_basic.c b/src/bin/textblock_basic.c index 251a311..29b964c 100644 --- a/src/bin/textblock_basic.c +++ b/src/bin/textblock_basic.c | |||
@@ -23,7 +23,7 @@ static void _setup(void) | |||
23 | Evas_Object *o; | 23 | Evas_Object *o; |
24 | Evas_Textblock_Style *st; | 24 | Evas_Textblock_Style *st; |
25 | 25 | ||
26 | o = eo_add(EVAS_OBJ_TEXTBLOCK_CLASS, evas); | 26 | o = eo_add(EVAS_TEXTBLOCK_CLASS, evas); |
27 | o_text = o; | 27 | o_text = o; |
28 | st = evas_textblock_style_new(); | 28 | st = evas_textblock_style_new(); |
29 | evas_textblock_style_set | 29 | evas_textblock_style_set |
diff --git a/src/bin/textblock_intl.c b/src/bin/textblock_intl.c index 80b2437..63301ed 100644 --- a/src/bin/textblock_intl.c +++ b/src/bin/textblock_intl.c | |||
@@ -23,7 +23,7 @@ static void _setup(void) | |||
23 | Evas_Object *o; | 23 | Evas_Object *o; |
24 | Evas_Textblock_Style *st; | 24 | Evas_Textblock_Style *st; |
25 | 25 | ||
26 | o = eo_add(EVAS_OBJ_TEXTBLOCK_CLASS, evas); | 26 | o = eo_add(EVAS_TEXTBLOCK_CLASS, evas); |
27 | o_text = o; | 27 | o_text = o; |
28 | st = evas_textblock_style_new(); | 28 | st = evas_textblock_style_new(); |
29 | evas_textblock_style_set | 29 | evas_textblock_style_set |
diff --git a/src/bin/textblock_text_append.c b/src/bin/textblock_text_append.c index 54a70c8..7353b58 100644 --- a/src/bin/textblock_text_append.c +++ b/src/bin/textblock_text_append.c | |||
@@ -23,7 +23,7 @@ static void _setup(void) | |||
23 | Evas_Object *o; | 23 | Evas_Object *o; |
24 | Evas_Textblock_Style *st; | 24 | Evas_Textblock_Style *st; |
25 | 25 | ||
26 | o = eo_add(EVAS_OBJ_TEXTBLOCK_CLASS, evas); | 26 | o = eo_add(EVAS_TEXTBLOCK_CLASS, evas); |
27 | o_text = o; | 27 | o_text = o; |
28 | st = evas_textblock_style_new(); | 28 | st = evas_textblock_style_new(); |
29 | evas_textblock_style_set | 29 | evas_textblock_style_set |
diff --git a/src/bin/ui.c b/src/bin/ui.c index b5a28a4..b07ef0b 100644 --- a/src/bin/ui.c +++ b/src/bin/ui.c | |||
@@ -586,7 +586,7 @@ _ui_menu_item_add(char *icon, char *text, void (*func) (void)) | |||
586 | Menu_Item *mi; | 586 | Menu_Item *mi; |
587 | 587 | ||
588 | mi = malloc(sizeof(Menu_Item)); | 588 | mi = malloc(sizeof(Menu_Item)); |
589 | mi->o_icon = eo_add(EVAS_OBJ_IMAGE_CLASS, evas); | 589 | mi->o_icon = eo_add(EVAS_IMAGE_CLASS, evas); |
590 | eo_unref(mi->o_icon); | 590 | eo_unref(mi->o_icon); |
591 | if (mi->o_icon) | 591 | if (mi->o_icon) |
592 | eo_do(mi->o_icon, evas_obj_image_file_set(build_path(icon), NULL), | 592 | eo_do(mi->o_icon, evas_obj_image_file_set(build_path(icon), NULL), |
@@ -607,7 +607,7 @@ _ui_setup(void) | |||
607 | Evas_Coord x, y, w, h; | 607 | Evas_Coord x, y, w, h; |
608 | time_t t0, t; | 608 | time_t t0, t; |
609 | 609 | ||
610 | o = eo_add(EVAS_OBJ_RECTANGLE_CLASS, evas); | 610 | o = eo_add(EVAS_RECTANGLE_CLASS, evas); |
611 | eo_unref(o); | 611 | eo_unref(o); |
612 | if (o) | 612 | if (o) |
613 | eo_do(o, evas_obj_position_set(0, 0), | 613 | eo_do(o, evas_obj_position_set(0, 0), |
@@ -622,7 +622,7 @@ _ui_setup(void) | |||
622 | evas_object_event_callback_add(o, EVAS_CALLBACK_MOUSE_MOVE, _ui_mouse_move, NULL); | 622 | evas_object_event_callback_add(o, EVAS_CALLBACK_MOUSE_MOVE, _ui_mouse_move, NULL); |
623 | o_bg = o; | 623 | o_bg = o; |
624 | 624 | ||
625 | o = eo_add(EVAS_OBJ_RECTANGLE_CLASS, evas); | 625 | o = eo_add(EVAS_RECTANGLE_CLASS, evas); |
626 | eo_unref(o); | 626 | eo_unref(o); |
627 | if (o) | 627 | if (o) |
628 | eo_do(o, evas_obj_position_set(0, 0), | 628 | eo_do(o, evas_obj_position_set(0, 0), |
@@ -632,7 +632,7 @@ _ui_setup(void) | |||
632 | evas_obj_visibility_set(EINA_TRUE)); | 632 | evas_obj_visibility_set(EINA_TRUE)); |
633 | o_wallpaper = o; | 633 | o_wallpaper = o; |
634 | 634 | ||
635 | o = eo_add(EVAS_OBJ_TEXT_CLASS, evas); | 635 | o = eo_add(EVAS_TEXT_CLASS, evas); |
636 | eo_unref(o); | 636 | eo_unref(o); |
637 | if (o) | 637 | if (o) |
638 | eo_do(o, evas_obj_text_font_set("Vera-Bold", 10), | 638 | eo_do(o, evas_obj_text_font_set("Vera-Bold", 10), |
@@ -648,7 +648,7 @@ _ui_setup(void) | |||
648 | evas_obj_visibility_set(EINA_TRUE)); | 648 | evas_obj_visibility_set(EINA_TRUE)); |
649 | o_title = o; | 649 | o_title = o; |
650 | 650 | ||
651 | o = eo_add(EVAS_OBJ_TEXT_CLASS, evas); | 651 | o = eo_add(EVAS_TEXT_CLASS, evas); |
652 | eo_unref(o); | 652 | eo_unref(o); |
653 | if (o) | 653 | if (o) |
654 | eo_do(o, evas_obj_text_font_set("Vera", 9), | 654 | eo_do(o, evas_obj_text_font_set("Vera", 9), |
@@ -664,7 +664,7 @@ _ui_setup(void) | |||
664 | evas_obj_visibility_set(EINA_TRUE)); | 664 | evas_obj_visibility_set(EINA_TRUE)); |
665 | o_byline = o; | 665 | o_byline = o; |
666 | 666 | ||
667 | o = eo_add(EVAS_OBJ_IMAGE_CLASS, evas); | 667 | o = eo_add(EVAS_IMAGE_CLASS, evas); |
668 | eo_unref(o); | 668 | eo_unref(o); |
669 | if (o) | 669 | if (o) |
670 | eo_do(o, evas_obj_position_set((win_w - 120) / 2, ((win_h - 160) / 2)), | 670 | eo_do(o, evas_obj_position_set((win_w - 120) / 2, ((win_h - 160) / 2)), |
@@ -676,7 +676,7 @@ _ui_setup(void) | |||
676 | evas_obj_visibility_set(EINA_TRUE)); | 676 | evas_obj_visibility_set(EINA_TRUE)); |
677 | o_menu_logo = o; | 677 | o_menu_logo = o; |
678 | 678 | ||
679 | o = eo_add(EVAS_OBJ_IMAGE_CLASS, evas); | 679 | o = eo_add(EVAS_IMAGE_CLASS, evas); |
680 | eo_unref(o); | 680 | eo_unref(o); |
681 | if (o) | 681 | if (o) |
682 | eo_do(o, evas_obj_position_set(win_w - 128, - 128), | 682 | eo_do(o, evas_obj_position_set(win_w - 128, - 128), |
@@ -685,7 +685,7 @@ _ui_setup(void) | |||
685 | evas_obj_visibility_set(EINA_TRUE)); | 685 | evas_obj_visibility_set(EINA_TRUE)); |
686 | o_menu_icon = o; | 686 | o_menu_icon = o; |
687 | 687 | ||
688 | o = eo_add(EVAS_OBJ_IMAGE_CLASS, evas); | 688 | o = eo_add(EVAS_IMAGE_CLASS, evas); |
689 | eo_unref(o); | 689 | eo_unref(o); |
690 | if (o) | 690 | if (o) |
691 | eo_do(o, evas_obj_position_set(0, 0), | 691 | eo_do(o, evas_obj_position_set(0, 0), |
@@ -694,7 +694,7 @@ _ui_setup(void) | |||
694 | evas_obj_image_fill_set(0, 0, 48, 48)); | 694 | evas_obj_image_fill_set(0, 0, 48, 48)); |
695 | o_menu_icon_sel = o; | 695 | o_menu_icon_sel = o; |
696 | 696 | ||
697 | o = eo_add(EVAS_OBJ_IMAGE_CLASS, evas); | 697 | o = eo_add(EVAS_IMAGE_CLASS, evas); |
698 | eo_unref(o); | 698 | eo_unref(o); |
699 | if (o) | 699 | if (o) |
700 | eo_do(o, evas_obj_position_set(0, 0), | 700 | eo_do(o, evas_obj_position_set(0, 0), |
@@ -704,7 +704,7 @@ _ui_setup(void) | |||
704 | evas_obj_image_border_set(7, 7, 7, 7)); | 704 | evas_obj_image_border_set(7, 7, 7, 7)); |
705 | o_menu_text_sel = o; | 705 | o_menu_text_sel = o; |
706 | 706 | ||
707 | o = eo_add(EVAS_OBJ_TEXT_CLASS, evas); | 707 | o = eo_add(EVAS_TEXT_CLASS, evas); |
708 | eo_unref(o); | 708 | eo_unref(o); |
709 | if (o) | 709 | if (o) |
710 | eo_do(o, evas_obj_text_font_set("Vera", 10), | 710 | eo_do(o, evas_obj_text_font_set("Vera", 10), |
diff --git a/src/bin/widgets_file_icons.c b/src/bin/widgets_file_icons.c index a5e1434..07941f6 100644 --- a/src/bin/widgets_file_icons.c +++ b/src/bin/widgets_file_icons.c | |||
@@ -46,14 +46,14 @@ static void _setup(void) | |||
46 | Evas_Object *o; | 46 | Evas_Object *o; |
47 | for (i = 0; i < NUM; i++) | 47 | for (i = 0; i < NUM; i++) |
48 | { | 48 | { |
49 | o = eo_add(EVAS_OBJ_IMAGE_CLASS, evas); | 49 | o = eo_add(EVAS_IMAGE_CLASS, evas); |
50 | o_images[i] = o; | 50 | o_images[i] = o; |
51 | eo_do(o, evas_obj_image_file_set(build_path(icons[i % 13]), NULL), | 51 | eo_do(o, evas_obj_image_file_set(build_path(icons[i % 13]), NULL), |
52 | evas_obj_image_fill_set(0, 0, ICON_SIZE, ICON_SIZE), | 52 | evas_obj_image_fill_set(0, 0, ICON_SIZE, ICON_SIZE), |
53 | evas_obj_size_set(ICON_SIZE, ICON_SIZE), | 53 | evas_obj_size_set(ICON_SIZE, ICON_SIZE), |
54 | evas_obj_visibility_set(EINA_TRUE)); | 54 | evas_obj_visibility_set(EINA_TRUE)); |
55 | 55 | ||
56 | o = eo_add(EVAS_OBJ_TEXT_CLASS, evas); | 56 | o = eo_add(EVAS_TEXT_CLASS, evas); |
57 | o_texts[i] = o; | 57 | o_texts[i] = o; |
58 | eo_do(o, evas_obj_text_font_set("Vera-Bold", 10), | 58 | eo_do(o, evas_obj_text_font_set("Vera-Bold", 10), |
59 | evas_obj_text_text_set(icons[i % 13]), | 59 | evas_obj_text_text_set(icons[i % 13]), |
diff --git a/src/bin/widgets_file_icons_2.c b/src/bin/widgets_file_icons_2.c index e75c8b8..dc2eded 100644 --- a/src/bin/widgets_file_icons_2.c +++ b/src/bin/widgets_file_icons_2.c | |||
@@ -46,14 +46,14 @@ static void _setup(void) | |||
46 | Evas_Object *o; | 46 | Evas_Object *o; |
47 | for (i = 0; i < NUM; i++) | 47 | for (i = 0; i < NUM; i++) |
48 | { | 48 | { |
49 | o = eo_add(EVAS_OBJ_IMAGE_CLASS, evas); | 49 | o = eo_add(EVAS_IMAGE_CLASS, evas); |
50 | o_images[i] = o; | 50 | o_images[i] = o; |
51 | eo_do(o, evas_obj_image_file_set(build_path(icons[i % 13]), NULL), | 51 | eo_do(o, evas_obj_image_file_set(build_path(icons[i % 13]), NULL), |
52 | evas_obj_image_fill_set(0, 0, ICON_SIZE, ICON_SIZE), | 52 | evas_obj_image_fill_set(0, 0, ICON_SIZE, ICON_SIZE), |
53 | evas_obj_size_set(ICON_SIZE, ICON_SIZE), | 53 | evas_obj_size_set(ICON_SIZE, ICON_SIZE), |
54 | evas_obj_visibility_set(EINA_TRUE)); | 54 | evas_obj_visibility_set(EINA_TRUE)); |
55 | 55 | ||
56 | o = eo_add(EVAS_OBJ_TEXT_CLASS, evas); | 56 | o = eo_add(EVAS_TEXT_CLASS, evas); |
57 | o_texts[i] = o; | 57 | o_texts[i] = o; |
58 | eo_do(o, evas_obj_text_font_set("Vera-Bold", 10), | 58 | eo_do(o, evas_obj_text_font_set("Vera-Bold", 10), |
59 | evas_obj_text_text_set(icons[i % 13]), | 59 | evas_obj_text_text_set(icons[i % 13]), |
diff --git a/src/bin/widgets_file_icons_2_grouped.c b/src/bin/widgets_file_icons_2_grouped.c index 4f1175d..4607a12 100644 --- a/src/bin/widgets_file_icons_2_grouped.c +++ b/src/bin/widgets_file_icons_2_grouped.c | |||
@@ -46,14 +46,14 @@ static void _setup(void) | |||
46 | Evas_Object *o; | 46 | Evas_Object *o; |
47 | for (i = 0; i < NUM; i++) | 47 | for (i = 0; i < NUM; i++) |
48 | { | 48 | { |
49 | o = eo_add(EVAS_OBJ_IMAGE_CLASS, evas); | 49 | o = eo_add(EVAS_IMAGE_CLASS, evas); |
50 | o_images[i] = o; | 50 | o_images[i] = o; |
51 | eo_do(o, evas_obj_image_file_set(build_path(icons[i % 13]), NULL), | 51 | eo_do(o, evas_obj_image_file_set(build_path(icons[i % 13]), NULL), |
52 | evas_obj_image_fill_set(0, 0, ICON_SIZE, ICON_SIZE), | 52 | evas_obj_image_fill_set(0, 0, ICON_SIZE, ICON_SIZE), |
53 | evas_obj_size_set(ICON_SIZE, ICON_SIZE), | 53 | evas_obj_size_set(ICON_SIZE, ICON_SIZE), |
54 | evas_obj_visibility_set(EINA_TRUE)); | 54 | evas_obj_visibility_set(EINA_TRUE)); |
55 | 55 | ||
56 | o = eo_add(EVAS_OBJ_TEXT_CLASS, evas); | 56 | o = eo_add(EVAS_TEXT_CLASS, evas); |
57 | o_texts[i] = o; | 57 | o_texts[i] = o; |
58 | eo_do(o, evas_obj_text_font_set("Vera-Bold", 10), | 58 | eo_do(o, evas_obj_text_font_set("Vera-Bold", 10), |
59 | evas_obj_text_text_set(icons[i % 13]), | 59 | evas_obj_text_text_set(icons[i % 13]), |
diff --git a/src/bin/widgets_file_icons_2_same.c b/src/bin/widgets_file_icons_2_same.c index e31054c..9f87471 100644 --- a/src/bin/widgets_file_icons_2_same.c +++ b/src/bin/widgets_file_icons_2_same.c | |||
@@ -31,14 +31,14 @@ static void _setup(void) | |||
31 | Evas_Object *o; | 31 | Evas_Object *o; |
32 | for (i = 0; i < NUM; i++) | 32 | for (i = 0; i < NUM; i++) |
33 | { | 33 | { |
34 | o = eo_add(EVAS_OBJ_IMAGE_CLASS, evas); | 34 | o = eo_add(EVAS_IMAGE_CLASS, evas); |
35 | o_images[i] = o; | 35 | o_images[i] = o; |
36 | eo_do(o, evas_obj_image_file_set(build_path(icons[i % 1]), NULL), | 36 | eo_do(o, evas_obj_image_file_set(build_path(icons[i % 1]), NULL), |
37 | evas_obj_image_fill_set(0, 0, ICON_SIZE, ICON_SIZE), | 37 | evas_obj_image_fill_set(0, 0, ICON_SIZE, ICON_SIZE), |
38 | evas_obj_size_set(ICON_SIZE, ICON_SIZE), | 38 | evas_obj_size_set(ICON_SIZE, ICON_SIZE), |
39 | evas_obj_visibility_set(EINA_TRUE)); | 39 | evas_obj_visibility_set(EINA_TRUE)); |
40 | 40 | ||
41 | o = eo_add(EVAS_OBJ_TEXT_CLASS, evas); | 41 | o = eo_add(EVAS_TEXT_CLASS, evas); |
42 | o_texts[i] = o; | 42 | o_texts[i] = o; |
43 | eo_do(o, evas_obj_text_font_set("Vera-Bold", 10), | 43 | eo_do(o, evas_obj_text_font_set("Vera-Bold", 10), |
44 | evas_obj_text_text_set(icons[i % 1]), | 44 | evas_obj_text_text_set(icons[i % 1]), |
diff --git a/src/bin/widgets_file_icons_2_same_grouped.c b/src/bin/widgets_file_icons_2_same_grouped.c index 61f7d48..70da798 100644 --- a/src/bin/widgets_file_icons_2_same_grouped.c +++ b/src/bin/widgets_file_icons_2_same_grouped.c | |||
@@ -31,14 +31,14 @@ static void _setup(void) | |||
31 | Evas_Object *o; | 31 | Evas_Object *o; |
32 | for (i = 0; i < NUM; i++) | 32 | for (i = 0; i < NUM; i++) |
33 | { | 33 | { |
34 | o = eo_add(EVAS_OBJ_IMAGE_CLASS, evas); | 34 | o = eo_add(EVAS_IMAGE_CLASS, evas); |
35 | o_images[i] = o; | 35 | o_images[i] = o; |
36 | eo_do(o, evas_obj_image_file_set(build_path(icons[i % 1]), NULL), | 36 | eo_do(o, evas_obj_image_file_set(build_path(icons[i % 1]), NULL), |
37 | evas_obj_image_fill_set(0, 0, ICON_SIZE, ICON_SIZE), | 37 | evas_obj_image_fill_set(0, 0, ICON_SIZE, ICON_SIZE), |
38 | evas_obj_size_set(ICON_SIZE, ICON_SIZE), | 38 | evas_obj_size_set(ICON_SIZE, ICON_SIZE), |
39 | evas_obj_visibility_set(EINA_TRUE)); | 39 | evas_obj_visibility_set(EINA_TRUE)); |
40 | 40 | ||
41 | o = eo_add(EVAS_OBJ_TEXT_CLASS, evas); | 41 | o = eo_add(EVAS_TEXT_CLASS, evas); |
42 | o_texts[i] = o; | 42 | o_texts[i] = o; |
43 | eo_do(o, evas_obj_text_font_set("Vera-Bold", 10), | 43 | eo_do(o, evas_obj_text_font_set("Vera-Bold", 10), |
44 | evas_obj_text_text_set(icons[i % 1]), | 44 | evas_obj_text_text_set(icons[i % 1]), |
diff --git a/src/bin/widgets_file_icons_3.c b/src/bin/widgets_file_icons_3.c index 186cc4c..19877ee 100644 --- a/src/bin/widgets_file_icons_3.c +++ b/src/bin/widgets_file_icons_3.c | |||
@@ -46,14 +46,14 @@ static void _setup(void) | |||
46 | Evas_Object *o; | 46 | Evas_Object *o; |
47 | for (i = 0; i < NUM; i++) | 47 | for (i = 0; i < NUM; i++) |
48 | { | 48 | { |
49 | o = eo_add(EVAS_OBJ_IMAGE_CLASS, evas); | 49 | o = eo_add(EVAS_IMAGE_CLASS, evas); |
50 | o_images[i] = o; | 50 | o_images[i] = o; |
51 | eo_do(o, evas_obj_image_file_set(build_path(icons[i % 13]), NULL), | 51 | eo_do(o, evas_obj_image_file_set(build_path(icons[i % 13]), NULL), |
52 | evas_obj_image_fill_set(0, 0, ICON_SIZE, ICON_SIZE), | 52 | evas_obj_image_fill_set(0, 0, ICON_SIZE, ICON_SIZE), |
53 | evas_obj_size_set(ICON_SIZE, ICON_SIZE), | 53 | evas_obj_size_set(ICON_SIZE, ICON_SIZE), |
54 | evas_obj_visibility_set(EINA_TRUE)); | 54 | evas_obj_visibility_set(EINA_TRUE)); |
55 | 55 | ||
56 | o = eo_add(EVAS_OBJ_TEXT_CLASS, evas); | 56 | o = eo_add(EVAS_TEXT_CLASS, evas); |
57 | o_texts[i] = o; | 57 | o_texts[i] = o; |
58 | eo_do(o, evas_obj_text_font_set("Vera-Bold", 10), | 58 | eo_do(o, evas_obj_text_font_set("Vera-Bold", 10), |
59 | evas_obj_text_text_set(icons[i % 13]), | 59 | evas_obj_text_text_set(icons[i % 13]), |
diff --git a/src/bin/widgets_file_icons_4.c b/src/bin/widgets_file_icons_4.c index add5e8d..126f303 100644 --- a/src/bin/widgets_file_icons_4.c +++ b/src/bin/widgets_file_icons_4.c | |||
@@ -46,14 +46,14 @@ static void _setup(void) | |||
46 | Evas_Object *o; | 46 | Evas_Object *o; |
47 | for (i = 0; i < NUM; i++) | 47 | for (i = 0; i < NUM; i++) |
48 | { | 48 | { |
49 | o = eo_add(EVAS_OBJ_IMAGE_CLASS, evas); | 49 | o = eo_add(EVAS_IMAGE_CLASS, evas); |
50 | o_images[i] = o; | 50 | o_images[i] = o; |
51 | eo_do(o, evas_obj_image_file_set(build_path(icons[i % 13]), NULL), | 51 | eo_do(o, evas_obj_image_file_set(build_path(icons[i % 13]), NULL), |
52 | evas_obj_image_fill_set(0, 0, ICON_SIZE, ICON_SIZE), | 52 | evas_obj_image_fill_set(0, 0, ICON_SIZE, ICON_SIZE), |
53 | evas_obj_size_set(ICON_SIZE, ICON_SIZE), | 53 | evas_obj_size_set(ICON_SIZE, ICON_SIZE), |
54 | evas_obj_visibility_set(EINA_TRUE)); | 54 | evas_obj_visibility_set(EINA_TRUE)); |
55 | 55 | ||
56 | o = eo_add(EVAS_OBJ_TEXT_CLASS, evas); | 56 | o = eo_add(EVAS_TEXT_CLASS, evas); |
57 | o_texts[i] = o; | 57 | o_texts[i] = o; |
58 | eo_do(o, evas_obj_text_font_set("Vera-Bold", 10), | 58 | eo_do(o, evas_obj_text_font_set("Vera-Bold", 10), |
59 | evas_obj_text_text_set(icons[i % 13]), | 59 | evas_obj_text_text_set(icons[i % 13]), |
diff --git a/src/bin/widgets_list_1.c b/src/bin/widgets_list_1.c index 856887c..ea194a0 100644 --- a/src/bin/widgets_list_1.c +++ b/src/bin/widgets_list_1.c | |||
@@ -62,7 +62,7 @@ static void _setup(void) | |||
62 | Evas_Object *o; | 62 | Evas_Object *o; |
63 | for (i = 0; i < NUM; i++) | 63 | for (i = 0; i < NUM; i++) |
64 | { | 64 | { |
65 | o = eo_add(EVAS_OBJ_IMAGE_CLASS, evas); | 65 | o = eo_add(EVAS_IMAGE_CLASS, evas); |
66 | o_images[i] = o; | 66 | o_images[i] = o; |
67 | eo_do(o, evas_obj_image_filled_set(1), | 67 | eo_do(o, evas_obj_image_filled_set(1), |
68 | evas_obj_image_border_set(2, 2, 2, 2), | 68 | evas_obj_image_border_set(2, 2, 2, 2), |
@@ -70,7 +70,7 @@ static void _setup(void) | |||
70 | evas_obj_size_set(win_w, ICON_SIZE), | 70 | evas_obj_size_set(win_w, ICON_SIZE), |
71 | evas_obj_visibility_set(EINA_TRUE)); | 71 | evas_obj_visibility_set(EINA_TRUE)); |
72 | 72 | ||
73 | o = eo_add(EVAS_OBJ_TEXT_CLASS, evas); | 73 | o = eo_add(EVAS_TEXT_CLASS, evas); |
74 | o_texts[i] = o; | 74 | o_texts[i] = o; |
75 | eo_do(o, evas_obj_text_font_set("Vera-Bold", 10), | 75 | eo_do(o, evas_obj_text_font_set("Vera-Bold", 10), |
76 | evas_obj_text_text_set(labels[i % 26]), | 76 | evas_obj_text_text_set(labels[i % 26]), |
diff --git a/src/bin/widgets_list_1_grouped.c b/src/bin/widgets_list_1_grouped.c index fdbd036..0bf97d3 100644 --- a/src/bin/widgets_list_1_grouped.c +++ b/src/bin/widgets_list_1_grouped.c | |||
@@ -62,7 +62,7 @@ static void _setup(void) | |||
62 | Evas_Object *o; | 62 | Evas_Object *o; |
63 | for (i = 0; i < NUM; i++) | 63 | for (i = 0; i < NUM; i++) |
64 | { | 64 | { |
65 | o = eo_add(EVAS_OBJ_IMAGE_CLASS, evas); | 65 | o = eo_add(EVAS_IMAGE_CLASS, evas); |
66 | o_images[i] = o; | 66 | o_images[i] = o; |
67 | eo_do(o, evas_obj_image_filled_set(1), | 67 | eo_do(o, evas_obj_image_filled_set(1), |
68 | evas_obj_image_border_set(2, 2, 2, 2), | 68 | evas_obj_image_border_set(2, 2, 2, 2), |
@@ -70,7 +70,7 @@ static void _setup(void) | |||
70 | evas_obj_size_set(win_w, ICON_SIZE), | 70 | evas_obj_size_set(win_w, ICON_SIZE), |
71 | evas_obj_visibility_set(EINA_TRUE)); | 71 | evas_obj_visibility_set(EINA_TRUE)); |
72 | 72 | ||
73 | o = eo_add(EVAS_OBJ_TEXT_CLASS, evas); | 73 | o = eo_add(EVAS_TEXT_CLASS, evas); |
74 | o_texts[i] = o; | 74 | o_texts[i] = o; |
75 | eo_do(o, evas_obj_text_font_set("Vera-Bold", 10), | 75 | eo_do(o, evas_obj_text_font_set("Vera-Bold", 10), |
76 | evas_obj_text_text_set(labels[i % 26]), | 76 | evas_obj_text_text_set(labels[i % 26]), |
diff --git a/src/bin/widgets_list_2.c b/src/bin/widgets_list_2.c index 95242c4..e7db9c5 100644 --- a/src/bin/widgets_list_2.c +++ b/src/bin/widgets_list_2.c | |||
@@ -62,7 +62,7 @@ static void _setup(void) | |||
62 | Evas_Object *o; | 62 | Evas_Object *o; |
63 | for (i = 0; i < NUM; i++) | 63 | for (i = 0; i < NUM; i++) |
64 | { | 64 | { |
65 | o = eo_add(EVAS_OBJ_IMAGE_CLASS, evas); | 65 | o = eo_add(EVAS_IMAGE_CLASS, evas); |
66 | o_images[i] = o; | 66 | o_images[i] = o; |
67 | eo_do(o, evas_obj_image_filled_set(1), | 67 | eo_do(o, evas_obj_image_filled_set(1), |
68 | evas_obj_image_border_set(2, 2, 2, 2), | 68 | evas_obj_image_border_set(2, 2, 2, 2), |
@@ -70,7 +70,7 @@ static void _setup(void) | |||
70 | evas_obj_size_set(win_w, ICON_SIZE), | 70 | evas_obj_size_set(win_w, ICON_SIZE), |
71 | evas_obj_visibility_set(EINA_TRUE)); | 71 | evas_obj_visibility_set(EINA_TRUE)); |
72 | 72 | ||
73 | o = eo_add(EVAS_OBJ_TEXT_CLASS, evas); | 73 | o = eo_add(EVAS_TEXT_CLASS, evas); |
74 | o_texts[i] = o; | 74 | o_texts[i] = o; |
75 | eo_do(o, evas_obj_text_font_set("Vera-Bold", 10), | 75 | eo_do(o, evas_obj_text_font_set("Vera-Bold", 10), |
76 | evas_obj_text_text_set(labels[i % 26]), | 76 | evas_obj_text_text_set(labels[i % 26]), |
diff --git a/src/bin/widgets_list_2_grouped.c b/src/bin/widgets_list_2_grouped.c index 11905c1..a99a4fc 100644 --- a/src/bin/widgets_list_2_grouped.c +++ b/src/bin/widgets_list_2_grouped.c | |||
@@ -62,7 +62,7 @@ static void _setup(void) | |||
62 | Evas_Object *o; | 62 | Evas_Object *o; |
63 | for (i = 0; i < NUM; i++) | 63 | for (i = 0; i < NUM; i++) |
64 | { | 64 | { |
65 | o = eo_add(EVAS_OBJ_IMAGE_CLASS, evas); | 65 | o = eo_add(EVAS_IMAGE_CLASS, evas); |
66 | o_images[i] = o; | 66 | o_images[i] = o; |
67 | eo_do(o, evas_obj_image_filled_set(1), | 67 | eo_do(o, evas_obj_image_filled_set(1), |
68 | evas_obj_image_border_set(2, 2, 2, 2), | 68 | evas_obj_image_border_set(2, 2, 2, 2), |
@@ -70,7 +70,7 @@ static void _setup(void) | |||
70 | evas_obj_size_set(win_w, ICON_SIZE), | 70 | evas_obj_size_set(win_w, ICON_SIZE), |
71 | evas_obj_visibility_set(EINA_TRUE)); | 71 | evas_obj_visibility_set(EINA_TRUE)); |
72 | 72 | ||
73 | o = eo_add(EVAS_OBJ_TEXT_CLASS, evas); | 73 | o = eo_add(EVAS_TEXT_CLASS, evas); |
74 | o_texts[i] = o; | 74 | o_texts[i] = o; |
75 | eo_do(o, evas_obj_text_font_set("Vera-Bold", 10), | 75 | eo_do(o, evas_obj_text_font_set("Vera-Bold", 10), |
76 | evas_obj_text_text_set(labels[i % 26]), | 76 | evas_obj_text_text_set(labels[i % 26]), |
diff --git a/src/bin/widgets_list_3.c b/src/bin/widgets_list_3.c index c17bcb7..1f27ee3 100644 --- a/src/bin/widgets_list_3.c +++ b/src/bin/widgets_list_3.c | |||
@@ -83,7 +83,7 @@ static void _setup(void) | |||
83 | Evas_Object *o; | 83 | Evas_Object *o; |
84 | for (i = 0; i < NUM; i++) | 84 | for (i = 0; i < NUM; i++) |
85 | { | 85 | { |
86 | o = eo_add(EVAS_OBJ_IMAGE_CLASS, evas); | 86 | o = eo_add(EVAS_IMAGE_CLASS, evas); |
87 | o_images[i] = o; | 87 | o_images[i] = o; |
88 | eo_do(o, evas_obj_image_filled_set(1), | 88 | eo_do(o, evas_obj_image_filled_set(1), |
89 | evas_obj_image_border_set(2, 2, 2, 2), | 89 | evas_obj_image_border_set(2, 2, 2, 2), |
@@ -91,7 +91,7 @@ static void _setup(void) | |||
91 | evas_obj_size_set(win_w, ICON_SIZE), | 91 | evas_obj_size_set(win_w, ICON_SIZE), |
92 | evas_obj_visibility_set(EINA_TRUE)); | 92 | evas_obj_visibility_set(EINA_TRUE)); |
93 | 93 | ||
94 | o = eo_add(EVAS_OBJ_IMAGE_CLASS, evas); | 94 | o = eo_add(EVAS_IMAGE_CLASS, evas); |
95 | o_icons[i] = o; | 95 | o_icons[i] = o; |
96 | eo_do(o, evas_obj_image_filled_set(1), | 96 | eo_do(o, evas_obj_image_filled_set(1), |
97 | evas_obj_image_border_set(2, 2, 2, 2), | 97 | evas_obj_image_border_set(2, 2, 2, 2), |
@@ -99,7 +99,7 @@ static void _setup(void) | |||
99 | evas_obj_size_set(ICON_SIZE - 8, ICON_SIZE - 8), | 99 | evas_obj_size_set(ICON_SIZE - 8, ICON_SIZE - 8), |
100 | evas_obj_visibility_set(EINA_TRUE)); | 100 | evas_obj_visibility_set(EINA_TRUE)); |
101 | 101 | ||
102 | o = eo_add(EVAS_OBJ_TEXT_CLASS, evas); | 102 | o = eo_add(EVAS_TEXT_CLASS, evas); |
103 | o_texts[i] = o; | 103 | o_texts[i] = o; |
104 | eo_do(o, evas_obj_text_font_set("Vera-Bold", 10), | 104 | eo_do(o, evas_obj_text_font_set("Vera-Bold", 10), |
105 | evas_obj_text_text_set(labels[i % 26]), | 105 | evas_obj_text_text_set(labels[i % 26]), |
diff --git a/src/bin/widgets_list_3_grouped.c b/src/bin/widgets_list_3_grouped.c index 74c6fde..6fbd65d 100644 --- a/src/bin/widgets_list_3_grouped.c +++ b/src/bin/widgets_list_3_grouped.c | |||
@@ -83,7 +83,7 @@ static void _setup(void) | |||
83 | Evas_Object *o; | 83 | Evas_Object *o; |
84 | for (i = 0; i < NUM; i++) | 84 | for (i = 0; i < NUM; i++) |
85 | { | 85 | { |
86 | o = eo_add(EVAS_OBJ_IMAGE_CLASS, evas); | 86 | o = eo_add(EVAS_IMAGE_CLASS, evas); |
87 | o_images[i] = o; | 87 | o_images[i] = o; |
88 | eo_do(o, evas_obj_image_filled_set(1), | 88 | eo_do(o, evas_obj_image_filled_set(1), |
89 | evas_obj_image_border_set(2, 2, 2, 2), | 89 | evas_obj_image_border_set(2, 2, 2, 2), |
@@ -91,7 +91,7 @@ static void _setup(void) | |||
91 | evas_obj_size_set(win_w, ICON_SIZE), | 91 | evas_obj_size_set(win_w, ICON_SIZE), |
92 | evas_obj_visibility_set(EINA_TRUE)); | 92 | evas_obj_visibility_set(EINA_TRUE)); |
93 | 93 | ||
94 | o = eo_add(EVAS_OBJ_IMAGE_CLASS, evas); | 94 | o = eo_add(EVAS_IMAGE_CLASS, evas); |
95 | o_icons[i] = o; | 95 | o_icons[i] = o; |
96 | eo_do(o, evas_obj_image_filled_set(1), | 96 | eo_do(o, evas_obj_image_filled_set(1), |
97 | evas_obj_image_border_set(2, 2, 2, 2), | 97 | evas_obj_image_border_set(2, 2, 2, 2), |
@@ -99,7 +99,7 @@ static void _setup(void) | |||
99 | evas_obj_size_set(ICON_SIZE - 8, ICON_SIZE - 8), | 99 | evas_obj_size_set(ICON_SIZE - 8, ICON_SIZE - 8), |
100 | evas_obj_visibility_set(EINA_TRUE)); | 100 | evas_obj_visibility_set(EINA_TRUE)); |
101 | 101 | ||
102 | o = eo_add(EVAS_OBJ_TEXT_CLASS, evas); | 102 | o = eo_add(EVAS_TEXT_CLASS, evas); |
103 | o_texts[i] = o; | 103 | o_texts[i] = o; |
104 | eo_do(o, evas_obj_text_font_set("Vera-Bold", 10), | 104 | eo_do(o, evas_obj_text_font_set("Vera-Bold", 10), |
105 | evas_obj_text_text_set(labels[i % 26]), | 105 | evas_obj_text_text_set(labels[i % 26]), |
diff --git a/src/bin/widgets_list_4.c b/src/bin/widgets_list_4.c index 76515ae..5c403ee 100644 --- a/src/bin/widgets_list_4.c +++ b/src/bin/widgets_list_4.c | |||
@@ -83,7 +83,7 @@ static void _setup(void) | |||
83 | Evas_Object *o; | 83 | Evas_Object *o; |
84 | for (i = 0; i < NUM; i++) | 84 | for (i = 0; i < NUM; i++) |
85 | { | 85 | { |
86 | o = eo_add(EVAS_OBJ_IMAGE_CLASS, evas); | 86 | o = eo_add(EVAS_IMAGE_CLASS, evas); |
87 | o_images[i] = o; | 87 | o_images[i] = o; |
88 | eo_do(o, evas_obj_image_filled_set(1), | 88 | eo_do(o, evas_obj_image_filled_set(1), |
89 | evas_obj_image_border_set(2, 2, 2, 2), | 89 | evas_obj_image_border_set(2, 2, 2, 2), |
@@ -91,7 +91,7 @@ static void _setup(void) | |||
91 | evas_obj_size_set(win_w, ICON_SIZE), | 91 | evas_obj_size_set(win_w, ICON_SIZE), |
92 | evas_obj_visibility_set(EINA_TRUE)); | 92 | evas_obj_visibility_set(EINA_TRUE)); |
93 | 93 | ||
94 | o = eo_add(EVAS_OBJ_IMAGE_CLASS, evas); | 94 | o = eo_add(EVAS_IMAGE_CLASS, evas); |
95 | o_icons[i] = o; | 95 | o_icons[i] = o; |
96 | eo_do(o, evas_obj_image_filled_set(1), | 96 | eo_do(o, evas_obj_image_filled_set(1), |
97 | evas_obj_image_border_set(2, 2, 2, 2), | 97 | evas_obj_image_border_set(2, 2, 2, 2), |
@@ -99,7 +99,7 @@ static void _setup(void) | |||
99 | evas_obj_size_set(ICON_SIZE - 8, ICON_SIZE - 8), | 99 | evas_obj_size_set(ICON_SIZE - 8, ICON_SIZE - 8), |
100 | evas_obj_visibility_set(EINA_TRUE)); | 100 | evas_obj_visibility_set(EINA_TRUE)); |
101 | 101 | ||
102 | o = eo_add(EVAS_OBJ_TEXT_CLASS, evas); | 102 | o = eo_add(EVAS_TEXT_CLASS, evas); |
103 | o_texts[i] = o; | 103 | o_texts[i] = o; |
104 | eo_do(o, evas_obj_text_font_set("Vera-Bold", 10), | 104 | eo_do(o, evas_obj_text_font_set("Vera-Bold", 10), |
105 | evas_obj_text_text_set(labels[i % 26]), | 105 | evas_obj_text_text_set(labels[i % 26]), |
diff --git a/src/bin/widgets_list_4_grouped.c b/src/bin/widgets_list_4_grouped.c index 42065b9..c959a9a 100644 --- a/src/bin/widgets_list_4_grouped.c +++ b/src/bin/widgets_list_4_grouped.c | |||
@@ -83,7 +83,7 @@ static void _setup(void) | |||
83 | Evas_Object *o; | 83 | Evas_Object *o; |
84 | for (i = 0; i < NUM; i++) | 84 | for (i = 0; i < NUM; i++) |
85 | { | 85 | { |
86 | o = eo_add(EVAS_OBJ_IMAGE_CLASS, evas); | 86 | o = eo_add(EVAS_IMAGE_CLASS, evas); |
87 | o_images[i] = o; | 87 | o_images[i] = o; |
88 | eo_do(o, evas_obj_image_filled_set(1), | 88 | eo_do(o, evas_obj_image_filled_set(1), |
89 | evas_obj_image_border_set(2, 2, 2, 2), | 89 | evas_obj_image_border_set(2, 2, 2, 2), |
@@ -91,7 +91,7 @@ static void _setup(void) | |||
91 | evas_obj_size_set(win_w, ICON_SIZE), | 91 | evas_obj_size_set(win_w, ICON_SIZE), |
92 | evas_obj_visibility_set(EINA_TRUE)); | 92 | evas_obj_visibility_set(EINA_TRUE)); |
93 | 93 | ||
94 | o = eo_add(EVAS_OBJ_IMAGE_CLASS, evas); | 94 | o = eo_add(EVAS_IMAGE_CLASS, evas); |
95 | o_icons[i] = o; | 95 | o_icons[i] = o; |
96 | eo_do(o, evas_obj_image_filled_set(1), | 96 | eo_do(o, evas_obj_image_filled_set(1), |
97 | evas_obj_image_border_set(2, 2, 2, 2), | 97 | evas_obj_image_border_set(2, 2, 2, 2), |
@@ -99,7 +99,7 @@ static void _setup(void) | |||
99 | evas_obj_size_set(ICON_SIZE - 8, ICON_SIZE - 8), | 99 | evas_obj_size_set(ICON_SIZE - 8, ICON_SIZE - 8), |
100 | evas_obj_visibility_set(EINA_TRUE)); | 100 | evas_obj_visibility_set(EINA_TRUE)); |
101 | 101 | ||
102 | o = eo_add(EVAS_OBJ_TEXT_CLASS, evas); | 102 | o = eo_add(EVAS_TEXT_CLASS, evas); |
103 | o_texts[i] = o; | 103 | o_texts[i] = o; |
104 | eo_do(o, evas_obj_text_font_set("Vera-Bold", 10), | 104 | eo_do(o, evas_obj_text_font_set("Vera-Bold", 10), |
105 | evas_obj_text_text_set(labels[i % 26]), | 105 | evas_obj_text_text_set(labels[i % 26]), |