platform/upstream/elementary.git
12 years agoelm: Fixed formatting. Added a space after 'if/while/for'
Daniel Juyung Seo [Thu, 29 Mar 2012 11:09:45 +0000 (11:09 +0000)]
elm: Fixed formatting. Added a space after 'if/while/for'

SVN revision: 69744

12 years agoelm elm_object: Fixed part content set hooks.
Daniel Juyung Seo [Thu, 29 Mar 2012 11:09:40 +0000 (11:09 +0000)]
elm elm_object: Fixed part content set hooks.
 1. delete old content object
 2. check whether new content object is same as old content object
 3. added some doxygen description.

SVN revision: 69743

12 years agoelm genlist: Fixed _item_content_set_hook. Use _item_content_unset_hook internally.
Daniel Juyung Seo [Thu, 29 Mar 2012 11:09:34 +0000 (11:09 +0000)]
elm genlist: Fixed _item_content_set_hook. Use _item_content_unset_hook internally.

SVN revision: 69742

12 years agoelm elm_object_item: Fixed item part content set hooks.
Daniel Juyung Seo [Thu, 29 Mar 2012 10:08:37 +0000 (10:08 +0000)]
elm elm_object_item: Fixed item part content set hooks.
1. delete old content object
2. check whether new content object is same as old content object
3. rename internal content set hook function
4. elm_widget_sub_object_del will be followed by evas_object_del
5. added some doxygen description.

SVN revision: 69738

12 years agofix next calgrind bitch. yay!
Carsten Haitzler [Thu, 29 Mar 2012 09:54:21 +0000 (09:54 +0000)]
fix next calgrind bitch. yay!

SVN revision: 69737

12 years agofix segv on elm_config exiting - entry bug! free(wd) AFTEr u have
Carsten Haitzler [Thu, 29 Mar 2012 09:40:23 +0000 (09:40 +0000)]
fix segv on elm_config exiting - entry bug! free(wd) AFTEr u have
finishing ACCESING IT!

SVN revision: 69736

12 years agotone down smoothing even more.
Carsten Haitzler [Thu, 29 Mar 2012 09:39:54 +0000 (09:39 +0000)]
tone down smoothing even more.

SVN revision: 69735

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

SVN revision: 69734

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

SVN revision: 69732

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

SVN revision: 69731

12 years agoelm genlist: Fixed flip bug. Patch by Hyoyoung Chang
Daniel Juyung Seo [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

SVN revision: 69725

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

SVN revision: 69723

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

SVN revision: 69721

12 years agoelementary/panes - Patch to handle deletion of current contents while setting new...
ChunEon Park [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

SVN revision: 69720

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

SVN revision: 69719

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

SVN revision: 69718

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

SVN revision: 69717

12 years agoelementary/conform : wd->content is set as NULL in _sub_del function,
WooHyun Jung [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.

SVN revision: 69716

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

SVN revision: 69714

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

SVN revision: 69702

12 years agoelementary/widget - fixed to update the some status -color, clip, visibitliy- even...
ChunEon Park [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.

SVN revision: 69701

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

SVN revision: 69700

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

SVN revision: 69699

12 years agoelm examples: I removed __UNUSED__ and config header inclusion. This code is an examp...
Daniel Juyung Seo [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?

SVN revision: 69698

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

SVN revision: 69697

12 years agoelm thumb_example_01.c: Revert wrong #if 0, #endif. Why this was added?
Daniel Juyung Seo [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?

SVN revision: 69695

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

SVN revision: 69694

12 years agoelm slider: Changed format function callback's const char * to char *.
Daniel Juyung Seo [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.

SVN revision: 69692

12 years agoelm genlist: Fixed tree effect bug. Patch by Chanwook Jung
Daniel Juyung Seo [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

SVN revision: 69691

12 years agoelm examples: Use standard way of elementary applications. EAPI_MAIN, elm_shutdown...
Daniel Juyung Seo [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()

SVN revision: 69690

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

SVN revision: 69682

12 years agoelm calendar_example_06.c: Fixed tm structure initialization. By the
Daniel Juyung Seo [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

SVN revision: 69681

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

SVN revision: 69680

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

SVN revision: 69679

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

SVN revision: 69678

12 years agoelm genlist_example_04.c: Use proper group item style, content get, and label get...
Daniel Juyung Seo [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.

SVN revision: 69677

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

SVN revision: 69676

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

SVN revision: 69668

12 years agoelementary/colorselector - padding between color items non scalable bug fix.
ShilpaOnkar Singh [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>
SVN revision: 69667

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

SVN revision: 69666

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

SVN revision: 69662

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

SVN revision: 69654

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

SVN revision: 69653

12 years agoelementary/naviframe - fixed to an object has a focus even if insert_after APIs is...
ChunEon Park [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.

SVN revision: 69652

12 years agoelementary/naviframe - modified content unfocusable.
ChunEon Park [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.

SVN revision: 69651

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

SVN revision: 69650

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

SVN revision: 69649

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

SVN revision: 69648

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

SVN revision: 69642

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

SVN revision: 69633

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

SVN revision: 69632

12 years agoWhen the scroller is holded and scrolled, it can be jump.
Jaehwan Kim [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.

SVN revision: 69631

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

SVN revision: 69630

12 years agoelm multibuttonentry: Deprecated elm_multibuttonentry_item_data_get/set. Use elm_obje...
Daniel Juyung Seo [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.

SVN revision: 69622

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

SVN revision: 69621

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

SVN revision: 69607

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

SVN revision: 69599

12 years agoFrom: Hyoyoung Chang <hyoyoung@gmail.com>
Hyoyoung Chang [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.

SVN revision: 69598

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

SVN revision: 69594

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

SVN revision: 69590

12 years agoFrom: GoUn Lee <gouni.lee@samsung.com>
GoUn Lee [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'

SVN revision: 69583

12 years agoFrom: chanwook jung <jchanwook@gmail.com>
chanwook jung [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.

SVN revision: 69582

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

SVN revision: 69581

12 years agoElm examples: add win32 thread examples, remove some whitespaces in the corresponding...
Vincent Torri [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

SVN revision: 69580

12 years agoCallback parameter should be Widget_Data, not Evas_Object.
Sanjeev BA [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>

SVN revision: 69577

12 years agoelm map: Removed unused codes. Patch by Bluezery <ohpowel@gmail.com>
Daniel Juyung Seo [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
>

SVN revision: 69571

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

SVN revision: 69570

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

SVN revision: 69564

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

SVN revision: 69563

12 years agoFrom: Bluezery <ohpowel@gmail.com>
Bluezery [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"

SVN revision: 69562

12 years agoFrom: cnook <kimcinoo@gmail.com>
cnook [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.

SVN revision: 69561

12 years agoto make show/bring in work for list - canvas objects need calcing
Carsten Haitzler [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!

SVN revision: 69560

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

SVN revision: 69559

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

SVN revision: 69558

12 years agofix initial bring in coord calc for genlist items if inside first
Carsten Haitzler [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.

SVN revision: 69557

12 years agoFrom: cnook <kimcinoo@gmail.com>
cnook [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..

SVN revision: 69555

12 years agoFrom: Bluezery <ohpowel@gmail.com>
Bluezery [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.

SVN revision: 69554

12 years agoFix bugs in Elementary examples and documentation.
Joao Paulo Fernandes Ventura [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>

SVN revision: 69544

12 years agoRemove GLView example from comments to a new file.
Joao Paulo Fernandes Ventura [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>

SVN revision: 69543

12 years agoFixing bugs in Elementary widgets documentation.
Joao Paulo Fernandes Ventura [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>

SVN revision: 69542

12 years agoFrom: Hyoyoung Chang <hyoyoung@gmail.com>
Hyoyoung Chang [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.

SVN revision: 69538

12 years agoFrom: chanwook jung <jchanwook@gmail.com>
chanwook jung [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.

SVN revision: 69537

12 years agoFrom: Hyoyoung Chang <hyoyoung@gmail.com>
Hyoyoung Chang [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.

SVN revision: 69536

12 years agoFrom: cnook <kimcinoo@gmail.com>
cnook [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.

SVN revision: 69535

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

SVN revision: 69530

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

SVN revision: 69526

12 years agoelementary/elm_widget : When adding a sub-object, top_win_focused flag
WooHyun Jung [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.

SVN revision: 69523

12 years agoelm genlist: Refine item callbacks. Patch by Hyoyoung Chang
Daniel Juyung Seo [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.

SVN revision: 69520

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

SVN revision: 69519

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

SVN revision: 69518

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

SVN revision: 69516

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

SVN revision: 69515

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

SVN revision: 69512

12 years agoagain, mandatory hover menus are not suitable for desktop profiles. applications...
Mike Blumenkrantz [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

SVN revision: 69510

12 years agodisable annoying hover menu when clicking anchors in desktop profile; enforcing a...
Mike Blumenkrantz [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

SVN revision: 69509

12 years agoNew simpler button example.
João Paulo Fernandes Ventura [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>

SVN revision: 69508

12 years agoFixing bugs in examples.
João Paulo Fernandes Ventura [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>

SVN revision: 69507

12 years agoelm list: Added elm_list_first/last_item_get() APIs. I know we freezed API but they...
Daniel Juyung Seo [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>
SVN revision: 69505

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

SVN revision: 69504

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

SVN revision: 69502