framework/uifw/elementary.git
12 years agotone down smoothing even more.
raster [Thu, 29 Mar 2012 09:39:54 +0000 (09:39 +0000)]
tone down smoothing even more.

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

12 years agowarn-- for non-x
raster [Thu, 29 Mar 2012 09:28:13 +0000 (09:28 +0000)]
warn-- for non-x

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

12 years agofix formatting! no if( ... space pls!
raster [Thu, 29 Mar 2012 09:21:32 +0000 (09:21 +0000)]
fix formatting! no if( ... space pls!

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

12 years agoadjust default configs for scroll smoothing to have a smaller window.
raster [Thu, 29 Mar 2012 09:19:09 +0000 (09:19 +0000)]
adjust default configs for scroll smoothing to have a smaller window.

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

12 years agoelm genlist: Fixed flip bug. Patch by Hyoyoung Chang
seoz [Thu, 29 Mar 2012 08:22:26 +0000 (08:22 +0000)]
elm genlist: Fixed flip bug. Patch by Hyoyoung Chang
<hyoyoung@gmail.com>

On Thu, Mar 29, 2012 at 4:56 PM, Hyoyoung Chang <hyoyoung@gmail.com>
wrote:
> Dear all
>
> I made a patch about flip_realize.
> Currently flip feature uses content_objs, so it should keep its
content_objs.
> However it's lost at _item_flips_realize().
> So i fixed to initialize with its content_objs.
>
> Thanks

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

12 years agouse new ref_get func in object cleanup for windows.
raster [Thu, 29 Mar 2012 07:46:59 +0000 (07:46 +0000)]
use new ref_get func in object cleanup for windows.

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

12 years agoelm genlist: Remove tree_effect_animator on genlist _del_hook.
seoz [Thu, 29 Mar 2012 07:19:23 +0000 (07:19 +0000)]
elm genlist: Remove tree_effect_animator on genlist _del_hook.

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

12 years agoelementary/panes - Patch to handle deletion of current contents while setting new...
hermet [Thu, 29 Mar 2012 07:08:22 +0000 (07:08 +0000)]
elementary/panes - Patch to handle deletion of current contents while setting new ones

Attached to the mail is a patch for elm_panes.

I have a query that shall we hide the unset content in the widget itself or should application explicitly hide them after unsetting!
In case of edje_object_part_unswallow, application needs to do it explicitly and it is documented but in case of elm_object_part_content_unset, there is no documentation available.

Details of the patch:

Existing Issue before this change:
   1. Panes deletes the older content while setting a new content even though both are same.
   2. left and right content are being unswallowed in the content_left_set and _content_right_unset functions. So when the reparenting happens, say when the content is put inside a layout then only _sub_del gets called and
unswallowing does not happen as these functions do not get called.
e.g.   @@ -253,8 +250,6 @@ _content_left_unset(Evas_Object *obj)
    if (!wd->contents.left) return NULL;
    Evas_Object *content = wd->contents.left;
    elm_widget_sub_object_del(obj, content); //wd->contents.left already gets set to NULL in _sub_del
-   edje_object_part_unswallow(wd->panes, content); // can be unswallowed in _sub_del as in case of reparenting like setting content in a layout, only _sub_del will get called, not this function
-   wd->contents.left = NULL; //this instruction is redundent as it happens in _sub_del anyway
    return content;
 }
Change Description:
  1. Unswallowing the contents now in _sub_del as this is a common function to be executed when subobject removal happens.
  2. Comparing the current content with new before deleting.

Signed-Off-By: RAJEEV RANJAN<rajeev.r@samsumg.com>
Thanks.
Regards,
Rajeev

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

12 years agoelementary/toolbar : can_focus should be set as EINA_TRUE.
woohyun [Thu, 29 Mar 2012 06:41:23 +0000 (06:41 +0000)]
elementary/toolbar : can_focus should be set as EINA_TRUE.

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

12 years agoelementary/conform theme : Rearranging some parts in conform theme.
woohyun [Thu, 29 Mar 2012 06:38:34 +0000 (06:38 +0000)]
elementary/conform theme : Rearranging some parts in conform theme.

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

12 years agoelm conform: Revised code. More proper NULL check and aded spacing.
seoz [Thu, 29 Mar 2012 06:26:16 +0000 (06:26 +0000)]
elm conform: Revised code. More proper NULL check and aded spacing.

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

12 years agoelementary/conform : wd->content is set as NULL in _sub_del function,
woohyun [Thu, 29 Mar 2012 06:00:06 +0000 (06:00 +0000)]
elementary/conform : wd->content is set as NULL in _sub_del function,
so can not be used anymore.

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

12 years agoelementary/toolbar : toolbar should be focusable as default.
woohyun [Thu, 29 Mar 2012 05:21:07 +0000 (05:21 +0000)]
elementary/toolbar : toolbar should be focusable as default.

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

12 years agoelementary/naviframe - more clean tree
hermet [Wed, 28 Mar 2012 10:04:55 +0000 (10:04 +0000)]
elementary/naviframe - more clean tree

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

12 years agoelementary/widget - fixed to update the some status -color, clip, visibitliy- even...
hermet [Wed, 28 Mar 2012 10:03:45 +0000 (10:03 +0000)]
elementary/widget - fixed to update the some status -color, clip, visibitliy- even if the memebers are added later.

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

12 years agoelm: Fixed formatting.
seoz [Wed, 28 Mar 2012 09:02:22 +0000 (09:02 +0000)]
elm: Fixed formatting.

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

12 years agoelm examples: Adjust directory names.
seoz [Wed, 28 Mar 2012 08:42:24 +0000 (08:42 +0000)]
elm examples: Adjust directory names.

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

12 years agoelm examples: I removed __UNUSED__ and config header inclusion. This code is an examp...
seoz [Wed, 28 Mar 2012 08:42:20 +0000 (08:42 +0000)]
elm examples: I removed __UNUSED__ and config header inclusion. This code is an example for other developers so we don't need that extra macros. But how can I ignore this warning while building elementary?

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

12 years agoelm elc_player.c: Fixed slider usage.
seoz [Wed, 28 Mar 2012 08:42:13 +0000 (08:42 +0000)]
elm elc_player.c: Fixed slider usage.

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

12 years agoelm thumb_example_01.c: Revert wrong #if 0, #endif. Why this was added?
seoz [Wed, 28 Mar 2012 07:17:46 +0000 (07:17 +0000)]
elm thumb_example_01.c: Revert wrong #if 0, #endif. Why this was added?

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

12 years agoelm slider_example.c: Use proper callback declarations according to elm API change.
seoz [Wed, 28 Mar 2012 07:17:43 +0000 (07:17 +0000)]
elm slider_example.c: Use proper callback declarations according to elm API change.

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

12 years agoelm slider: Changed format function callback's const char * to char *.
seoz [Wed, 28 Mar 2012 07:04:14 +0000 (07:04 +0000)]
elm slider: Changed format function callback's const char * to char *.
The string will be freed in application's callback later. So 'const' is
not appropriate.
In elm_slider_indicator_format_function_set and
elm_slider_units_format_function_set.

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

12 years agoelm genlist: Fixed tree effect bug. Patch by Chanwook Jung
seoz [Wed, 28 Mar 2012 06:23:18 +0000 (06:23 +0000)]
elm genlist: Fixed tree effect bug. Patch by Chanwook Jung
<jchanwook@gmail.com>

On Wed, Mar 28, 2012 at 3:06 PM, chanwook jung <jchanwook@gmail.com>
wrote:
> Dear all,
>
> I added one line to fix the bug at tree effect. If the item is equal
to
> expanded_next_item, expanded_next_item set to NULL in _item_del
>
> Thanks,
> Joey

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

12 years agoelm examples: Use standard way of elementary applications. EAPI_MAIN, elm_shutdown...
seoz [Wed, 28 Mar 2012 06:04:36 +0000 (06:04 +0000)]
elm examples: Use standard way of elementary applications. EAPI_MAIN, elm_shutdown, ELM_MAIN()

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

12 years agoelm examples: Fixed most of shadow variable warnings and unused warnings.
seoz [Wed, 28 Mar 2012 00:52:09 +0000 (00:52 +0000)]
elm examples: Fixed most of shadow variable warnings and unused warnings.

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

12 years agoelm calendar_example_06.c: Fixed tm structure initialization. By the
seoz [Wed, 28 Mar 2012 00:52:05 +0000 (00:52 +0000)]
elm calendar_example_06.c: Fixed tm structure initialization. By the
way, is this correct? I had build warnings before.

menu_example_01.c: In function ‘_del_it’:
menu_example_01.c:17:6: warning: assignment discards qualifiers from
pointer target type

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

12 years agoelm examples: Fixed some meaningful build warnings.
seoz [Wed, 28 Mar 2012 00:52:02 +0000 (00:52 +0000)]
elm examples: Fixed some meaningful build warnings.

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

12 years agoelm: Updated .gitignore.
seoz [Wed, 28 Mar 2012 00:51:59 +0000 (00:51 +0000)]
elm: Updated .gitignore.

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

12 years agoelm examples: Define __UNUSED__ when HAVE_CONFIG_H is not defined.
seoz [Wed, 28 Mar 2012 00:51:57 +0000 (00:51 +0000)]
elm examples: Define __UNUSED__ when HAVE_CONFIG_H is not defined.

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

12 years agoelm genlist_example_04.c: Use proper group item style, content get, and label get...
seoz [Wed, 28 Mar 2012 00:51:53 +0000 (00:51 +0000)]
elm genlist_example_04.c: Use proper group item style, content get, and label get callbacks.

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

12 years agoelm examples: Fixed build warnings.
seoz [Wed, 28 Mar 2012 00:51:49 +0000 (00:51 +0000)]
elm examples: Fixed build warnings.

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

12 years agoelementary/naviframe - add blending effect to overlap style
hermet [Tue, 27 Mar 2012 13:49:10 +0000 (13:49 +0000)]
elementary/naviframe - add blending effect to overlap style

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

12 years agoelementary/colorselector - padding between color items non scalable bug fix.
hermet [Tue, 27 Mar 2012 13:15:36 +0000 (13:15 +0000)]
elementary/colorselector - padding between color items non scalable bug fix.

Signed-Off-By: ShilpaOnkar Singh <shilpa.singh@samsung.com>
git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@69667 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

12 years agoelementary/naviframe - added overlap style and updated test case.
hermet [Tue, 27 Mar 2012 13:11:13 +0000 (13:11 +0000)]
elementary/naviframe - added overlap style and updated test case.

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

12 years agoelementary/pager - farewell pager. you was the best widget ever I know.
hermet [Tue, 27 Mar 2012 08:35:56 +0000 (08:35 +0000)]
elementary/pager - farewell pager. you was the best widget ever I know.

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

12 years agoelemenatary/panel - modified to use recommended parents.
hermet [Tue, 27 Mar 2012 06:47:07 +0000 (06:47 +0000)]
elemenatary/panel - modified to use recommended parents.

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

12 years agoelementary/panel - buggy position!!
hermet [Tue, 27 Mar 2012 06:43:50 +0000 (06:43 +0000)]
elementary/panel - buggy position!!

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

12 years agoelementary/naviframe - fixed to an object has a focus even if insert_after APIs is...
hermet [Tue, 27 Mar 2012 06:06:50 +0000 (06:06 +0000)]
elementary/naviframe - fixed to an object has a focus even if insert_after APIs is called.

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

12 years agoelementary/naviframe - modified content unfocusable.
hermet [Tue, 27 Mar 2012 05:48:41 +0000 (05:48 +0000)]
elementary/naviframe - modified content unfocusable.

The contents will be unfocusable only when they are being pushed or popped.

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

12 years agoelementary/transit - more simple code.
hermet [Tue, 27 Mar 2012 03:16:42 +0000 (03:16 +0000)]
elementary/transit - more simple code.

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

12 years agoelm genlist: Updated moved/moved,after/moved,before signal documentation.
seoz [Tue, 27 Mar 2012 02:39:27 +0000 (02:39 +0000)]
elm genlist: Updated moved/moved,after/moved,before signal documentation.

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

12 years agoelm genlist: Fixed documentation.
seoz [Tue, 27 Mar 2012 02:39:14 +0000 (02:39 +0000)]
elm genlist: Fixed documentation.

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

12 years agoelm examples: Fixed some build warnings.
seoz [Mon, 26 Mar 2012 23:46:53 +0000 (23:46 +0000)]
elm examples: Fixed some build warnings.

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

12 years agoelementary/transit - don't be over the alpha value.
hermet [Mon, 26 Mar 2012 10:40:03 +0000 (10:40 +0000)]
elementary/transit - don't be over the alpha value.

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

12 years agoelm els_scroller: Added horizontal scroll feature by Shift + Wheel for discomfitor.
seoz [Mon, 26 Mar 2012 10:28:47 +0000 (10:28 +0000)]
elm els_scroller: Added horizontal scroll feature by Shift + Wheel for discomfitor.

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

12 years agoWhen the scroller is holded and scrolled, it can be jump.
jaehwan [Mon, 26 Mar 2012 10:05:26 +0000 (10:05 +0000)]
When the scroller is holded and scrolled, it can be jump.
The squence is hold push -> mouse down -> mouse move -> hold pop -> mouse move continuously.
After upper sequence, the scroller will jump. So I fixed this issue.

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

12 years agoelementary/transit - covered flipped image object
hermet [Mon, 26 Mar 2012 09:22:15 +0000 (09:22 +0000)]
elementary/transit - covered flipped image object

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

12 years agoelm multibuttonentry: Deprecated elm_multibuttonentry_item_data_get/set. Use elm_obje...
seoz [Mon, 26 Mar 2012 00:07:28 +0000 (00:07 +0000)]
elm multibuttonentry: Deprecated elm_multibuttonentry_item_data_get/set. Use elm_object_item_data_get/set instead.

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

12 years agoelm multibuttonentry: Refactoring. Use more descriptive name for variable. current...
seoz [Mon, 26 Mar 2012 00:07:14 +0000 (00:07 +0000)]
elm multibuttonentry: Refactoring. Use more descriptive name for variable. current -> selected_it.

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

12 years agoelm multibuttonentry: Fixed formatting.
seoz [Sun, 25 Mar 2012 08:51:12 +0000 (08:51 +0000)]
elm multibuttonentry: Fixed formatting.

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

12 years agoupdate configure/readme for 1.0 alpha
raster [Sat, 24 Mar 2012 11:14:41 +0000 (11:14 +0000)]
update configure/readme for 1.0 alpha

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

12 years agoFrom: Hyoyoung Chang <hyoyoung@gmail.com>
raster [Sat, 24 Mar 2012 11:14:20 +0000 (11:14 +0000)]
From: Hyoyoung Chang <hyoyoung@gmail.com>
Subject: [E-devel] [patch] elm_genlist - add merging edc strings list

I add like a routine in previous patch.
It add merging routines to realize functions.
also i removed "elm_widget_stringlist_free(cons)"
because all of it is freed at item_unrealize.

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

12 years agoupdate po's?
raster [Sat, 24 Mar 2012 02:53:31 +0000 (02:53 +0000)]
update po's?

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

12 years agoFix related zoom
sanjeev [Fri, 23 Mar 2012 11:15:01 +0000 (11:15 +0000)]
Fix related zoom
Author : Bluezery <ohpowel@gmail.com>

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

12 years agoFrom: GoUn Lee <gouni.lee@samsung.com>
raster [Fri, 23 Mar 2012 07:49:14 +0000 (07:49 +0000)]
From: GoUn Lee <gouni.lee@samsung.com>
Subject: [E-devel] [?Patch]elm_?multibutto?nentry bug fix

I've attached patch to fix bug in multibuttonentry.
When this widget is unfocused, there's no code for making unfocused
entry in multibuttonentry.
Because of that, when multibuttonentry got focus again, entry couldn't
get focus normally.
so I've added  code to fix this issue. when it's unfocused.

Also I removed unused value in resize_button() which is 'padding_inner'

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

12 years agoFrom: chanwook jung <jchanwook@gmail.com>
raster [Fri, 23 Mar 2012 07:47:03 +0000 (07:47 +0000)]
From: chanwook jung <jchanwook@gmail.com>
Subject: [E-devel] [Patch][Genlist] Tree effect bug fix

I found some bugs in tree effect. flickering, emit signal to unrealize
item... so I fix it.

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

12 years agofix other bring in bug leif found.
raster [Fri, 23 Mar 2012 07:33:15 +0000 (07:33 +0000)]
fix other bring in bug leif found.

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

12 years agoElm examples: add win32 thread examples, remove some whitespaces in the corresponding...
caro [Fri, 23 Mar 2012 07:23:26 +0000 (07:23 +0000)]
Elm examples: add win32 thread examples, remove some whitespaces in the corresponding pthread code, and rework a bit Makefile.am

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

12 years agoCallback parameter should be Widget_Data, not Evas_Object.
sanjeev [Fri, 23 Mar 2012 05:36:11 +0000 (05:36 +0000)]
Callback parameter should be Widget_Data, not Evas_Object.
Author : Bluezery <ohpowel@gmail.com>

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

12 years agoelm map: Removed unused codes. Patch by Bluezery <ohpowel@gmail.com>
seoz [Fri, 23 Mar 2012 01:29:32 +0000 (01:29 +0000)]
elm map: Removed unused codes. Patch by Bluezery <ohpowel@gmail.com>

On Thu, Mar 22, 2012 at 9:38 PM, Bluezery <ohpowel@gmail.com> wrote:
> Hello,
>
> Now, Elm_Map_Marker, Elm_Map_Marker_Class, Elm_Map_Group_Class,
> Marker_Bubble are not used anymore.  So I removed all things related
> those in elm_map.
> Please review this patch.
> Thanks
>

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

12 years ago[Elm] Fix wrong info on focus test.
glima [Thu, 22 Mar 2012 19:25:40 +0000 (19:25 +0000)]
[Elm] Fix wrong info on focus test.

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

12 years agoupdate po.
raster [Thu, 22 Mar 2012 10:59:45 +0000 (10:59 +0000)]
update po.

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

12 years agopass distcheck
raster [Thu, 22 Mar 2012 10:59:37 +0000 (10:59 +0000)]
pass distcheck

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

12 years agoFrom: Bluezery <ohpowel@gmail.com>
raster [Thu, 22 Mar 2012 10:40:04 +0000 (10:40 +0000)]
From: Bluezery <ohpowel@gmail.com>
Subject: [E-devel] [Patch][elm_map] Add line, polygon, circle, scale
overlay

This patch adds new overlay APIs (line, polygon, circle, scale) for elm_map.
These overlays are adhered to map even though zooming, panning.
You can test these by doing "elementary_test --> click mouse right -->
overlay"

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

12 years agoFrom: cnook <kimcinoo@gmail.com>
raster [Thu, 22 Mar 2012 10:14:58 +0000 (10:14 +0000)]
From: cnook <kimcinoo@gmail.com>
Subject: [E-devel] [Patch][elementary] elc_ctxpopup using elm_list
internally.

The patch is for using elm_list as a item controller of elc_ctxpopup.
I have learned that there was an opinion to change the internal
structure
of ctxpopup using the list.
It would be able to match up to your expectation. but it is just a draft
version of using list in ctxpopup.
So, It would be pretty good to me if you give any feedback on this.
Thanks.

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

12 years agoto make show/bring in work for list - canvas objects need calcing
raster [Thu, 22 Mar 2012 10:10:29 +0000 (10:10 +0000)]
to make show/bring in work for list - canvas objects need calcing
first! so,., calc!

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

12 years agoand clean up formatting uglies i saw.
raster [Thu, 22 Mar 2012 09:34:57 +0000 (09:34 +0000)]
and clean up formatting uglies i saw.

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

12 years agoactually kno difference betwene show and bring-in in genlist if item
raster [Thu, 22 Mar 2012 09:33:29 +0000 (09:33 +0000)]
actually kno difference betwene show and bring-in in genlist if item
queued.

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

12 years agofix initial bring in coord calc for genlist items if inside first
raster [Thu, 22 Mar 2012 09:32:18 +0000 (09:32 +0000)]
fix initial bring in coord calc for genlist items if inside first
block (special case) and probably other stuff that goes wrong related
to geomtry being wrong at this stage.

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

12 years agoFrom: cnook <kimcinoo@gmail.com>
raster [Thu, 22 Mar 2012 05:58:49 +0000 (05:58 +0000)]
From: cnook <kimcinoo@gmail.com>
Subject: [E-devel] [Patch][elm_list] bug fix: crash occurs when
container which contains the elm_list is deleted on the "elm_list item
clicked" callback

I have resolved the elm_list issue(goto ELM_LIST_CRASH_ISSUE_MAIL below, I
sent mail but I cannot find the previous mail -_-;).
It would be related with double free issue. In the "sub-obejct-del"
callback which name is _sub_del() sets item->icon to NULL.
And in the EVAS_CALLBACK_MOUSE_UP callback funtion which name is
_mouse_up() calls evas_object_unref();
It would try to free the item->icon but the item->icon is already set to
NULL. So.. the crash would occur..

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

12 years agoFrom: Bluezery <ohpowel@gmail.com>
raster [Thu, 22 Mar 2012 05:23:19 +0000 (05:23 +0000)]
From: Bluezery <ohpowel@gmail.com>
Subject: [E-devel] [Patch][elm_map] Map overlay color & grouping &
route Fix

This is patch for elm_map

1. Default and Class overlay can be set color by
elm_map_overlay_color_set().
2. Fix test application  for map API testing more.
3. Fix grouping for enabling group callbacks. If overlay group is
clicked, callback will be called.
And elm_map_overlay_group_members_set() API will be added later to get
list of overlays in the group.
4. Simplify route overlay: Previously, many polygon objects are needed
for one route overlay.
But now  just one is needed.

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

12 years agoFix bugs in Elementary examples and documentation.
gastal [Wed, 21 Mar 2012 17:57:34 +0000 (17:57 +0000)]
Fix bugs in Elementary examples and documentation.

Patch by: Joao Paulo Fernandes Ventura <ventura@profusion.mobi>

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

12 years agoRemove GLView example from comments to a new file.
gastal [Wed, 21 Mar 2012 17:57:31 +0000 (17:57 +0000)]
Remove GLView example from comments to a new file.

Patch by: Joao Paulo Fernandes Ventura <ventura@profusion.mobi>

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

12 years agoFixing bugs in Elementary widgets documentation.
gastal [Wed, 21 Mar 2012 17:57:27 +0000 (17:57 +0000)]
Fixing bugs in Elementary widgets documentation.

Patch by: Joao Paulo Fernandes Ventura <ventura@profusion.mobi>

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

12 years agoFrom: Hyoyoung Chang <hyoyoung@gmail.com>
raster [Wed, 21 Mar 2012 11:52:16 +0000 (11:52 +0000)]
From: Hyoyoung Chang <hyoyoung@gmail.com>
Subject: [E-devel] [patch] elm_genlist - bugfix at item_state_update

I fixed minor error in _elm_genlist_item_state_update.
If item is selected, it sends signal to item and edit_obj.
But edit_obj is not checked by if statement.
I added a parenthesis for it.

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

12 years agoFrom: chanwook jung <jchanwook@gmail.com>
raster [Wed, 21 Mar 2012 11:50:33 +0000 (11:50 +0000)]
From: chanwook jung <jchanwook@gmail.com>
Subject: [E-devel] [Patch][Genlist] Add the moved.after/before signal
instead of moved

Some applications want to know moved.after or before and relative item
because of updating their own list. So I separated moved into
moved,after and move,before.

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

12 years agoFrom: Hyoyoung Chang <hyoyoung@gmail.com>
raster [Wed, 21 Mar 2012 11:06:16 +0000 (11:06 +0000)]
From: Hyoyoung Chang <hyoyoung@gmail.com>
Subject: [E-devel] [patch] elm_genlist - bugfix at flip_realize

I found a bug in _item_flip_realize.
It replaces previous string list without free.
this patch fixed for it.

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

12 years agoFrom: cnook <kimcinoo@gmail.com>
raster [Wed, 21 Mar 2012 10:41:42 +0000 (10:41 +0000)]
From: cnook <kimcinoo@gmail.com>
Subject: [E-devel] [Patch][elementary] elm_list.c - item_content_set()
related.

The Eina_Bool item->dummy_icon and item->dummy_end of Elm_List_Item
indicate whether the content has REAL object or not.
- "not" means.. if elm_object_item_part_content_set(); is called with
NULL content, the Elm_List set the swallow part with
rectangle which has alpha value 0 and the item->dummy_icon or
item->dummy_end is set to EINA_TRUE. -
But in the item_content_set(); it works the opposite way. So when
content set with NULL value the flag should be EINA_TRUE.

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

12 years agogravity_set/get func ptr not set.
sanjeev [Wed, 21 Mar 2012 00:43:05 +0000 (00:43 +0000)]
gravity_set/get func ptr not set.
Author : Hyoyoung Chang <hyoyoung@gmail.com>

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

12 years agoelm test_naviframe.c: Revised codes.
seoz [Tue, 20 Mar 2012 17:28:12 +0000 (17:28 +0000)]
elm test_naviframe.c: Revised codes.

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

12 years agoelementary/elm_widget : When adding a sub-object, top_win_focused flag
woohyun [Tue, 20 Mar 2012 08:42:23 +0000 (08:42 +0000)]
elementary/elm_widget : When adding a sub-object, top_win_focused flag
of parent object should be set for all sub-objects in the tree.

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

12 years agoelm genlist: Refine item callbacks. Patch by Hyoyoung Chang
seoz [Tue, 20 Mar 2012 07:58:42 +0000 (07:58 +0000)]
elm genlist: Refine item callbacks. Patch by Hyoyoung Chang
<hyoyoung@gmail.com>

On Mon, Mar 19, 2012 at 11:48 AM, Hyoyoung Chang <hyoyoung@gmail.com>
wrote:
> Dear all,
>
> I found a bug in decorate mode that selection callback is called
twice.
> Because two _mouse_down callbacks are added to a genlist item.
> I'm fixing this bug and some refactoring.
>
> Thanks.

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

12 years agoelm_map - Bug fix and cleanup.
sanjeev [Tue, 20 Mar 2012 07:37:59 +0000 (07:37 +0000)]
elm_map - Bug fix and cleanup.
Author : Bluezery <ohpowel@gmail.com>

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

12 years agoelm genlist: Refactoring. Create spacer object only when it is needed.
seoz [Tue, 20 Mar 2012 05:44:18 +0000 (05:44 +0000)]
elm genlist: Refactoring. Create spacer object only when it is needed.

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

12 years agoElm: ignore--
caro [Tue, 20 Mar 2012 04:43:50 +0000 (04:43 +0000)]
Elm: ignore--

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

12 years agoElm: fix compilation on OS that are not using X
caro [Tue, 20 Mar 2012 04:41:24 +0000 (04:41 +0000)]
Elm: fix compilation on OS that are not using X

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

12 years agoElm: typo in comment
caro [Tue, 20 Mar 2012 04:40:36 +0000 (04:40 +0000)]
Elm: typo in comment

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

12 years agoReplace repetetive if(type== with switch/case
leif [Tue, 20 Mar 2012 03:19:13 +0000 (03:19 +0000)]
Replace repetetive if(type== with switch/case

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

12 years agoagain, mandatory hover menus are not suitable for desktop profiles. applications...
discomfitor [Mon, 19 Mar 2012 16:56:28 +0000 (16:56 +0000)]
again, mandatory hover menus are not suitable for desktop profiles. applications will want to provide their own menus, and having a whole menu to provide functionality available by clicking and dragging is not the best idea

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

12 years agodisable annoying hover menu when clicking anchors in desktop profile; enforcing a...
discomfitor [Mon, 19 Mar 2012 16:50:01 +0000 (16:50 +0000)]
disable annoying hover menu when clicking anchors in desktop profile; enforcing a mandatory menu for right clicking was not one of the better ideas we have had

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

12 years agoNew simpler button example.
gastal [Mon, 19 Mar 2012 12:58:12 +0000 (12:58 +0000)]
New simpler button example.

Patch by: João Paulo Fernandes Ventura<ventura@profusion.mobi>

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

12 years agoFixing bugs in examples.
gastal [Mon, 19 Mar 2012 12:58:07 +0000 (12:58 +0000)]
Fixing bugs in examples.

Patch by: João Paulo Fernandes Ventura<ventura@profusion.mobi>

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

12 years agoelm list: Added elm_list_first/last_item_get() APIs. I know we freezed API but they...
seoz [Mon, 19 Mar 2012 07:27:53 +0000 (07:27 +0000)]
elm list: Added elm_list_first/last_item_get() APIs. I know we freezed API but they are so primitive and necessary for 1.0

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

12 years agoelm test_check: Revised codes.
seoz [Mon, 19 Mar 2012 07:27:49 +0000 (07:27 +0000)]
elm test_check: Revised codes.

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

12 years agoupdate po's
raster [Mon, 19 Mar 2012 06:59:28 +0000 (06:59 +0000)]
update po's

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

12 years agoFrom: cnook <kimcinoo@gmail.com>
raster [Mon, 19 Mar 2012 06:57:39 +0000 (06:57 +0000)]
From: cnook <kimcinoo@gmail.com>
Subject: [E-devel] [Patch][elementary_test] test_layout

I have attached a patch for test_layout. Please review this and give
any feedbacks. Thanks.

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

12 years agoelementary/test_gengrid : fix a bug :)
woohyun [Sun, 18 Mar 2012 12:25:35 +0000 (12:25 +0000)]
elementary/test_gengrid : fix a bug :)

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

12 years agoelementary/popup : Fixing a bug. Please refer following message from
woohyun [Sun, 18 Mar 2012 10:04:49 +0000 (10:04 +0000)]
elementary/popup : Fixing a bug. Please refer following message from
Rajeev. Thanks Rajeev.
Existing Issue before this change:
   The popup width gets scaled twice when theme_hook gets invoked
because of some reason such as style change, change in elementary
scale factor, change in widget scaling etc.

Change Description:
  Removed setting scaling of internal object wd->base from theme_hook
as it is set to the widget scaling automatically.
Signed-Off-By: RAJEEV RANJAN<rajeev.r@samsumg.com>
git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@69492 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

12 years agoelm: fix doxygen about Widget Tree Navigation
jihoon [Sat, 17 Mar 2012 10:42:26 +0000 (10:42 +0000)]
elm: fix doxygen about Widget Tree Navigation

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

12 years agoelementary: remove Toggle in index.doxy
jihoon [Sat, 17 Mar 2012 10:19:38 +0000 (10:19 +0000)]
elementary: remove Toggle in index.doxy

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