Commit Graph

5230 Commits

Author SHA1 Message Date
Daniel Juyung Seo 63473e56c2 elm genlist: Applied genlist compress mode API change.
Signed-off-by: Daniel Juyung Seo <juyung.seo@samsung.com>

SVN revision: 68998
2012-03-07 16:37:08 +00:00
Carsten Haitzler 8e8c14fe24 warn--
SVN revision: 68997
2012-03-07 16:36:33 +00:00
Daniel Juyung Seo cc20f1cf72 elm genlist: Fixed wrong API. elm_genlist_decorate_type_get -> elm_genlist_decorate_mode_get
Signed-off-by: Daniel Juyung Seo <juyung.seo@samsung.com>

SVN revision: 68996
2012-03-07 16:32:17 +00:00
Daniel Juyung Seo f3f5696016 elm genlist: Applied genlist item mode API changes.
Signed-off-by: Daniel Juyung Seo <juyung.seo@samsung.com>

SVN revision: 68995
2012-03-07 16:29:26 +00:00
Sanjeev BA 780025511e Fix warnings when ewk not installed.
Signed-off-by: Sanjeev BA <eflelev8@gmail.com>

SVN revision: 68994
2012-03-07 16:25:43 +00:00
Hyoyoung Chang dff33d0aa4 From: Hyoyoung Chang <hyoyoung@gmail.com>
Subject: [E-devel] [patch] elm_genlist - add item_select_mode_set/get

I added two apis for item selecting mode.
It almost same with elm_genlist_select_mode.


+EAPI void
+elm_genlist_item_select_mode_set(Elm_Object_Item *it,
+                                 Elm_Object_Select_Mode_Type mode)
+EAPI Elm_Object_Select_Mode_Type
+elm_genlist_item_select_mode_get(const Elm_Object_Item *it)

And display_only apis is unfied with item_select_mode.

+EINA_DEPRECATED EAPI void
elm_genlist_item_display_only_set(Elm_Object_Item *it, Eina_Bool
display_only);
+EINA_DEPRECATED EAPI Eina_Bool
elm_genlist_item_display_only_get(const Elm_Object_Item *it);



SVN revision: 68993
2012-03-07 16:22:58 +00:00
Daniel Juyung Seo c4508b0cc3 elm genlist: Changed item mode APIs.
1. elm_genlist_item_mode_set -> elm_genlist_item_decorate_mode_set.
2. elm_genlist_mode_item_get -> elm_genlist_decorated_item_get.
3. elm_genlist_mode_type_get -> elm_genlist_decorate_type_get.

Signed-off-by: Daniel Juyung Seo <juyung.seo@samsung.com>

SVN revision: 68992
2012-03-07 16:19:25 +00:00
Mike Blumenkrantz 4b8fcf7430 seriously file globbing. another day would have been much better.
SVN revision: 68991
2012-03-07 16:18:38 +00:00
ChunEon Park c652e37c6e elemenatry/navifrmae - killed 2 more apis.
elm_naviframe_item_style_default_set
elm_nvaiframe_item_style_default_get



SVN revision: 68990
2012-03-07 16:15:17 +00:00
Daniel Juyung Seo 005f2465d9 elm genlist: Deprecated elm_genlist_compress_mode_set/get and
elm_genlist_height_for_width_mode_set/get. Use
elm_genlist_mode_set(obj, ELM_LIST_COMPRESS) instead. This may
introduce bugs or performance issue but I will fix this soon.

Signed-off-by: Daniel Juyung Seo <juyung.seo@samsung.com>

SVN revision: 68985
2012-03-07 16:07:34 +00:00
Sanjeev BA feb7bfe3df Filled_get/set works fine.
Signed-off-by: Sanjeev BA <eflelev8@gmail.com>

SVN revision: 68984
2012-03-07 16:05:32 +00:00
Mike Blumenkrantz 80d8165a15 wtf globbing y u no work???
SVN revision: 68983
2012-03-07 16:05:28 +00:00
Mike Blumenkrantz aa78786616 rename elm object select mode values: whoever wrote this deserves spankies
SVN revision: 68982
2012-03-07 16:01:37 +00:00
Carsten Haitzler 8054ade720 xxx-- -> we need these as genlist/grid items hold data for these due
to realize/unrealize.



SVN revision: 68981
2012-03-07 16:01:15 +00:00
Carsten Haitzler a021f775fb xxx -- - i'm happy with this now.
SVN revision: 68980
2012-03-07 15:58:40 +00:00
Sanjeev BA 51518fcc5a Fix compile issues.
Signed-off-by: Sanjeev BA <eflelev8@gmail.com>

SVN revision: 68979
2012-03-07 15:56:09 +00:00
Sanjeev BA 0b12848df2 Fix compile issues.
Signed-off-by: Sanjeev BA <eflelev8@gmail.com>

SVN revision: 68978
2012-03-07 15:56:05 +00:00
Sanjeev BA 76b8eecb6d Refactor elm_web API.
Signed-off-by: Sanjeev BA <eflelev8@gmail.com>

SVN revision: 68977
2012-03-07 15:56:01 +00:00
Sanjeev BA 4267833ed6 Add const to getters.
Signed-off-by: Sanjeev BA <eflelev8@gmail.com>

SVN revision: 68976
2012-03-07 15:55:53 +00:00
ChunEon Park 788c6dcaf4 elementary/genlist - fixed formatting
SVN revision: 68975
2012-03-07 15:45:52 +00:00
Carsten Haitzler f0e4f5ce69 ok++
SVN revision: 68974
2012-03-07 15:40:50 +00:00
Jihoon Kim 8e750cb1c1 elm_entry: replace scrolled entry with entry. Scrolled entry was deprecated.
SVN revision: 68973
2012-03-07 15:29:03 +00:00
ChunEon Park 6c0c317999 elementary/icon - replace the deprecated API.
SVN revision: 68972
2012-03-07 15:22:37 +00:00
Hyoyoung Chang abe3dd222a From: Hyoyoung Chang <hyoyoung@gmail.com>
Subject: [E-devel] [patch] elm_list - add select_mode_set and some
remove deprecated apis in examples

Like other widget (genlist, gengrid...), I add select_mode to elm_list.

+elm_list_select_mode_set(Evas_Object *obj,
Elm_Object_Select_Mode_Type mode)

+EAPI Elm_Object_Select_Mode_Type
+elm_list_select_mode_get(const Evas_Object *obj)

And I removed deprecated apis (no_select, always_select) in examples
and edje_externals.



SVN revision: 68971
2012-03-07 15:22:12 +00:00
ChunEon Park 04cca27789 elementary/gengrid - fixed formatting
SVN revision: 68970
2012-03-07 15:15:54 +00:00
Mike Blumenkrantz 9dbec68276 scale -> resizable
SVN revision: 68969
2012-03-07 15:09:09 +00:00
ChunEon Park af38b11e5a elementary - renamed elm_fonts.h to elm_font.h
SVN revision: 68968
2012-03-07 15:09:05 +00:00
Daniel Juyung Seo 9f5a98dd60 elm genlist/gengrid: Fixed hilight -> highlight.
Signed-off-by: Daniel Juyung Seo <juyung.seo@samsung.com>

SVN revision: 68967
2012-03-07 15:02:01 +00:00
Daniel Juyung Seo 7770910b78 elm genlist: Fixed enum
Signed-off-by: Daniel Juyung Seo <juyung.seo@samsung.com>

SVN revision: 68965
2012-03-07 14:48:12 +00:00
Carsten Haitzler 7a7434ed3b mark ok's
SVN revision: 68964
2012-03-07 14:47:16 +00:00
Daniel Juyung Seo 3288a6b24f elm clock: Reviewed clock.
Signed-off-by: Daniel Juyung Seo <juyung.seo@samsung.com>

SVN revision: 68962
2012-03-07 14:35:18 +00:00
Daniel Juyung Seo 6cf43b0726 elm genlist: Updated documentation.
Signed-off-by: Daniel Juyung Seo <juyung.seo@samsung.com>

SVN revision: 68961
2012-03-07 14:35:08 +00:00
myoungwoon kim 41148d0c62 From: myoungwoon kim <myoungwoon@gmail.com>
Subject: [E-devel] [Patch] Ecore, Elementary: Supporting indicator
opacity mode

This is Myoungwoon Roy Kim.

This patches are for supporting the indicator's opacity mode and made by
Jeonhoon Park(jh1979.park@samsung.com) who is responsible for Indicator
application.

Requirements:
- In mobile device, Indicator area should be displayed as Opacity,
Transparency, or sometimes Translucency according to the UX
requirements.
This requirement can be applied in case of fullscreen based menu and
fullscreen applications like video player etc.

Functional requirements:
1. User can set indicator's opacity mode as opacity, transparency, and
translucency
2. User can get the current indicator's opacity mode.

Currently there are no APIs for supporting the upper functional
requirements.

Thus, he added support for indicator's opacity mode.
It is designed for EFL developers easily to set the indicator's opacity
like the existing indicator's mode.
He added a Elm_Win_Indicator_Opacity_Mode structure variable into
Elm_Win
structure.
Meanwhile, new two APIs are implemented independently from the existing
source code.

Anybody please review this and apply it to upstream code.



SVN revision: 68959
2012-03-07 14:27:36 +00:00
ChunEon Park 21d10bb9b6 elementary/colorselector - just empty API set is added to merge with color palette.
I know you all would blame to me.

But they  will be patched soon indeed. 



SVN revision: 68957
2012-03-07 14:25:53 +00:00
Jihoon Kim 0fa91154c8 elm_entry: fix typo in elm_entry_filter_limit_size()
SVN revision: 68956
2012-03-07 14:24:24 +00:00
Tom Hacohen 7f6cd1b08a Elm label: Adjusted according to latest evas/edje changes.
SVN revision: 68953
2012-03-07 14:02:42 +00:00
Hyoyoung Chang dbdd6294c5 From: Hyoyoung Chang <hyoyoung@gmail.com>
Subject: [E-devel] [patch] elm_gengrid - add item_index_get func

I made a patch that's adding elm_gengrid_item_index_get function.

+EAPI int
+elm_gengrid_item_index_get(const Elm_Object_Item *it)

It works like elm_genlist_item_index_get()




SVN revision: 68951
2012-03-07 13:58:30 +00:00
cnook 99d2eeb9f1 From: cnook <kimcinoo@gmail.com>
Subject: [E-devel] [Patch][elementary_test] test_icon

I have attached a patch for test_icon. please review the patch and
give any feedbacks. Thanks.



SVN revision: 68950
2012-03-07 13:52:47 +00:00
cnook 6477874b2f From: cnook <kimcinoo@gmail.com>
Subject: [E-devel] [Patch][elementary_test] test_label

I have attached a patch for test_label. Please review the patch and
give any feedbacks. Thanks.



SVN revision: 68949
2012-03-07 13:50:37 +00:00
Hyoyoung Chang 2df31b2926 From: Hyoyoung Chang <hyoyoung@gmail.com>
Subject: [E-devel] [patch] gengrid - Some missing APIs is added

After api reivew, some api is missed in gengrid.
So I add this apis to gengrid.

patch file - 0001
+EAPI Eina_List
*elm_gengrid_realized_items_get(const Evas_Object *obj);
+EAPI void
elm_gengrid_realized_items_update(Evas_Object *obj);

patch file - 0002
+EAPI void
elm_gengrid_scroller_policy_set(Evas_Object *obj, Elm_Scroller_Policy
policy_h, Elm_Scroller_Policy policy_v);
+EAPI void
elm_gengrid_scroller_policy_get(const Evas_Object *obj,
Elm_Scroller_Policy *policy_h, Elm_Scroller_Policy *policy_v);

patch file - 0003
+EAPI unsigned int elm_gengrid_items_count(const Evas_Object *obj);



SVN revision: 68948
2012-03-07 13:46:35 +00:00
Hyoyoung Chang 248f878f0d From: Hyoyoung Chang <hyoyoung@gmail.com>
Subject: [E-devel] [patch] elm_gen{list, grid} - add
no_highlight_mode_set/get

actually change it to hilight_mode/set/get with the inverse.



SVN revision: 68947
2012-03-07 13:37:18 +00:00
Vincent Torri 426c925717 make elm compile on Windows
SVN revision: 68946
2012-03-07 13:27:06 +00:00
Hyoyoung Chang e479d536d6 From: Hyoyoung Chang <hyoyoung@gmail.com>
Subject: [E-devel] [patch] elm_toolbar - add elm_toolbar_select_mode_set

As already sent genlist select_mode_set patch,
I applied same apis to elm_toolbar.

+EAPI void
+elm_toolbar_select_mode_set(Evas_Object *obj,
Elm_Object_Select_Mode_Type mode)


+EAPI Elm_Object_Select_Mode_Type
+elm_toolbar_select_mode_get(const Evas_Object *obj)



SVN revision: 68945
2012-03-07 13:23:22 +00:00
Sanjeev BA 0e50d5d966 Add top,middle bring_in and show support to gengrid. Implementation to be done later.
Signed-off-by: Sanjeev BA <eflelev8@gmail.com>

SVN revision: 68943
2012-03-07 12:57:17 +00:00
Sanjeev BA 8cc2af2d7c Renaming ITEMS_SUBITEMS to ITEMS_TREE.
Signed-off-by: Sanjeev BA <eflelev8@gmail.com>

SVN revision: 68942
2012-03-07 12:57:13 +00:00
Sanjeev BA a311a4cc7d Add some more documentation.
Signed-off-by: Sanjeev BA <eflelev8@gmail.com>

SVN revision: 68941
2012-03-07 12:57:06 +00:00
Sanjeev BA 18c952dcd1 Mention how to delete added items.
Signed-off-by: Sanjeev BA <eflelev8@gmail.com>

SVN revision: 68940
2012-03-07 12:57:00 +00:00
Daniel Juyung Seo 545e4da563 elm elm_deprecated.h: No groups for deprecated APIs.
Signed-off-by: Daniel Juyung Seo <juyung.seo@samsung.com>

SVN revision: 68939
2012-03-07 12:50:43 +00:00
Carsten Haitzler 660e160726 better not have an else... :)
SVN revision: 68938
2012-03-07 12:46:22 +00:00
Hyoyoung Chang d1ab1c10e3 From: Hyoyoung Chang <hyoyoung@gmail.com>
Subject: [E-devel] [patch] elm_gen{list, grid} - add elm_genlist_select_mode_set

As discussed in irc, I made a patch about unifying
always_select_mode_set and no_select_mode_set.

I'm introducing two apis in genlist (also in gengrid)

+EAPI void
+elm_genlist_select_mode_set(Evas_Object *obj,
Elm_Object_Select_Mode_Type mode)

+EAPI Elm_Object_Select_Mode_Type
+elm_genlist_select_mode_get(const Evas_Object *obj);

And added a enum in elm_general.h


+typedef enum
+{
+   ELM_OBJECT_NORMAL_SELECT = 0, /**< default select mode */
+   ELM_OBJECT_ALWAYS_SELECT, /**< always select mode */
+   ELM_OBJECT_NO_SELECT, /**< no select mode */
+
+   ELM_OBJECT_SELECT_MODE_MAX
+} Elm_Object_Select_Mode_Type;

After this is commited, i'll send a patch about examples and
edje_external.




SVN revision: 68937
2012-03-07 12:43:19 +00:00