platform/upstream/elementary.git
12 years agoFrom: Hyoyoung Chang <hyoyoung@gmail.com>
Hyoyoung Chang [Wed, 7 Mar 2012 12:43:19 +0000 (12:43 +0000)]
From: Hyoyoung Chang <hyoyoung@gmail.com>
Subject: [E-devel] [patch] elm_gen{list, grid} - add elm_genlist_select_mode_set

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

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

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

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

And added a enum in elm_general.h

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

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

SVN revision: 68937

12 years agoelm diskselector: Reviewed diskselector.
Daniel Juyung Seo [Wed, 7 Mar 2012 12:30:00 +0000 (12:30 +0000)]
elm diskselector: Reviewed diskselector.

SVN revision: 68936

12 years agoelm: Updated .gitignore.
Daniel Juyung Seo [Wed, 7 Mar 2012 12:29:45 +0000 (12:29 +0000)]
elm: Updated .gitignore.

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

12 years agoFrom: chanwook jung <jchanwook@gmail.com>
chanwook jung [Wed, 7 Mar 2012 12:15:36 +0000 (12:15 +0000)]
From: chanwook jung <jchanwook@gmail.com>
Subject: [E-devel] [Patch] elm_genlist : Add tree effect APIs

I made a patch for Tree Effect in elm_genlist.
This feature shows the flip effect when expand/contract the expandable
list.

External APIs :
+EAPI void               elm_genlist_tree_effect_enabled_set(Evas_Object
*obj, Eina_Bool enabled);
- Set Genlist tree effect

+EAPI Eina_Bool          elm_genlist_tree_effect_enabled_get(const
Evas_Object *obj);
- Get Genlist tree effect status

You can test it. "Genlist Tree Effect".

SVN revision: 68934

12 years agoaaah bugger - i was wrong. 0 is sn, not mon. fix. now days start on
Carsten Haitzler [Wed, 7 Mar 2012 12:03:13 +0000 (12:03 +0000)]
aaah bugger - i was wrong. 0 is sn, not mon. fix. now days start on
monday.. how it SHOULD be.. thats why we call it a weekEND..  it
happens at the.. END of a week... :S

SVN revision: 68933

12 years agoget configs up to date.. and weekend/say should be 0 5 2 (0 == mon, 5
Carsten Haitzler [Wed, 7 Mar 2012 11:49:23 +0000 (11:49 +0000)]
get configs up to date.. and weekend/say should be 0 5 2 (0 == mon, 5
== sat etc.)

SVN revision: 68932

12 years agoFrom: Jérémy Zurcher <jeremy@asynk.ch>
Jérémy Zurcher [Wed, 7 Mar 2012 11:31:18 +0000 (11:31 +0000)]
From: Jérémy Zurcher <jeremy@asynk.ch>
Subject: [E-devel] elm_entry patch : typedef Elm_Entry_Item_Provider_Cb

this improves readability and helps for ruby binding maintenance

SVN revision: 68931

12 years agoelementary: fix external. Anchorblock and anchorview doesn't exist anymore
Michael BOUCHAUD [Wed, 7 Mar 2012 11:30:44 +0000 (11:30 +0000)]
elementary: fix external. Anchorblock and anchorview doesn't exist anymore

SVN revision: 68930

12 years agoelementary/elm_deprecated: add elm_photocam_gesture_set/get
Mikael SANS [Wed, 7 Mar 2012 10:04:54 +0000 (10:04 +0000)]
elementary/elm_deprecated: add elm_photocam_gesture_set/get

SVN revision: 68919

12 years agomissed a doc string
Carsten Haitzler [Wed, 7 Mar 2012 09:31:34 +0000 (09:31 +0000)]
missed a doc string

SVN revision: 68916

12 years agoFrom: Bluezery <ohpowel@gmail.com>
Bluezery [Wed, 7 Mar 2012 09:28:08 +0000 (09:28 +0000)]
From: Bluezery <ohpowel@gmail.com>
Subject: [E-devel]  [Patch][elm_map] Change & Add map APIs

I rename & add some APIs.
As previously discussed, I categorized map APIs.
(http://marc.info/?l=enlightenment-devel&m=132685497711772&w=2)

1) Zoom
elm_map_zoom_set/get
elm_map_zoom_mode_set/get
elm_map_zoom_min_set/get
elm_map_zoom_max_set/get

2) Region - Geographic coordinates (region)
elm_map_region_get
elm_map_region_show/bring_in
elm_map_canvas_to_region_convert

I will not use "_geo_" in map APIs. All map APIs are basically used by
geographic coordinates.

3) Property
elm_map_paused_set/get
elm_map_rotate_set/get
elm_map_wheel_disabled_set/get
elm_map_user_agent_set/get

4) Overlay
elm_map_overlay_add/del
elm_map_overlay_xxx
elm_map_overlay_class_xxx
elm_map_overlay_bubble_xxx
elm_map_overlay_route_xxx

I will add line, rectangle, poi overlays  ASAP.

5) Source - External Provider  (Tile, Route, Name, )
elm_map_sources_get
elm_map_source_set/get

I will add more provider ASAP such as POI, etc.

6) Route
elm_map_route_add/del
elm_map_route_distance_get
elm_map_route_node_get
elm_map_route_waypoints_get

7) Name
elm_map_name_add/del
elm_map_route_address_get
elm_map_route_region_get

6) Route and 7) Name do not return visible objects actually.  Those
just return data.
I don't know "_add" suffix is correct for none visible objects.
I cannot decide yet whether those should be removed from map widget.
But current trends are that route, geocoding are  tightly coupled with
Map.

If Apps want to use only data, just use elm_map_route_add().
If not, use elm_map_route_add() & elm_map_overlay_route_add().
Also name overlay could be added in the future.

8) Miscellaneous
elm_map_tile_load_status_get

9) Signals
Basic events : "clicked", "clicked,double", "press", "longpressed",
Scroller events: "scroll", "scroll,xxx,xxx"
Zoom events: "zoom,start/stop/change"
Source (provider) events: "tile,load/loaded/loaded,fail" ,
"route,load/loaded/loaded,fail", "name,load/loaded/loaded,fail"

There are some big patches. I think diff program do not make exact
diff. :D.
Anyway, it's  better to maintain if this can be in before API fix
(elementary 1.0).
Because after these change, It is hard to maintain old APIs.

PS) Documentations and some minor bugs are remained yet.

SVN revision: 68915

12 years agoelm_multibuttonentry_item_filter_del -> elm_multibuttonentry_item_filter_remove
Sanjeev BA [Wed, 7 Mar 2012 09:22:20 +0000 (09:22 +0000)]
elm_multibuttonentry_item_filter_del -> elm_multibuttonentry_item_filter_remove
Author : Jeremy Zurcher <jeremy@asynk.ch>
Signed-off-by: Sanjeev BA <eflelev8@gmail.com>
SVN revision: 68914

12 years agoRevert "elm_multibuttonentry_item_filter_del -> elm_multibuttonentry_item_filter_remove"
Sanjeev BA [Wed, 7 Mar 2012 09:22:17 +0000 (09:22 +0000)]
Revert "elm_multibuttonentry_item_filter_del -> elm_multibuttonentry_item_filter_remove"

Git svn doesn't respect local 'author'

Have to revert and put the author in the commit msg.

This reverts commit 879a6c3573c3c741841647679dc4d04ccaa3e91a.

SVN revision: 68913

12 years agoelm_multibuttonentry_item_filter_del -> elm_multibuttonentry_item_filter_remove
Sanjeev BA [Wed, 7 Mar 2012 09:13:20 +0000 (09:13 +0000)]
elm_multibuttonentry_item_filter_del -> elm_multibuttonentry_item_filter_remove
Signed-off-by: Sanjeev BA <eflelev8@gmail.com>
SVN revision: 68912

12 years agoRevert "Correct API names."
Sanjeev BA [Wed, 7 Mar 2012 09:13:15 +0000 (09:13 +0000)]
Revert "Correct API names."

This reverts commit ba4910a73baa10231bd73eb56867b1a4f0818168.
SVN revision 68909.
Author name in commit is incorrect.

SVN revision: 68911

12 years agoCorrect API names.
Sanjeev BA [Wed, 7 Mar 2012 09:04:16 +0000 (09:04 +0000)]
Correct API names.

Signed-off-by: Sanjeev BA <eflelev8@gmail.com>
SVN revision: 68909

12 years agoFix example build issue.
Sanjeev BA [Wed, 7 Mar 2012 08:55:43 +0000 (08:55 +0000)]
Fix example build issue.

Signed-off-by: Sanjeev BA <eflelev8@gmail.com>
SVN revision: 68907

12 years agoFix warnings and build errors.
Sanjeev BA [Wed, 7 Mar 2012 08:55:37 +0000 (08:55 +0000)]
Fix warnings and build errors.

Signed-off-by: Sanjeev BA <eflelev8@gmail.com>
SVN revision: 68906

12 years agoelementary - updated review
ChunEon Park [Wed, 7 Mar 2012 08:51:27 +0000 (08:51 +0000)]
elementary - updated review

SVN revision: 68905

12 years agoelementary/dayselector - --printf
ChunEon Park [Wed, 7 Mar 2012 08:48:14 +0000 (08:48 +0000)]
elementary/dayselector - --printf

SVN revision: 68904

12 years agoelementary/dayselector - trivial changes
ChunEon Park [Wed, 7 Mar 2012 08:45:49 +0000 (08:45 +0000)]
elementary/dayselector - trivial changes

SVN revision: 68903

12 years agoelementary/po - updated
ChunEon Park [Wed, 7 Mar 2012 08:44:54 +0000 (08:44 +0000)]
elementary/po - updated

SVN revision: 68902

12 years agoFix warnings.
Sanjeev BA [Wed, 7 Mar 2012 08:38:32 +0000 (08:38 +0000)]
Fix warnings.

Signed-off-by: Sanjeev BA <eflelev8@gmail.com>
SVN revision: 68901

12 years agowarn-- final
Carsten Haitzler [Wed, 7 Mar 2012 08:33:04 +0000 (08:33 +0000)]
warn-- final

SVN revision: 68900

12 years agowarn--
Carsten Haitzler [Wed, 7 Mar 2012 08:31:30 +0000 (08:31 +0000)]
warn--

SVN revision: 68899

12 years agoRefactor genlist and deprecate top/middle item_show() API.
Sanjeev BA [Wed, 7 Mar 2012 08:29:32 +0000 (08:29 +0000)]
Refactor genlist and deprecate top/middle item_show() API.

Signed-off-by: Sanjeev BA <eflelev8@gmail.com>
SVN revision: 68898

12 years agoMerge bring_in, top_bring_in and middle_bring_in into bring_in with ELM_GENLIST_ITEM_...
Sanjeev BA [Wed, 7 Mar 2012 08:29:28 +0000 (08:29 +0000)]
Merge bring_in, top_bring_in and middle_bring_in into bring_in with ELM_GENLIST_ITEM_SCROLLTO_*.

Signed-off-by: Sanjeev BA <eflelev8@gmail.com>
SVN revision: 68897

12 years agowarn--
Carsten Haitzler [Wed, 7 Mar 2012 08:27:10 +0000 (08:27 +0000)]
warn--

SVN revision: 68896

12 years agowarn--
Carsten Haitzler [Wed, 7 Mar 2012 08:22:34 +0000 (08:22 +0000)]
warn--

SVN revision: 68895

12 years agowarn--
Carsten Haitzler [Wed, 7 Mar 2012 08:21:20 +0000 (08:21 +0000)]
warn--

SVN revision: 68894

12 years agowarn--
Carsten Haitzler [Wed, 7 Mar 2012 08:19:55 +0000 (08:19 +0000)]
warn--

SVN revision: 68893

12 years agowarn--
Carsten Haitzler [Wed, 7 Mar 2012 08:13:06 +0000 (08:13 +0000)]
warn--

SVN revision: 68892

12 years agowarn--
Carsten Haitzler [Wed, 7 Mar 2012 08:11:00 +0000 (08:11 +0000)]
warn--

SVN revision: 68891

12 years agowarn--
Carsten Haitzler [Wed, 7 Mar 2012 08:08:48 +0000 (08:08 +0000)]
warn--

SVN revision: 68890

12 years agomore warn--
Carsten Haitzler [Wed, 7 Mar 2012 08:05:42 +0000 (08:05 +0000)]
more warn--

SVN revision: 68889

12 years agowarn--
Carsten Haitzler [Wed, 7 Mar 2012 08:01:52 +0000 (08:01 +0000)]
warn--

SVN revision: 68888

12 years agoshadow warn--
Carsten Haitzler [Wed, 7 Mar 2012 07:59:51 +0000 (07:59 +0000)]
shadow warn--

SVN revision: 68887

12 years agocomment why locks removed.
Carsten Haitzler [Wed, 7 Mar 2012 07:40:02 +0000 (07:40 +0000)]
comment why locks removed.

SVN revision: 68886

12 years agostore docs. done. also spotted lock bug waiting to happen. fix :)
Carsten Haitzler [Wed, 7 Mar 2012 07:11:55 +0000 (07:11 +0000)]
store docs. done. also spotted lock bug waiting to happen. fix :)

SVN revision: 68884

12 years agoelm elm_getting_started.h: Fixed typo. Patch by Jérôme Pinot <ngc891@gmail.com>.
Daniel Juyung Seo [Wed, 7 Mar 2012 07:05:22 +0000 (07:05 +0000)]
elm elm_getting_started.h: Fixed typo. Patch by Jérôme Pinot <ngc891@gmail.com>.

> Small typo:
>
>
> Index: src/lib/elm_getting_started.h
> ===================================================================
> --- src/lib/elm_getting_started.h       (revision 68874)
> +++ src/lib/elm_getting_started.h       (working copy)
> @@ -79,7 +79,7 @@
>  * specify a different prefix with configure:
>  *
>  * @verbatim
> - * ./confiugre --prefix=$HOME/mysoftware
> + * ./configure --prefix=$HOME/mysoftware
>  * @endverbatim
>  *
>  * Also remember that autotools buys you some useful commands like:
>

SVN revision: 68883

12 years agoelm multibuttonentry: Changed smart callback name. Discussed with multibuttonentry...
Daniel Juyung Seo [Wed, 7 Mar 2012 07:00:56 +0000 (07:00 +0000)]
elm multibuttonentry: Changed smart callback name. Discussed with multibuttonentry contributor. 'shrink,state,changed' -> 'expand,state,changed'.

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

12 years agoelm: fixed build break. sorry.
Daniel Juyung Seo [Wed, 7 Mar 2012 06:54:17 +0000 (06:54 +0000)]
elm: fixed build break. sorry.

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

12 years agoelm: Revised image/icon. 'disable' -> 'disabled'
Daniel Juyung Seo [Wed, 7 Mar 2012 06:29:12 +0000 (06:29 +0000)]
elm: Revised image/icon. 'disable' -> 'disabled'

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

12 years agoelm image: Added elm_image_preload_disabled_set(). Patch by Shinwoo Kim.
Daniel Juyung Seo [Wed, 7 Mar 2012 06:26:20 +0000 (06:26 +0000)]
elm image: Added elm_image_preload_disabled_set(). Patch by Shinwoo Kim.

On Wed, Mar 7, 2012 at 12:21 PM, cnook <kimcinoo@gmail.com> wrote:
> Dear All, Hello.
>
> There was no API for preload cancel. simple
>
> Sincerely,
> Shinwoo Kim.

SVN revision: 68879

12 years agoadd todo for elc_multibuttonentry.
Sanjeev BA [Wed, 7 Mar 2012 06:20:18 +0000 (06:20 +0000)]
add todo for elc_multibuttonentry.

Signed-off-by: Sanjeev BA <eflelev8@gmail.com>
SVN revision: 68878

12 years agoelm: Use lower case for xxx documentation to distinguish this from XXX(fixme)
Daniel Juyung Seo [Wed, 7 Mar 2012 06:14:25 +0000 (06:14 +0000)]
elm: Use lower case for xxx documentation to distinguish this from XXX(fixme)

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

12 years agoelementray/index - some test code(should not be commited yet) reverted
ChunEon Park [Wed, 7 Mar 2012 06:08:31 +0000 (06:08 +0000)]
elementray/index - some test code(should not be commited yet) reverted

SVN revision: 68876

12 years agoelementary/index - Re: [E-devel] [Patch][elementary_test] test_index
cnook [Wed, 7 Mar 2012 06:05:43 +0000 (06:05 +0000)]
elementary/index -  Re: [E-devel] [Patch][elementary_test] test_index

Dear All, Hello.

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

Sincerely,

Shinwoo Kim.

Signed-Off-By: cnook <kimcinoo@gmail.com>
SVN revision: 68875

12 years agoelementary/ctxpopup - one more API elm_ctxpopup_dismiss
ChunEon Park [Wed, 7 Mar 2012 05:58:38 +0000 (05:58 +0000)]
elementary/ctxpopup - one more API elm_ctxpopup_dismiss

requested by discomfitor

SVN revision: 68874

12 years agoelm multibuttonentry: Updated document. I know this sucks this widget is wrongly...
Daniel Juyung Seo [Wed, 7 Mar 2012 05:49:13 +0000 (05:49 +0000)]
elm multibuttonentry: Updated document. I know this sucks this widget is wrongly designed.

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

12 years agoelm Elementary.h.in: image and hover are reviewed by woohyun.
Daniel Juyung Seo [Wed, 7 Mar 2012 05:31:02 +0000 (05:31 +0000)]
elm Elementary.h.in: image and hover are reviewed by woohyun.

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

12 years agoelm Elementary.h.in: Multibuttonentry was reviewed.
Daniel Juyung Seo [Wed, 7 Mar 2012 05:11:54 +0000 (05:11 +0000)]
elm Elementary.h.in: Multibuttonentry was reviewed.

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

12 years agoelementary/dayselector - oooops crazy hermet
ChunEon Park [Wed, 7 Mar 2012 05:09:36 +0000 (05:09 +0000)]
elementary/dayselector - oooops crazy hermet

I missed to add files

SVN revision: 68870

12 years agoelementary/check - update doc
ChunEon Park [Wed, 7 Mar 2012 05:01:15 +0000 (05:01 +0000)]
elementary/check - update doc

SVN revision: 68869

12 years agoelementary/dayselector - New widget Elc_dayselector
ChunEon Park [Wed, 7 Mar 2012 04:57:03 +0000 (04:57 +0000)]
elementary/dayselector - New widget Elc_dayselector

Hi Raster,
Please find the modified patch after the suggested changes.
[ APIs are provided for setting week_start, weekend_start & weekend_length.Default values are fetched
from elm_config instead of edc styles.]
Please review the patch and push it to svn.
Thanks,
Sumanth

Signed-Off-By: Sumanth Krishna Mannam(sumanth.m@samsung.com)
SVN revision: 68868

12 years agoelementary/index - + 1 api elm_index_item_selected_set
ChunEon Park [Wed, 7 Mar 2012 04:39:06 +0000 (04:39 +0000)]
elementary/index - + 1 api elm_index_item_selected_set

need compensation

SVN revision: 68867

12 years agoFix elm_multibuttonentry API to have callbacks. For now we only have the API format...
Sanjeev BA [Wed, 7 Mar 2012 02:57:36 +0000 (02:57 +0000)]
Fix elm_multibuttonentry API to have callbacks. For now we only have the API format fixed. This code needs lot more refactoring after discussing with the widget author. So, we will address the implementation later.

Signed-off-by: Sanjeev BA <eflelev8@gmail.com>
SVN revision: 68866

12 years agoelementary/menu - fixed a infinite loop bug. should be resized the sub menu item
ChunEon Park [Wed, 7 Mar 2012 02:20:58 +0000 (02:20 +0000)]
elementary/menu - fixed a infinite loop bug. should be resized the sub menu item

thanks bluezery for reporting.

SVN revision: 68865

12 years agoElm_Calendar: fix function pointer as arg
Bruno Dilly [Wed, 7 Mar 2012 01:02:21 +0000 (01:02 +0000)]
Elm_Calendar: fix function pointer as arg

Spotted by Michael Blumenkrantz

SVN revision: 68864

12 years agoElm_Web: avoid deprecated elm_notify_repeat_events_set
Bruno Dilly [Wed, 7 Mar 2012 00:37:41 +0000 (00:37 +0000)]
Elm_Web: avoid deprecated elm_notify_repeat_events_set

SVN revision: 68863

12 years agoadd -Wshadow to svn compile flags
Mike Blumenkrantz [Wed, 7 Mar 2012 00:23:57 +0000 (00:23 +0000)]
add -Wshadow to svn compile flags

SVN revision: 68861

12 years agouse typedef function arg
Mike Blumenkrantz [Wed, 7 Mar 2012 00:12:36 +0000 (00:12 +0000)]
use typedef function arg

SVN revision: 68860

12 years agoelementary/elm_photocam: change api name and add 'do_gesture' variable
Mikael SANS [Tue, 6 Mar 2012 23:56:02 +0000 (23:56 +0000)]
elementary/elm_photocam: change api name and add 'do_gesture' variable

SVN revision: 68859

12 years ago[Elm] Since we're talking 'bout file_set()s, let's be broader.
Gustavo Lima Chaves [Tue, 6 Mar 2012 22:51:40 +0000 (22:51 +0000)]
[Elm] Since we're talking 'bout file_set()s, let's be broader.

SVN revision: 68857

12 years ago[Elm] Ok, since we don't have time to address all functions, just
Gustavo Lima Chaves [Tue, 6 Mar 2012 22:35:27 +0000 (22:35 +0000)]
[Elm] Ok, since we don't have time to address all functions, just
return val. on the most critical one: file_set (on bg).

SVN revision: 68856

12 years ago[Elm] Now applying some more ret. values on bg.
Gustavo Lima Chaves [Tue, 6 Mar 2012 22:12:42 +0000 (22:12 +0000)]
[Elm] Now applying some more ret. values on bg.

Also bumping docs, as I had to fix them.

SVN revision: 68854

12 years ago[Elm] This is meant to be used on the future, as I said.
Gustavo Lima Chaves [Tue, 6 Mar 2012 21:56:32 +0000 (21:56 +0000)]
[Elm] This is meant to be used on the future, as I said.

SVN revision: 68853

12 years ago[Elm] Forgotten detail on refactor.
Gustavo Lima Chaves [Tue, 6 Mar 2012 21:46:47 +0000 (21:46 +0000)]
[Elm] Forgotten detail on refactor.

SVN revision: 68850

12 years ago[Elm] More future-proofness on elm layout: returning values on methods.
Gustavo Lima Chaves [Tue, 6 Mar 2012 20:25:29 +0000 (20:25 +0000)]
[Elm] More future-proofness on elm layout: returning values on methods.

There were others with boolean returns already, let's planify that.

SVN revision: 68848

12 years ago[Elm] More on elm error codes on theming.
Gustavo Lima Chaves [Tue, 6 Mar 2012 19:06:02 +0000 (19:06 +0000)]
[Elm] More on elm error codes on theming.

SVN revision: 68845

12 years ago[Elm] Just being future-proof on some methods: error val on return.
Gustavo Lima Chaves [Tue, 6 Mar 2012 18:39:53 +0000 (18:39 +0000)]
[Elm] Just being future-proof on some methods: error val on return.

SVN revision: 68844

12 years agofix changed object_tree_focus api to make sense
Mike Blumenkrantz [Tue, 6 Mar 2012 17:57:20 +0000 (17:57 +0000)]
fix changed object_tree_focus api to make sense

SVN revision: 68843

12 years agoDon't look for translations on removed files
Iván Briano [Tue, 6 Mar 2012 17:35:29 +0000 (17:35 +0000)]
Don't look for translations on removed files

SVN revision: 68842

12 years agomodify removed function list
Jiyoun Park [Tue, 6 Mar 2012 15:52:49 +0000 (15:52 +0000)]
modify removed function list

SVN revision: 68841

12 years agoRemove comments.
Sanjeev BA [Tue, 6 Mar 2012 15:18:05 +0000 (15:18 +0000)]
Remove comments.

Signed-off-by: Sanjeev BA <iamsanjeev@gmail.com>
SVN revision: 68840

12 years agoAdd selected item getter and setter API. Getter to be implemented.
Sanjeev BA [Tue, 6 Mar 2012 15:18:02 +0000 (15:18 +0000)]
Add selected item getter and setter API. Getter to be implemented.

Signed-off-by: Sanjeev BA <iamsanjeev@gmail.com>
SVN revision: 68839

12 years agoRename callback function.
Sanjeev BA [Tue, 6 Mar 2012 15:17:57 +0000 (15:17 +0000)]
Rename callback function.

Signed-off-by: Sanjeev BA <iamsanjeev@gmail.com>
SVN revision: 68838

12 years agoremove deprecated function related with elm_genlist_item
Jiyoun Park [Tue, 6 Mar 2012 15:04:55 +0000 (15:04 +0000)]
remove deprecated function related with elm_genlist_item

SVN revision: 68837

12 years agoelementary: fix raster's bork.
Cedric BAIL [Tue, 6 Mar 2012 14:56:56 +0000 (14:56 +0000)]
elementary: fix raster's bork.

SVN revision: 68836

12 years agoelementary: let's install useful headers for c++
Lucas De Marchi [Tue, 6 Mar 2012 14:16:08 +0000 (14:16 +0000)]
elementary: let's install useful headers for c++

Unbreak build after r68696.

SVN revision: 68834

12 years agoremove deprecated code related with elm_frame_label_get/set
Jiyoun Park [Tue, 6 Mar 2012 14:14:57 +0000 (14:14 +0000)]
remove deprecated code related with elm_frame_label_get/set
and elm_frame_content_set

SVN revision: 68833

12 years agoadding store docs! not done yet
Carsten Haitzler [Tue, 6 Mar 2012 13:46:43 +0000 (13:46 +0000)]
adding store docs! not done yet

SVN revision: 68830

12 years agoremove deprecated funtion related elm_object_focus/unfocus/direction_go
Jiyoun Park [Tue, 6 Mar 2012 13:28:58 +0000 (13:28 +0000)]
remove deprecated funtion related elm_object_focus/unfocus/direction_go

SVN revision: 68828

12 years agoremove deprecated function related with elm_flipselector and elm_factory
Jiyoun Park [Tue, 6 Mar 2012 12:58:07 +0000 (12:58 +0000)]
remove deprecated function related with elm_flipselector and elm_factory

SVN revision: 68827

12 years agohmm i like the fact that entires take care of their own selection
Carsten Haitzler [Tue, 6 Mar 2012 12:42:18 +0000 (12:42 +0000)]
hmm i like the fact that entires take care of their own selection
fetching... but otherwise not changes to this func api-wise anyway. so
XXX remove :)

SVN revision: 68826

12 years agoactually collaps and autocollase are good - collapse/expand.
Carsten Haitzler [Tue, 6 Mar 2012 12:36:26 +0000 (12:36 +0000)]
actually collaps and autocollase are good - collapse/expand.
collapsing comments is what editors can do - much like frames. this is
good enough imho - so xxx-- :)

SVN revision: 68825

12 years agoelm toolbar: Formatting.
Daniel Juyung Seo [Tue, 6 Mar 2012 12:35:22 +0000 (12:35 +0000)]
elm toolbar: Formatting.

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

12 years agoadree with XXX -> rename focus funcs, deprecate old.
Carsten Haitzler [Tue, 6 Mar 2012 12:30:16 +0000 (12:30 +0000)]
adree with XXX -> rename focus funcs, deprecate old.

SVN revision: 68822

12 years agoelm toolbar.edc: Fixed formatting.
Daniel Juyung Seo [Tue, 6 Mar 2012 12:29:44 +0000 (12:29 +0000)]
elm toolbar.edc: Fixed formatting.

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

12 years agoelementary/index - more apis
ChunEon Park [Tue, 6 Mar 2012 12:28:52 +0000 (12:28 +0000)]
elementary/index - more apis

elm_index_horizontal_set/get

SVN revision: 68820

12 years agoaddress the XXX for elm entry with some docs - but its otherwise not
Carsten Haitzler [Tue, 6 Mar 2012 12:24:20 +0000 (12:24 +0000)]
address the XXX for elm entry with some docs - but its otherwise not
going to be addressed i think.

SVN revision: 68819

12 years agomark elm_config.h as ok.
Carsten Haitzler [Tue, 6 Mar 2012 12:20:46 +0000 (12:20 +0000)]
mark elm_config.h as ok.

SVN revision: 68818

12 years agook warn-- in multibuttonentry - getting bored of seeing it.
Carsten Haitzler [Tue, 6 Mar 2012 12:14:35 +0000 (12:14 +0000)]
ok warn-- in multibuttonentry - getting bored of seeing it.

SVN revision: 68817

12 years agowarn+bug--
Carsten Haitzler [Tue, 6 Mar 2012 12:08:11 +0000 (12:08 +0000)]
warn+bug--

SVN revision: 68816

12 years agoelm multibuttonentry: Reviewed smart callbacks.
Daniel Juyung Seo [Tue, 6 Mar 2012 12:06:52 +0000 (12:06 +0000)]
elm multibuttonentry: Reviewed smart callbacks.

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

12 years agoelm multibuttonentry: Revised code.
Daniel Juyung Seo [Tue, 6 Mar 2012 12:06:47 +0000 (12:06 +0000)]
elm multibuttonentry: Revised code.

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

12 years agowarn--
Carsten Haitzler [Tue, 6 Mar 2012 12:06:43 +0000 (12:06 +0000)]
warn--

SVN revision: 68813

12 years agoelm: Updated .gitignore.
Daniel Juyung Seo [Tue, 6 Mar 2012 12:06:38 +0000 (12:06 +0000)]
elm: Updated .gitignore.

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

12 years agomissed 1 config fetcher func.
Carsten Haitzler [Tue, 6 Mar 2012 12:05:00 +0000 (12:05 +0000)]
missed 1 config fetcher func.

SVN revision: 68811

12 years agorename a whole host of config-related functions to be elm_config_*
Carsten Haitzler [Tue, 6 Mar 2012 12:04:25 +0000 (12:04 +0000)]
rename a whole host of config-related functions to be elm_config_*
now. yes - no deprecation. no time to do that.

SVN revision: 68810