framework/uifw/elementary.git
12 years agooops return the focus order no matter what
raster [Tue, 21 Feb 2012 10:55:30 +0000 (10:55 +0000)]
oops return the focus order no matter what

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@68212 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

12 years agouse focus order to determine if window never focused before instead of
raster [Tue, 21 Feb 2012 10:54:46 +0000 (10:54 +0000)]
use focus order to determine if window never focused before instead of
show count. fixes focus problems in elm tests for entries

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@68211 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

12 years agoFrom: Bluezery <ohpowel@gmail.com>
raster [Tue, 21 Feb 2012 08:01:22 +0000 (08:01 +0000)]
From: Bluezery <ohpowel@gmail.com>
Subject: [E-devel] [Patch][elm_map] Refactoring Elementary Map

I have done refactoring & code clean-up in elm_map.  Event if this
patch have much changes, refactoring & code clean-up jobs almost
always do.
Anyway, code is shortened and optimized I think.
 I have done following jobs in my patch.

 (1) Always change child size
 Scroller Child size is changed when integer zoom level is changed
 before. This makes bugs which mouse pointer is not correct on the map
 when map is dragging.
 Now, scroller child size is always changed when double zoom level is
changed.

(2) Evas map
Evas map is used for rotation & zooming before. But now it is used for
only rotation. evas_object_resize() can do zooming because (1) makes
child size always changed.

(3) Grid & Marker & Route, etc.
Because of (1), all coordinate calculations are all changed. So grid &
marker & route should be changed.
When I have fixed these, I have these split into small function
(create, free, update, place, etc.)
So these can be easily reused for other purpose ( I will add overlay
later.)
Also marker size is not changed and is not rotated anymore because
marker's coordinate is just rotated and evas_map is not used for
marker.

And grouping algorithm is somewhat changed. Each marker can be group
leader and if other markers (followers) are closed to leader, markers
are grouped.

Actually _marker_place() function do almost everything. (place marker,
bubble, group & make group, etc.)

Bubbles go along with parent object. (show, hide, move) and this is
created when marker & group are opened.
At now, bubble display bugs are all fixed.

As before, grid is created when elm_map_add() or tile source is
changed. And I add _grid_item_* functions for each 256x256 tile
management.  So grid_place() function can be simple now.

(4) Download idler
Before download is not a job or idler and is integrated with grid
calculation.
I have separated this into independent idler. So now, download idler
do download jobs when idler time.

(5) Zoom
I have made one zoom_do() function.  This does all zoom jobs. At now,
pinch_zoom & wheel_zoom & animated zoom do not much jobs. just call
zoom_do().

(6) Delayed jobs
As I know, evas is based on a retained mode and calculation can be do
later. So sometimes elm_map APIs can not  do the jobs correctly.
For example, elm_map_marker_list_show() or elm_map_zoom_set() can not
be used right after elm_map_add()  because window size and pan size
can be 0.   (refer map_example_02.c)
So when APIs related such calculation are called. These are deferred
and calculated later when _pan_calculate() is called.

5) Code clean-up
I have removed unused variables & functions.  and rearranged struct &
functions & declaration & static variables, etc.
Instead of "if (!wd) return; ", I changed this by macro,
"EINA_SAFETY_ON_NULL_RETURN(wd);". This is better for function
entrance check. Also ELM_NEW is used instead of calloc or malloc.

Aboves are all related each other. So it can be hard to split this
file. If these should be splitted, I'm going to freak ;D.
This patch does no harm!!!! :D.
 After this patch, I will add overlay APIs based on this patch.  I
 doubt whether I will add this before elementary 1.0 release.  :(

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@68207 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

12 years agoaah we'll take bluz' patch then instead of my fixing
raster [Tue, 21 Feb 2012 07:59:19 +0000 (07:59 +0000)]
aah we'll take bluz' patch then instead of my fixing

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@68206 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

12 years agoelm test_box.c: Added more test sample. Patch by Shinwoo Kim
seoz [Tue, 21 Feb 2012 07:06:39 +0000 (07:06 +0000)]
elm test_box.c: Added more test sample. Patch by Shinwoo Kim
<kimcinoo@gmail.com>

On Thu, Feb 16, 2012 at 10:20 AM, cnook <kimcinoo@gmail.com> wrote:
> Dear All, Hello~
>
> As you guess, the patch is for the elementary_test.
> Please review the patch and give any feedbacks.
>
> The test_actionslider patch is mainly for elm_actionslider_xxx_get()
APIs.
> It would not be a good idea to add test code for such APIs.
> So I have planed to add test code except elm_xxx_get() APIs
>
> Sincerely,
> Shinwoo Kim.

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@68205 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

12 years agomake API naming consistent for elm_video API.
sanjeev [Tue, 21 Feb 2012 06:12:51 +0000 (06:12 +0000)]
make API naming consistent for elm_video API.

Signed-off-by: Sanjeev BA <eflelev8@gmail.com>
git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@68202 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

12 years agoDeprecate elm_video_uri_set().
sanjeev [Tue, 21 Feb 2012 05:52:55 +0000 (05:52 +0000)]
Deprecate elm_video_uri_set().

Signed-off-by: Sanjeev BA <eflelev8@gmail.com>
git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@68200 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

12 years agoelementary/grid - reviewed done.
hermet [Tue, 21 Feb 2012 04:42:45 +0000 (04:42 +0000)]
elementary/grid - reviewed done.

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@68199 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

12 years agoelementary/grid - more API elm_grid_chidren_get
hermet [Tue, 21 Feb 2012 04:39:15 +0000 (04:39 +0000)]
elementary/grid - more API elm_grid_chidren_get

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@68198 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

12 years agofix some naming in elm_map as i suggested before.
raster [Tue, 21 Feb 2012 03:40:52 +0000 (03:40 +0000)]
fix some naming in elm_map as i suggested before.

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@68195 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

12 years agoaaand other part of bluez map commit. easier to fix formatting in svn.
raster [Tue, 21 Feb 2012 03:26:00 +0000 (03:26 +0000)]
aaand other part of bluez map commit. easier to fix formatting in svn.

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@68194 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

12 years agoand other part of bluez map commit
raster [Tue, 21 Feb 2012 03:25:24 +0000 (03:25 +0000)]
and other part of bluez map commit

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@68193 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

12 years agohmmm i missed the other part of bluez map commit. here it is.
raster [Tue, 21 Feb 2012 03:24:59 +0000 (03:24 +0000)]
hmmm i missed the other part of bluez map commit. here it is.

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@68192 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

12 years agoRemove deprecated API.
sanjeev [Tue, 21 Feb 2012 03:15:04 +0000 (03:15 +0000)]
Remove deprecated API.

Signed-off-by: Sanjeev BA <eflelev8@gmail.com>
git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@68190 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

12 years agoelementary/grid - reviewed APIs
hermet [Tue, 21 Feb 2012 02:57:51 +0000 (02:57 +0000)]
elementary/grid - reviewed APIs

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@68187 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

12 years agoelm: Removed deprecated elm_pager from edje_externals.
seoz [Tue, 21 Feb 2012 02:57:33 +0000 (02:57 +0000)]
elm: Removed deprecated elm_pager from edje_externals.

Signed-off-by: Daniel Juyung Seo <juyung.seo@samsung.com>
git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@68186 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

12 years agoelm cache: Reviewed cache APIs.
seoz [Tue, 21 Feb 2012 02:34:57 +0000 (02:34 +0000)]
elm cache: Reviewed cache APIs.

Signed-off-by: Daniel Juyung Seo <juyung.seo@samsung.com>
git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@68183 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

12 years agoelementary/font - reviewed my reviewed code... ;-)
hermet [Tue, 21 Feb 2012 01:53:40 +0000 (01:53 +0000)]
elementary/font - reviewed my reviewed code... ;-)

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@68181 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

12 years agoelementary/fonts - reviewed done.
hermet [Tue, 21 Feb 2012 01:39:52 +0000 (01:39 +0000)]
elementary/fonts - reviewed done.

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@68180 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

12 years ago[edje] Change APIs name from from
woohyun [Tue, 21 Feb 2012 00:40:55 +0000 (00:40 +0000)]
[edje] Change APIs name from from
edje_object_markup_filter_callback_{add,del,del_full} to
edje_object_text_markup_filter_callback_{add,del,del_full}.

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@68179 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

12 years agoelm elm_panes.c: Added EINA_DEPRECATED marks for deprecated APIs. This is useful...
seoz [Tue, 21 Feb 2012 00:33:38 +0000 (00:33 +0000)]
elm elm_panes.c: Added EINA_DEPRECATED marks for deprecated APIs. This is useful to mark deprecated APIs.

Signed-off-by: Daniel Juyung Seo <juyung.seo@samsung.com>
git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@68178 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

12 years agoelm elm_panes.h: Updated documentation.
seoz [Tue, 21 Feb 2012 00:33:36 +0000 (00:33 +0000)]
elm elm_panes.h: Updated documentation.

Signed-off-by: Daniel Juyung Seo <juyung.seo@samsung.com>
git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@68177 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

12 years agoelm: fill in some parameter description in doxygen
jihoon [Mon, 20 Feb 2012 22:55:40 +0000 (22:55 +0000)]
elm: fill in some parameter description in doxygen

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@68173 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

12 years agoelementary/frame - trivial changes.
hermet [Mon, 20 Feb 2012 13:06:18 +0000 (13:06 +0000)]
elementary/frame - trivial changes.

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@68162 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

12 years agoelementary/frame - api review updated.
hermet [Mon, 20 Feb 2012 12:56:26 +0000 (12:56 +0000)]
elementary/frame - api review updated.

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@68161 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

12 years agoelementary/frame - reviewd.
hermet [Mon, 20 Feb 2012 12:54:14 +0000 (12:54 +0000)]
elementary/frame - reviewd.

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@68160 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

12 years agoElm fileselector: fixed elm_fileselector_is_save_get function
tasn [Mon, 20 Feb 2012 12:53:12 +0000 (12:53 +0000)]
Elm fileselector: fixed elm_fileselector_is_save_get function

Return value was fixed

Signed-off-by: Yakov Goldberg <yakov.g@samsung.com>
git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@68159 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

12 years agofix up some missing checks.
raster [Mon, 20 Feb 2012 12:23:46 +0000 (12:23 +0000)]
fix up some missing checks.

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@68158 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

12 years agomissing EAPI
raster [Mon, 20 Feb 2012 12:17:45 +0000 (12:17 +0000)]
missing EAPI

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@68157 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

12 years agomake sure to pass const to these funcs when getting.
raster [Mon, 20 Feb 2012 12:13:08 +0000 (12:13 +0000)]
make sure to pass const to these funcs when getting.

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@68156 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

12 years agoelementary/flipselector - + disable/enable func
hermet [Mon, 20 Feb 2012 12:04:29 +0000 (12:04 +0000)]
elementary/flipselector - + disable/enable func

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@68155 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

12 years agoFrom: cnook <kimcinoo@gmail.com>
raster [Mon, 20 Feb 2012 11:48:31 +0000 (11:48 +0000)]
From: cnook <kimcinoo@gmail.com>
Subject: [E-devel] [Patch][elm_win] elm_win_title_set(); can make a
crash with NULL

Have ever try to call elm_win_title_set(win, NULL)? Then try... :-] It
makes "Segmentation Fault".
Yeah, we can add patch in the Ecore side, but we can prevent the
segmentation fault before go inside.
Please check the patch and give any feedbacks. Thanks a lot.

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@68154 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

12 years agoFrom: cnook <kimcinoo@gmail.com>
raster [Mon, 20 Feb 2012 11:47:17 +0000 (11:47 +0000)]
From: cnook <kimcinoo@gmail.com>
Subject: [E-devel] [Patch][elementary_test] test_cnp

The attachment is a patch to enhance the test_cnp in elementary_test.
You can check how to use elm_cnp_selection_clear() through the patch.

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@68153 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

12 years agoelementary/flipselector - cleanup code
hermet [Mon, 20 Feb 2012 11:42:49 +0000 (11:42 +0000)]
elementary/flipselector - cleanup code

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@68152 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

12 years agoFrom: cnook <kimcinoo@gmail.com>
raster [Mon, 20 Feb 2012 10:45:06 +0000 (10:45 +0000)]
From: cnook <kimcinoo@gmail.com>
To: EFL <enlightenment-devel@lists.sourceforge.net>

I have attached patch for elementary_test as following.

  - test_check: using elm_check_state_pointer_set();
  - test_clock: using elm_clock_interval_set();

Please review this. Thanks always.

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@68151 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

12 years agoElm glayer: Fixed wrong usage of intptr_t.
tasn [Mon, 20 Feb 2012 09:23:19 +0000 (09:23 +0000)]
Elm glayer: Fixed wrong usage of intptr_t.

Spank Spank.

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@68150 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

12 years agoElm fileselector: Fixed initial paths for fileselector
tasn [Mon, 20 Feb 2012 09:22:23 +0000 (09:22 +0000)]
Elm fileselector: Fixed initial paths for fileselector

Path parameter for elm_fileselector_selected_set() and
elm_fileselector_path_set() parsed as realpath.

Signed-off-by: Yakov Goldberg <yakov.g@samsung.com>
git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@68149 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

12 years agoFrom: Hyoyoung Chang <hyoyoung@gmail.com>
raster [Mon, 20 Feb 2012 08:26:17 +0000 (08:26 +0000)]
From: Hyoyoung Chang <hyoyoung@gmail.com>
Subject: [E-devel] [patch] elm_genlist - add item_class management
functions

I make controversial apis for item class management.
As raster and other guys suggest, I simplify APIs and its behaviors.

First, Two public apis and two internal apis are introduced

+EAPI Elm_Genlist_Item_Class *
+elm_genlist_item_class_new(void)

+EAPI void
+elm_genlist_item_class_free(Elm_Genlist_Item_Class *itc)

+void
+_elm_genlist_item_class_ref(Elm_Genlist_Item_Class *itc)

+void
+_elm_genlist_item_class_unref(Elm_Genlist_Item_Class *itc)

genlist item class is maintained by genlist in automatic manner.

And three fields are introduced in genlist item class.
+   int version;
+   unsigned int refcount;
+   Eina_Bool delete_me;

Normally a user add a elm_genlist_item_class by
elm_genlist_item_class_new().
Then its reference counter is automatic maintained.
If the user wanna to remove the elm_genlist_item_class, then call
elm_genlist_item_class_free()
After refcount reaches to 0, it will be removed.

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@68147 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

12 years agowhy did someone add 2 indentically named funcs?
raster [Mon, 20 Feb 2012 08:24:41 +0000 (08:24 +0000)]
why did someone add 2 indentically named funcs?

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@68146 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

12 years agoAdd documentation to elm_video.h. API renaming to be done.
sanjeev [Mon, 20 Feb 2012 04:55:46 +0000 (04:55 +0000)]
Add documentation to elm_video.h. API renaming to be done.

Signed-off-by: Sanjeev BA <iamsanjeev@gmail.com>
git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@68141 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

12 years agoFix typos.
sanjeev [Mon, 20 Feb 2012 04:18:50 +0000 (04:18 +0000)]
Fix typos.

Signed-off-by: Sanjeev BA <iamsanjeev@gmail.com>
git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@68138 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

12 years agoelm/index.doxy: remove Pager reference
jihoon [Sun, 19 Feb 2012 14:11:33 +0000 (14:11 +0000)]
elm/index.doxy: remove Pager reference

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@68123 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

12 years agoelementary: fix some doxygen argument warning
jihoon [Sat, 18 Feb 2012 15:56:00 +0000 (15:56 +0000)]
elementary: fix some doxygen argument warning

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@68113 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

12 years agoelementary: fix some doxygen warnings
jihoon [Sat, 18 Feb 2012 15:40:39 +0000 (15:40 +0000)]
elementary: fix some doxygen warnings

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@68112 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

12 years agoelementary/naviframe - elm_widget_item_free is called twice.
hermet [Sat, 18 Feb 2012 05:15:17 +0000 (05:15 +0000)]
elementary/naviframe - elm_widget_item_free is called twice.
elm_object_item_del is calling it after.

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@68099 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

12 years agoBetter description for group WidgetNavigation.
gastal [Fri, 17 Feb 2012 17:29:26 +0000 (17:29 +0000)]
Better description for group WidgetNavigation.

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@68079 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

12 years agoBetter to have no documentation than to have wrong documentation.
gastal [Fri, 17 Feb 2012 17:29:24 +0000 (17:29 +0000)]
Better to have no documentation than to have wrong documentation.

The linked to page contained no example of any of the functions in this
group.

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@68078 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

12 years agoelm/entry: fix doxygen
jihoon [Fri, 17 Feb 2012 15:28:37 +0000 (15:28 +0000)]
elm/entry: fix doxygen

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@68075 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

12 years agoelm/entry: describe more detail on some enums
jihoon [Fri, 17 Feb 2012 14:28:13 +0000 (14:28 +0000)]
elm/entry: describe more detail on some enums

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@68074 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

12 years agoelm: delete executable file permission in some files
jihoon [Fri, 17 Feb 2012 13:38:10 +0000 (13:38 +0000)]
elm: delete executable file permission in some files

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@68073 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

12 years agoelementary/flipselector - reviewed APIs
hermet [Fri, 17 Feb 2012 12:40:48 +0000 (12:40 +0000)]
elementary/flipselector - reviewed APIs

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@68070 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

12 years agoelementary - updated review.
hermet [Fri, 17 Feb 2012 11:31:31 +0000 (11:31 +0000)]
elementary - updated review.

Actually i coundn't review anything today.

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@68069 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

12 years agoelementary : reviewd elm_mirroring.h
woohyun [Fri, 17 Feb 2012 11:26:40 +0000 (11:26 +0000)]
elementary : reviewd elm_mirroring.h

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@68068 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

12 years agoelm video review comments.
raster [Fri, 17 Feb 2012 11:05:17 +0000 (11:05 +0000)]
elm video review comments.

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@68066 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

12 years agoremove deprecated function.
jypark [Fri, 17 Feb 2012 10:20:35 +0000 (10:20 +0000)]
remove deprecated function.
use elm genlist or elm gengrid instead of elm_gen

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@68063 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

12 years agoelementary: fix typo.
cedric [Fri, 17 Feb 2012 10:11:22 +0000 (10:11 +0000)]
elementary: fix typo.

I am the only one who build everything every morning ?

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@68062 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

12 years agoReviewed elm_map.h.
woohyun [Fri, 17 Feb 2012 08:15:09 +0000 (08:15 +0000)]
Reviewed elm_map.h.

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@68058 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

12 years agoelm test_actionslider.c: Cover more APIs. Patch by Shinwoo Kim
seoz [Fri, 17 Feb 2012 05:28:55 +0000 (05:28 +0000)]
elm test_actionslider.c: Cover more APIs. Patch by Shinwoo Kim
<kimcinoo@gmail.com>

On Thu, Feb 16, 2012 at 10:20 AM, cnook <kimcinoo@gmail.com> wrote:
Dear All, Hello~

As you guess, the patch is for the elementary_test.
Please review the patch and give any feedbacks.

The test_actionslider patch is mainly for elm_actionslider_xxx_get()
APIs.
It would not be a good idea to add test code for such APIs.
So I have planed to add test code except elm_xxx_get() APIs

Sincerely,
Shinwoo Kim.

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@68054 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

12 years agoelm cache: elm_all_flush() -> elm_cache_all_flush()
seoz [Fri, 17 Feb 2012 05:12:56 +0000 (05:12 +0000)]
elm cache: elm_all_flush() -> elm_cache_all_flush()

Signed-off-by: Daniel Juyung Seo <juyung.seo@samsung.com>
git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@68051 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

12 years agoelementary/naviframe - updated doc & more contents & text hooks
hermet [Fri, 17 Feb 2012 05:00:22 +0000 (05:00 +0000)]
elementary/naviframe - updated doc & more contents & text hooks

discomfitor you bothered me! :)

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@68050 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

12 years agoelementary/transit - updated doc
hermet [Fri, 17 Feb 2012 04:57:08 +0000 (04:57 +0000)]
elementary/transit - updated doc

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@68049 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

12 years agoRemove deprecated function and implementation.
jypark [Fri, 17 Feb 2012 03:10:28 +0000 (03:10 +0000)]
Remove deprecated function and implementation.
I already grep all source directory under turnk.
but there is no place using this deprecated function.
so I remove it.

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@68048 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

12 years agoelementary/naviframe - more simply.
hermet [Fri, 17 Feb 2012 01:44:02 +0000 (01:44 +0000)]
elementary/naviframe - more simply.

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@68047 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

12 years agoport aspect_fixed from image to icon
discomfitor [Thu, 16 Feb 2012 22:48:32 +0000 (22:48 +0000)]
port aspect_fixed from image to icon
remind me again: why do we have more than one image api here??????????

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@68045 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

12 years agos/elm_text_input/elm_entry_input
discomfitor [Thu, 16 Feb 2012 22:42:48 +0000 (22:42 +0000)]
s/elm_text_input/elm_entry_input

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@68044 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

12 years agovoid function returning a void function confuses my small american brain
discomfitor [Thu, 16 Feb 2012 22:41:52 +0000 (22:41 +0000)]
void function returning a void function confuses my small american brain

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@68043 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

12 years agoElm naviframe: Make elm_naviframe_item_simple_push an inline function.
tasn [Thu, 16 Feb 2012 21:20:45 +0000 (21:20 +0000)]
Elm naviframe: Make elm_naviframe_item_simple_push an inline function.

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@68038 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

12 years agonaviframe now supports content_get
discomfitor [Thu, 16 Feb 2012 21:14:32 +0000 (21:14 +0000)]
naviframe now supports content_get

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@68037 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

12 years agofix noop in naviframe simple_push macro
discomfitor [Thu, 16 Feb 2012 21:00:48 +0000 (21:00 +0000)]
fix noop in naviframe simple_push macro

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@68036 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

12 years agoSmall bump to elm_table doc.
gastal [Thu, 16 Feb 2012 18:38:37 +0000 (18:38 +0000)]
Small bump to elm_table doc.

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@68030 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

12 years agoelementary_test: 0 -> EINA_FASE, 1 -> EINA_TRUE
jihoon [Thu, 16 Feb 2012 12:51:01 +0000 (12:51 +0000)]
elementary_test: 0 -> EINA_FASE, 1 -> EINA_TRUE

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@68028 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

12 years agoAdd EINA_DEPRECATED ~ thx to Seoz
woohyun [Thu, 16 Feb 2012 12:20:02 +0000 (12:20 +0000)]
Add EINA_DEPRECATED ~ thx to Seoz

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@68026 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

12 years agoteansit - done. used ecore-pos-mapper for interpolation. should be
raster [Thu, 16 Feb 2012 12:09:32 +0000 (12:09 +0000)]
teansit - done. used ecore-pos-mapper for interpolation. should be
extended eventually. :)

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@68025 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

12 years agoReviewed elm_label's API and documentation
woohyun [Thu, 16 Feb 2012 11:39:07 +0000 (11:39 +0000)]
Reviewed elm_label's API and documentation

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@68024 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

12 years agoelementary/flip - more *INTERACTON*
hermet [Thu, 16 Feb 2012 11:37:54 +0000 (11:37 +0000)]
elementary/flip - more *INTERACTON*

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@68023 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

12 years agoelementary/flip - fixed typo
hermet [Thu, 16 Feb 2012 11:33:45 +0000 (11:33 +0000)]
elementary/flip - fixed typo

first time, i was super confused since vim cound't find the API even I can see it at there.

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@68022 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

12 years agoelm button: Reviewed APIs.
seoz [Thu, 16 Feb 2012 11:11:25 +0000 (11:11 +0000)]
elm button: Reviewed APIs.

Signed-off-by: Daniel Juyung Seo <juyung.seo@samsung.com>
git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@68021 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

12 years agoelementary/flip - trivial changes
hermet [Thu, 16 Feb 2012 10:49:40 +0000 (10:49 +0000)]
elementary/flip - trivial changes

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@68020 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

12 years agofix infinite loop here
discomfitor [Thu, 16 Feb 2012 09:57:37 +0000 (09:57 +0000)]
fix infinite loop here

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@68019 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

12 years agoalso cnp file...
discomfitor [Thu, 16 Feb 2012 09:54:41 +0000 (09:54 +0000)]
also cnp file...

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@68018 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

12 years agoremove pager references from here too
discomfitor [Thu, 16 Feb 2012 09:52:52 +0000 (09:52 +0000)]
remove pager references from here too

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@68017 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

12 years agoElm pager: remove all references from elm's tree.
tasn [Thu, 16 Feb 2012 09:26:35 +0000 (09:26 +0000)]
Elm pager: remove all references from elm's tree.

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@68016 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

12 years agoElm pager: die pager, die! Use naviframe instead.
tasn [Thu, 16 Feb 2012 09:26:30 +0000 (09:26 +0000)]
Elm pager: die pager, die! Use naviframe instead.

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@68015 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

12 years agoDocumentation fixes and more API feedback.
sanjeev [Thu, 16 Feb 2012 08:28:36 +0000 (08:28 +0000)]
Documentation fixes and more API feedback.

Signed-off-by: Sanjeev BA <iamsanjeev@gmail.com>
git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@68014 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

12 years agoDocumentation fixes for elm_plug.
sanjeev [Thu, 16 Feb 2012 08:28:33 +0000 (08:28 +0000)]
Documentation fixes for elm_plug.

Signed-off-by: Sanjeev BA <iamsanjeev@gmail.com>
git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@68013 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

12 years agoDocumentation fixes for elm_photo.
sanjeev [Thu, 16 Feb 2012 08:28:22 +0000 (08:28 +0000)]
Documentation fixes for elm_photo.

Signed-off-by: Sanjeev BA <iamsanjeev@gmail.com>
git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@68012 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

12 years agoelementary/flip - elm_flip_front_get -> elm_flip_front_visible_get
hermet [Thu, 16 Feb 2012 08:08:16 +0000 (08:08 +0000)]
elementary/flip - elm_flip_front_get -> elm_flip_front_visible_get

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@68011 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

12 years agoelm: Fix fix fix.
seoz [Thu, 16 Feb 2012 07:41:34 +0000 (07:41 +0000)]
elm: Fix fix fix.

Signed-off-by: Daniel Juyung Seo <juyung.seo@samsung.com>
git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@68010 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

12 years agoelementary/flip - deprecated APIs
hermet [Thu, 16 Feb 2012 07:31:55 +0000 (07:31 +0000)]
elementary/flip - deprecated APIs

elm_flip_content_front_set
elm_flip_content_back_set
elm_flip_content_front_unset
elm_flip_content_back_unset
elm_flip_content_front_get
elm_flip_content_back_get

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@68009 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

12 years agoelm cnp: Renamed elm_cnp_helper.c to elm_cnp.c for consistency.
seoz [Thu, 16 Feb 2012 07:10:50 +0000 (07:10 +0000)]
elm cnp: Renamed elm_cnp_helper.c to elm_cnp.c for consistency.

Signed-off-by: Daniel Juyung Seo <juyung.seo@samsung.com>
git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@68008 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

12 years agoelm cnp: Reviewed cnp APIs. Many things need to be changed.
seoz [Thu, 16 Feb 2012 07:06:13 +0000 (07:06 +0000)]
elm cnp: Reviewed cnp APIs. Many things need to be changed.

Signed-off-by: Daniel Juyung Seo <juyung.seo@samsung.com>
git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@68007 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

12 years agoelm: Updated po
seoz [Thu, 16 Feb 2012 07:06:09 +0000 (07:06 +0000)]
elm: Updated po

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@68006 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

12 years agoReviewed elm_index's APIs and documentations. So many things to be
woohyun [Thu, 16 Feb 2012 06:38:46 +0000 (06:38 +0000)]
Reviewed elm_index's APIs and documentations. So many things to be
modified :(

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@68004 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

12 years agook - for thumb and theme.
raster [Thu, 16 Feb 2012 05:58:47 +0000 (05:58 +0000)]
ok - for thumb and theme.

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@68002 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

12 years agoelm_thumb_ethumb_client_connected ->
raster [Thu, 16 Feb 2012 05:58:23 +0000 (05:58 +0000)]
elm_thumb_ethumb_client_connected ->
elm_thumb_ethumb_client_connected_get()

more consistent name.

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@68001 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

12 years agoelementary_test: fix formatting
jihoon [Thu, 16 Feb 2012 05:03:57 +0000 (05:03 +0000)]
elementary_test: fix formatting

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@68000 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

12 years agoelementary_test: change 0 -> EINA_FALSE, 1 -> EINA_TRUE
jihoon [Thu, 16 Feb 2012 04:55:08 +0000 (04:55 +0000)]
elementary_test: change 0 -> EINA_FALSE, 1 -> EINA_TRUE

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@67999 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

12 years agoreview - store needs docs. table ok.
raster [Thu, 16 Feb 2012 04:55:00 +0000 (04:55 +0000)]
review - store needs docs. table ok.

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@67998 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

12 years agoadd test for padding in table
raster [Thu, 16 Feb 2012 04:54:12 +0000 (04:54 +0000)]
add test for padding in table

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@67997 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

12 years agoelm test_box.c: Used elm_bg_load_size_set. Patch by cnook
seoz [Thu, 16 Feb 2012 02:28:33 +0000 (02:28 +0000)]
elm test_box.c: Used elm_bg_load_size_set. Patch by cnook
<kimcinoo@gmail.com>

On Thu, Feb 16, 2012 at 10:20 AM, cnook <kimcinoo@gmail.com> wrote:
Dear All, Hello~

As you guess, the patch is for the elementary_test.
Please review the patch and give any feedbacks.

The test_actionslider patch is mainly for elm_actionslider_xxx_get()
APIs.
It would not be a good idea to add test code for such APIs.
So I have planed to add test code except elm_xxx_get() APIs

Sincerely,
Shinwoo Kim.

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@67996 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33