cedric [Mon, 2 May 2011 10:20:25 +0000 (10:20 +0000)]
elementary: make elm_thumb never lock your app.
git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@59113
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
cedric [Mon, 2 May 2011 10:16:18 +0000 (10:16 +0000)]
elementary: don't trigger eina warning with empty hash.
git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@59111
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
cedric [Mon, 2 May 2011 10:11:38 +0000 (10:11 +0000)]
elementary: fix segv when exiting elementary_config.
git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@59110
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
raster [Mon, 2 May 2011 09:22:50 +0000 (09:22 +0000)]
From: Jaehwan Kim <jae.hwan.kim@samsung.com>
Subject: [E-devel] [Patch] els_scroller bug patch.
I and Seoz found some problem about
_elm_smart_scroller_wanted_region_set in els_scroller.
While genlist items are appended, momentum animation in scroller
cannot operate.
It's why _elm_smart_Scroller_wanted_region_set is called continually.
It's the problem which Seoz told you. and I fixed this problem.
Please check the attached patch file.
If you want to check the problem.
Set the "Thumb scroll friction" in elementary_config to 2~3.
Change the file "test_genlist.c" in elementary/src/bin like below.
git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@59105
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
hermet [Mon, 2 May 2011 01:20:11 +0000 (01:20 +0000)]
elementry/box - 0 -> EINA_FALSE
git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@59091
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
tasn [Sun, 1 May 2011 09:40:30 +0000 (09:40 +0000)]
Elementary els_scroller: Merge region_show and region_bring_in codes.
They are 99.99% the same, no reason why not to merge them.
git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@59077
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
tasn [Sun, 1 May 2011 09:40:28 +0000 (09:40 +0000)]
Elementary els_scroller: Fixed not moving when position is shown.
The scroller shouldn't move when the position requested is already
shown. There were two problems:
1. It was assumed that the cw/ch == requsted w/h which is not true, for
example with entry, we sometimes request to show the cursor which way
smaller.
2. We want to check the bounds *after* making sure we are not showing
"dead space" i.e places that the child does not populate.
git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@59076
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
tasn [Sun, 1 May 2011 09:40:19 +0000 (09:40 +0000)]
Elementary entry: Fix hint_min setting to work with scroller.
git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@59075
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
hermet [Sun, 1 May 2011 07:49:24 +0000 (07:49 +0000)]
elementary / transit - added one exception handling.
git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@59074
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
seoz [Fri, 29 Apr 2011 12:40:47 +0000 (12:40 +0000)]
Elementary thumb: Fixed warnings.
git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@59037
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
seoz [Fri, 29 Apr 2011 12:37:31 +0000 (12:37 +0000)]
Elementary map: Fixed warning.
git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@59036
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
seoz [Fri, 29 Apr 2011 12:33:36 +0000 (12:33 +0000)]
Elementary layout: Removed 'const' from elm_layout_content_get() API.
This API callers can handle layout content. ex)
evas_object_del(content);
git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@59035
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
seoz [Fri, 29 Apr 2011 10:50:55 +0000 (10:50 +0000)]
Elementary gengrid: Fixed bug. Patch by Jeonghyun Yun
<hj0506.yun@smasung.com>
From Jeonghyun Yun.
Hello.
I attached the patch file for calc_job bug.
I found ecore_magic_fail problem when ecore_job_del(wd->calc_job).
wd->calc_job should also to be NULL when pan_smart's cvw and cvh is 0 in
calc_job().
Please check about this patch.
Thanks.
git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@59034
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
seoz [Fri, 29 Apr 2011 09:04:48 +0000 (09:04 +0000)]
Elementary table: Fixed wrong API name. Patch by Lionel Orry
<lionel.orry@gmail.com>
From Lionel Orry:
Hi devs,
while working on the ffi-efl Ruby bindings for the EFL, I noticed a
wrong declaration in Elementary.h:
s/elm_table_homogeneous_get/elm_table_homogenous_get/.
The patch can be found here: http://pastie.org/1846490
To apply:
cd <path/to/elementary>
wget -O - http://pastie.org/pastes/1846490/download | patch -p0
Thanks in advance,
Lionel
git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@59033
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
tasn [Thu, 28 Apr 2011 17:50:26 +0000 (17:50 +0000)]
Elementary entry: Fixed bug with jumping scroller when editing text.
Get cursor position only when needed, don't get it in advance, cache and
then find out it's not correct because we already moved the entry 10
10 times since :)
git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@59020
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
gouache [Thu, 28 Apr 2011 16:52:52 +0000 (16:52 +0000)]
Elementary map: change evas_object_line (route) to evas_object_polygon
git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@59016
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
cedric [Thu, 28 Apr 2011 15:53:19 +0000 (15:53 +0000)]
elementary: proper fix for thumbnail race condition.
NOTE: evas is able to load corrupted file in some case.
Without proper detection of this corrupted file, we will always end
up with some error when doing thumbnail of the same file in parallele.
git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@59013
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
tasn [Thu, 28 Apr 2011 15:47:01 +0000 (15:47 +0000)]
Elementary entry: Fix min size calculation.
git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@59012
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
seoz [Thu, 28 Apr 2011 15:45:32 +0000 (15:45 +0000)]
Elementary test.c: Fixed doxygen typo.
git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@59011
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
seoz [Thu, 28 Apr 2011 15:25:16 +0000 (15:25 +0000)]
Elementary main: Fixed doxygen typo.
git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@59009
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
seoz [Thu, 28 Apr 2011 15:12:28 +0000 (15:12 +0000)]
Elementary map: Use !! to Eina_Bool substitution in EAPIs.
git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@59008
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
seoz [Thu, 28 Apr 2011 15:10:25 +0000 (15:10 +0000)]
Elementary: Fixed formatting.
Removed trailing white spaces. Fixed indentation.
git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@59007
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
cedric [Thu, 28 Apr 2011 14:04:00 +0000 (14:04 +0000)]
elementary: reduce possibility of reading thumbnail in the middle of its generation.
git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@59005
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
cedric [Thu, 28 Apr 2011 13:24:18 +0000 (13:24 +0000)]
elementary: fix race condition in elm_thumb.
git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@59003
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
seoz [Thu, 28 Apr 2011 08:10:34 +0000 (08:10 +0000)]
Elementary icon: Fixed doxygen typo.
git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@58990
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
gouache [Thu, 28 Apr 2011 07:51:46 +0000 (07:51 +0000)]
Elementary map: fix zoom animation bug
git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@58989
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
gouache [Thu, 28 Apr 2011 05:40:48 +0000 (05:40 +0000)]
Elementary map: Added ELM_CHECK_WIDTYPE to EAPIs.
git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@58987
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
seoz [Thu, 28 Apr 2011 04:16:00 +0000 (04:16 +0000)]
Elementary map: Added wd vadidation check routine to EAPIs.
git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@58986
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
gouache [Thu, 28 Apr 2011 02:47:12 +0000 (02:47 +0000)]
elm_map: add default wheel control for zoom in/out
git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@58985
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
gouache [Thu, 28 Apr 2011 02:34:00 +0000 (02:34 +0000)]
els_scroller: add apis for enable/disable default wheel control
git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@58984
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
seoz [Thu, 28 Apr 2011 02:05:08 +0000 (02:05 +0000)]
Elementary test_thumb.c: Fixed formatting.
git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@58983
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
seoz [Thu, 28 Apr 2011 02:01:13 +0000 (02:01 +0000)]
Elementary thumb: Added ethumb check routine.
git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@58982
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
seoz [Thu, 28 Apr 2011 00:33:46 +0000 (00:33 +0000)]
Elementary thumb: Fixed warning.
git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@58981
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
cedric [Wed, 27 Apr 2011 18:07:18 +0000 (18:07 +0000)]
elementary: use new ethumb async exists API.
git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@58978
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
seoz [Wed, 27 Apr 2011 16:12:56 +0000 (16:12 +0000)]
Elementary elm_widget: Use Eina_Bool instead of int for boolean type.
git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@58969
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
seoz [Wed, 27 Apr 2011 16:06:11 +0000 (16:06 +0000)]
Elementary: Use !! to Eina_Bool substitution in EAPIs.
git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@58968
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
gouache [Wed, 27 Apr 2011 16:01:47 +0000 (16:01 +0000)]
elm_map: fix zomming bug
git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@58967
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
seoz [Wed, 27 Apr 2011 15:31:31 +0000 (15:31 +0000)]
Elementary els_scroller.c: Refactored code.
Changed unsigned char to Eina_Bool. Changed 0 to EINA_FALSE for Eina_Bool type variables. Removed unnecessary blank line. Added braces in if statements.
git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@58964
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
seoz [Wed, 27 Apr 2011 14:54:31 +0000 (14:54 +0000)]
Elementary default.edc: Removed unnecessary blank lines and trailing whitespaces.
git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@58962
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
seoz [Wed, 27 Apr 2011 13:53:25 +0000 (13:53 +0000)]
Elementary elm_conform.c: Fixed warnings.
git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@58960
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
hermet [Wed, 27 Apr 2011 13:09:37 +0000 (13:09 +0000)]
elementary/ctxpopup - added minor exceptions.
git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@58959
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
hermet [Wed, 27 Apr 2011 11:44:20 +0000 (11:44 +0000)]
elementary / default theme - fixed identation and removed white spaces for ctxpopup
git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@58957
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
hermet [Wed, 27 Apr 2011 11:39:28 +0000 (11:39 +0000)]
elementar / ctxpopup - not important changes but ready for refactoring.
git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@58956
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
raster [Wed, 27 Apr 2011 10:18:08 +0000 (10:18 +0000)]
back to 2000 items in test.
git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@58952
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
raster [Wed, 27 Apr 2011 10:17:26 +0000 (10:17 +0000)]
fix genlist processing items in idle time... idle entere instead :)
git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@58951
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
tasn [Wed, 27 Apr 2011 07:41:06 +0000 (07:41 +0000)]
Elementary gettext: Don't set default textdomain, elm is a lib...
git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@58949
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
raster [Wed, 27 Apr 2011 06:33:34 +0000 (06:33 +0000)]
From: govi.sm@samsung.com
Subject: Conformant Widget Code refactoring patch
Can you please review the attached patch for elm_conformant.
Change Log: 1. On Theme change, swallowing Parts again. Swallowing
parts done in separate function.
2. Conformant parts size set is repeated in two places, moved to a
function.
3. Conformant Object Move/Resize is handled to realign the Visible
content area.
git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@58948
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
gouache [Wed, 27 Apr 2011 06:20:23 +0000 (06:20 +0000)]
elementary: sort Makefile.am for compiling sequence
git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@58947
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
gouache [Wed, 27 Apr 2011 06:04:04 +0000 (06:04 +0000)]
elm_map: fix pinch zoom bug
git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@58946
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
seoz [Wed, 27 Apr 2011 02:42:50 +0000 (02:42 +0000)]
Elementary: Removed trailing whitespaces.
git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@58944
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
seoz [Wed, 27 Apr 2011 02:41:11 +0000 (02:41 +0000)]
Elementary genlist: Moved signal doxygen to header file.
This is a first action of doxygen movement. All doxygen will be moved to
headers after all.
git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@58943
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
seoz [Wed, 27 Apr 2011 00:53:52 +0000 (00:53 +0000)]
Elementary notify: Fixed formatting. Removed unnecessary blank lines.
git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@58942
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
seoz [Wed, 27 Apr 2011 00:51:31 +0000 (00:51 +0000)]
Elementary notify: Fixed documentation.
git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@58941
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
seoz [Tue, 26 Apr 2011 16:19:58 +0000 (16:19 +0000)]
Elementary test_map.c: Fixed formatting.
Fixed indentation. Put a space between if/for and (. Removed unnecessary blank lines.
git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@58937
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
hermet [Tue, 26 Apr 2011 06:53:52 +0000 (06:53 +0000)]
elementary / ctxpopup - just removed a empty line
git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@58919
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
hermet [Tue, 26 Apr 2011 04:35:27 +0000 (04:35 +0000)]
elementary / ctxpopup - just changed lines.
git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@58916
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
hermet [Tue, 26 Apr 2011 04:31:23 +0000 (04:31 +0000)]
elementary / ctxpopup - fixed logic error.
git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@58915
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
raster [Mon, 25 Apr 2011 09:04:23 +0000 (09:04 +0000)]
From: cnook <kimcinoo@gmail.com>
I have attached patch for elm_diskselector.
This patch is setting the width of elm_diskselector using its parent width
size, if there is no mention in the theme file.
git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@58895
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
gouache [Mon, 25 Apr 2011 08:11:46 +0000 (08:11 +0000)]
change zoom_animation using evas_map
git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@58891
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
gouache [Mon, 25 Apr 2011 02:41:37 +0000 (02:41 +0000)]
fix doxygen
git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@58885
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
raster [Sun, 24 Apr 2011 09:52:31 +0000 (09:52 +0000)]
elm config also do it. need to actually USe the prefix stuiff.. no
more package_data_dir use int he code.. needs to go.
git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@58864
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
raster [Sun, 24 Apr 2011 09:51:48 +0000 (09:51 +0000)]
and now actuallty start using and supporting per-app prefix finding.
git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@58863
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
raster [Sun, 24 Apr 2011 08:18:00 +0000 (08:18 +0000)]
use new eina prefix fun
git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@58855
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
cedric [Fri, 22 Apr 2011 17:13:59 +0000 (17:13 +0000)]
elementary: correctly fix scale on items.
git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@58831
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
cedric [Fri, 22 Apr 2011 14:37:43 +0000 (14:37 +0000)]
elementary: oops, merge mistake, only one assert header is needed.
git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@58830
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
cedric [Fri, 22 Apr 2011 13:20:06 +0000 (13:20 +0000)]
elementary: fix refactoring and assert.
git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@58828
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
seoz [Fri, 22 Apr 2011 12:22:57 +0000 (12:22 +0000)]
Elementary genlist: Fixed indentation.
Use space instead of tab.
git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@58827
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
seoz [Fri, 22 Apr 2011 12:06:00 +0000 (12:06 +0000)]
Elementary slideshow: Fixed warnings, fixed spacing and removed unnecessary blank lines.
git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@58826
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
seoz [Fri, 22 Apr 2011 11:54:29 +0000 (11:54 +0000)]
Elementary genlist: Fixed implicit declaration warning.
git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@58825
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
cedric [Fri, 22 Apr 2011 09:56:49 +0000 (09:56 +0000)]
elementary: factorise code.
git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@58823
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
cedric [Fri, 22 Apr 2011 09:56:22 +0000 (09:56 +0000)]
elementary: elm_genlist now use edje signal for even/odd state.
NOTE: if you want to implement even/odd in your theme you know
need to listen to both signal :
- elm,state,odd from elm
- elm,state,even from elm
If you set data of "stacking_even" to "above" of you item group
it will raise the even object above the odd one (that's the default
behaviour).
You could also explicitly active/deactivate the stacking by setting
data of "stacking" to "no". Default is "yes".
git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@58822
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
yoz [Fri, 22 Apr 2011 09:19:25 +0000 (09:19 +0000)]
elementary: add the possibility to set the amount of cached items in a slideshow
git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@58821
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
seoz [Fri, 22 Apr 2011 02:29:54 +0000 (02:29 +0000)]
Elementary entry: Fixed indentation. Patch by Jihoon Kim
<jihoon48.kim@samsung.com>
git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@58819
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
hermet [Fri, 22 Apr 2011 00:57:15 +0000 (00:57 +0000)]
elementary/gengrid - made to use signal callback descriptions table.
git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@58817
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
hermet [Fri, 22 Apr 2011 00:42:32 +0000 (00:42 +0000)]
elementary/segment_control, panes, photocam, photo, win, toolbar, thumb, slideshow, spinner - updated signal callbacks.
made them use signal callbacks description table.
removed never-called signals
updated doxygen.
git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@58816
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
seoz [Thu, 21 Apr 2011 16:38:26 +0000 (16:38 +0000)]
Elementary default.edc/genlist: Enhance rotate mode animation.
git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@58808
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
hermet [Thu, 21 Apr 2011 15:57:03 +0000 (15:57 +0000)]
elementary / menu, list, index, pager - modified to use signal callback table.
git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@58807
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
seoz [Thu, 21 Apr 2011 12:22:07 +0000 (12:22 +0000)]
Elementary po: Updated po files.
git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@58796
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
tasn [Thu, 21 Apr 2011 12:09:43 +0000 (12:09 +0000)]
Elementary util: Fix possible invalid read in _elm_util_mkup_to_text.
Patch by WooHyun Jung.
git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@58795
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
seoz [Thu, 21 Apr 2011 12:07:31 +0000 (12:07 +0000)]
Elementary genlist: Removed unnecesssary code.
git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@58794
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
seoz [Thu, 21 Apr 2011 12:05:02 +0000 (12:05 +0000)]
Elementary genlist: Refactoring for structure packing.
git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@58793
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
seoz [Thu, 21 Apr 2011 11:47:36 +0000 (11:47 +0000)]
Elementary genlist: Added genlist mode feature.
I introduce a new concept to genlist.
I named it "genlist mode" after I discussed it with raster.
Using this feature, one can activate/deactivate any mode(effect) to an item.
The mode is defined in genlist item edc.
You can watch a sample video on youtube.
http://www.youtube.com/watch?v=ZPbwpzwwiS8
I created two sample mode: Slide and Rotate.
[Feature Description]
- One can activate a specific mode to an item.
- One item is activated at one time while others are deactivated.
- Genlist handles deactivating other items when one item is activated.
- There are two different view: before activated, after activated.
- Genlist creates the second view when the first view is activated. Usually the first view is animated.
- Genlist destroys the second view when the item finishes deactivating.
- Creating/Destroying the second view on the fly gives performance enhancement because there is no reason to hold all objects in two views all the time.
- Mode is defined in genlist edc so one can easily add it more.
- Mode edc style is separated from normal genlist styles. One can combine any genlist style with mode edc style.
[API]
- EAPI void elm_genlist_item_mode_set(Elm_Genlist_Item *it, const char *mode_type, Eina_Bool mode_set) EINA_ARG_NONNULL(1, 2);
Activate/Deactivate a mode to an item.
- EAPI const char *elm_genlist_mode_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
Get activated mode name.
- EAPI const Elm_Genlist_Item *elm_genlist_mode_item_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
Get activated item.
[Structure]
- Elm_Genlist_Item
Added const char *mode_item_style;
[Usage]
- Set mode style name to genlist item class.
itc.mode_item_style = "mode";
- Activated mode to an item whenever you want.
elm_genlist_item_mode_set(it, "slide", EINA_TRUE);
git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@58791
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
gouache [Thu, 21 Apr 2011 08:55:02 +0000 (08:55 +0000)]
- add rotate feature
- pinch zoom improvement
git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@58784
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
seoz [Wed, 20 Apr 2011 17:20:15 +0000 (17:20 +0000)]
Elementary test_actionslider.c: Fixed wrong variable names.
Magnet slider(ms) is an old name of actionslider. So I changed ms to as.
git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@58764
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
seoz [Wed, 20 Apr 2011 14:16:51 +0000 (14:16 +0000)]
Elementary: Removed trailing whitespaces.
git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@58754
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
cedric [Tue, 19 Apr 2011 16:59:23 +0000 (16:59 +0000)]
elementary: only parse mail file and prevent segv.
git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@58733
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
cedric [Tue, 19 Apr 2011 13:40:25 +0000 (13:40 +0000)]
elementary: fix scale on genlist.
git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@58731
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
seoz [Tue, 19 Apr 2011 07:31:59 +0000 (07:31 +0000)]
Elementary conform: Fixing indentation, coding guideline. Patch by
Prince <prince.dubey@samsung.com>
git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@58730
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
raster [Tue, 19 Apr 2011 01:53:19 +0000 (01:53 +0000)]
fix window posotioning when inlined
git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@58722
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
seoz [Tue, 19 Apr 2011 00:58:39 +0000 (00:58 +0000)]
Elementary gengrid: Fixed a warning.
git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@58721
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
yoz [Mon, 18 Apr 2011 10:59:45 +0000 (10:59 +0000)]
elementary: add page relative, item size and horizontal controls to external gengrid
git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@58706
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
yoz [Mon, 18 Apr 2011 10:54:25 +0000 (10:54 +0000)]
elementary: add page_relative and horizontal getters to gengrid
git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@58705
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
seoz [Mon, 18 Apr 2011 07:37:49 +0000 (07:37 +0000)]
Elementary map: Fixed doxygen, removed trailing whitespaces.
git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@58704
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
gouache [Mon, 18 Apr 2011 06:42:47 +0000 (06:42 +0000)]
This is a patch for elm_map name(address) feature.
I added some APIs for name to elm_map.c and added some test code to test_map.c
I used nominatim OSM service. (http://http://nominatim.openstreetmap.org/)
as i felt, it's response time was very good to use.
git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@58703
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
hermet [Fri, 15 Apr 2011 17:08:04 +0000 (17:08 +0000)]
elementary / image, icon - added missing lines about signal callback table.
git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@58694
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
hermet [Fri, 15 Apr 2011 17:05:34 +0000 (17:05 +0000)]
elementary/image, icon - updated signal callback table
git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@58693
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
hermet [Fri, 15 Apr 2011 17:01:39 +0000 (17:01 +0000)]
elementary / actionslider, calendar, colorselector, bubble, hoversel, clock
- updated them for using common signal callback table.
git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@58692
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
hermet [Fri, 15 Apr 2011 17:00:37 +0000 (17:00 +0000)]
elementary / transit - modified minor logic error
git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@58691
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
hermet [Fri, 15 Apr 2011 16:32:08 +0000 (16:32 +0000)]
elementary / transit - updated internal minors
git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@58690
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
seoz [Fri, 15 Apr 2011 11:44:05 +0000 (11:44 +0000)]
Elementary bin: Use EINA_TRUE/EINA_FALSE for Eina_Bool parameters.
git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@58688
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33