framework/uifw/elementary.git
13 years agoelementary/segment_control, panes, photocam, photo, win, toolbar, thumb, slideshow...
hermet [Fri, 22 Apr 2011 00:42:32 +0000 (00:42 +0000)]
elementary/segment_control, panes, photocam, photo, win, toolbar, thumb, slideshow, spinner - updated signal callbacks.

made them use signal callbacks description table.
removed never-called signals
updated doxygen.

git-svn-id: https://svn.enlightenment.org/svn/e/trunk/elementary@58816 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agoElementary default.edc/genlist: Enhance rotate mode animation.
seoz [Thu, 21 Apr 2011 16:38:26 +0000 (16:38 +0000)]
Elementary default.edc/genlist: Enhance rotate mode animation.

git-svn-id: https://svn.enlightenment.org/svn/e/trunk/elementary@58808 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agoelementary / menu, list, index, pager - modified to use signal callback table.
hermet [Thu, 21 Apr 2011 15:57:03 +0000 (15:57 +0000)]
elementary / menu, list, index, pager - modified to use signal callback table.

git-svn-id: https://svn.enlightenment.org/svn/e/trunk/elementary@58807 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agoElementary po: Updated po files.
seoz [Thu, 21 Apr 2011 12:22:07 +0000 (12:22 +0000)]
Elementary po: Updated po files.

git-svn-id: https://svn.enlightenment.org/svn/e/trunk/elementary@58796 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agoElementary util: Fix possible invalid read in _elm_util_mkup_to_text.
tasn [Thu, 21 Apr 2011 12:09:43 +0000 (12:09 +0000)]
Elementary util: Fix possible invalid read in _elm_util_mkup_to_text.

Patch by WooHyun Jung.

git-svn-id: https://svn.enlightenment.org/svn/e/trunk/elementary@58795 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agoElementary genlist: Removed unnecesssary code.
seoz [Thu, 21 Apr 2011 12:07:31 +0000 (12:07 +0000)]
Elementary genlist: Removed unnecesssary code.

git-svn-id: https://svn.enlightenment.org/svn/e/trunk/elementary@58794 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agoElementary genlist: Refactoring for structure packing.
seoz [Thu, 21 Apr 2011 12:05:02 +0000 (12:05 +0000)]
Elementary genlist: Refactoring for structure packing.

git-svn-id: https://svn.enlightenment.org/svn/e/trunk/elementary@58793 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agoElementary genlist: Added genlist mode feature.
seoz [Thu, 21 Apr 2011 11:47:36 +0000 (11:47 +0000)]
Elementary genlist: Added genlist mode feature.

I introduce a new concept to genlist.
I named it "genlist mode" after I discussed it with raster.
Using this feature, one can activate/deactivate any mode(effect) to an item.
The mode is defined in genlist item edc.

You can watch a sample video on youtube.
http://www.youtube.com/watch?v=ZPbwpzwwiS8
I created two sample mode: Slide and Rotate.

[Feature Description]
 - One can activate a specific mode to an item.
 - One item is activated at one time while others are deactivated.
 - Genlist handles deactivating other items when one item is activated.
 - There are two different view: before activated, after activated.
 - Genlist creates the second view when the first view is activated. Usually the first view is animated.
 - Genlist destroys the second view when the item finishes deactivating.
 - Creating/Destroying the second view on the fly gives performance enhancement because there is no reason to hold all objects in two views all the time.
 - Mode is defined in genlist edc so one can easily add it more.
 - Mode edc style is separated from normal genlist styles. One can combine any genlist style with mode edc style.

[API]
 - EAPI void elm_genlist_item_mode_set(Elm_Genlist_Item *it, const char *mode_type, Eina_Bool mode_set) EINA_ARG_NONNULL(1, 2);
   Activate/Deactivate a mode to an item.
 - EAPI const char *elm_genlist_mode_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
   Get activated mode name.
 - EAPI const Elm_Genlist_Item *elm_genlist_mode_item_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
   Get activated item.

[Structure]
 - Elm_Genlist_Item
   Added const char *mode_item_style;

[Usage]
 - Set mode style name to genlist item class.
   itc.mode_item_style = "mode";
 - Activated mode to an item whenever you want.
   elm_genlist_item_mode_set(it, "slide", EINA_TRUE);

git-svn-id: https://svn.enlightenment.org/svn/e/trunk/elementary@58791 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years ago- add rotate feature
gouache [Thu, 21 Apr 2011 08:55:02 +0000 (08:55 +0000)]
- add rotate feature
- pinch zoom improvement

git-svn-id: https://svn.enlightenment.org/svn/e/trunk/elementary@58784 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agoElementary test_actionslider.c: Fixed wrong variable names.
seoz [Wed, 20 Apr 2011 17:20:15 +0000 (17:20 +0000)]
Elementary test_actionslider.c: Fixed wrong variable names.

Magnet slider(ms) is an old name of actionslider. So I changed ms to as.

git-svn-id: https://svn.enlightenment.org/svn/e/trunk/elementary@58764 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agoElementary: Removed trailing whitespaces.
seoz [Wed, 20 Apr 2011 14:16:51 +0000 (14:16 +0000)]
Elementary: Removed trailing whitespaces.

git-svn-id: https://svn.enlightenment.org/svn/e/trunk/elementary@58754 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agoelementary: only parse mail file and prevent segv.
cedric [Tue, 19 Apr 2011 16:59:23 +0000 (16:59 +0000)]
elementary: only parse mail file and prevent segv.

git-svn-id: https://svn.enlightenment.org/svn/e/trunk/elementary@58733 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agoelementary: fix scale on genlist.
cedric [Tue, 19 Apr 2011 13:40:25 +0000 (13:40 +0000)]
elementary: fix scale on genlist.

git-svn-id: https://svn.enlightenment.org/svn/e/trunk/elementary@58731 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agoElementary conform: Fixing indentation, coding guideline. Patch by
seoz [Tue, 19 Apr 2011 07:31:59 +0000 (07:31 +0000)]
Elementary conform: Fixing indentation, coding guideline. Patch by
Prince <prince.dubey@samsung.com>

git-svn-id: https://svn.enlightenment.org/svn/e/trunk/elementary@58730 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agofix window posotioning when inlined
raster [Tue, 19 Apr 2011 01:53:19 +0000 (01:53 +0000)]
fix window posotioning when inlined

git-svn-id: https://svn.enlightenment.org/svn/e/trunk/elementary@58722 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agoElementary gengrid: Fixed a warning.
seoz [Tue, 19 Apr 2011 00:58:39 +0000 (00:58 +0000)]
Elementary gengrid: Fixed a warning.

git-svn-id: https://svn.enlightenment.org/svn/e/trunk/elementary@58721 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agoelementary: add page relative, item size and horizontal controls to external gengrid
yoz [Mon, 18 Apr 2011 10:59:45 +0000 (10:59 +0000)]
elementary: add page relative, item size and horizontal controls to external gengrid

git-svn-id: https://svn.enlightenment.org/svn/e/trunk/elementary@58706 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agoelementary: add page_relative and horizontal getters to gengrid
yoz [Mon, 18 Apr 2011 10:54:25 +0000 (10:54 +0000)]
elementary: add page_relative and horizontal getters to gengrid

git-svn-id: https://svn.enlightenment.org/svn/e/trunk/elementary@58705 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agoElementary map: Fixed doxygen, removed trailing whitespaces.
seoz [Mon, 18 Apr 2011 07:37:49 +0000 (07:37 +0000)]
Elementary map: Fixed doxygen, removed trailing whitespaces.

git-svn-id: https://svn.enlightenment.org/svn/e/trunk/elementary@58704 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agoThis is a patch for elm_map name(address) feature.
gouache [Mon, 18 Apr 2011 06:42:47 +0000 (06:42 +0000)]
This is a patch for elm_map name(address) feature.
I added some APIs for name to elm_map.c and added some test code to test_map.c

I used nominatim OSM service. (http://http://nominatim.openstreetmap.org/)
as i felt, it's response time was very good to use.

git-svn-id: https://svn.enlightenment.org/svn/e/trunk/elementary@58703 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agoelementary / image, icon - added missing lines about signal callback table.
hermet [Fri, 15 Apr 2011 17:08:04 +0000 (17:08 +0000)]
elementary / image, icon - added missing lines about signal callback table.

git-svn-id: https://svn.enlightenment.org/svn/e/trunk/elementary@58694 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agoelementary/image, icon - updated signal callback table
hermet [Fri, 15 Apr 2011 17:05:34 +0000 (17:05 +0000)]
elementary/image, icon - updated signal callback table

git-svn-id: https://svn.enlightenment.org/svn/e/trunk/elementary@58693 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agoelementary / actionslider, calendar, colorselector, bubble, hoversel, clock
hermet [Fri, 15 Apr 2011 17:01:39 +0000 (17:01 +0000)]
elementary / actionslider, calendar, colorselector, bubble, hoversel, clock
- updated them for using common signal callback table.

git-svn-id: https://svn.enlightenment.org/svn/e/trunk/elementary@58692 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agoelementary / transit - modified minor logic error
hermet [Fri, 15 Apr 2011 17:00:37 +0000 (17:00 +0000)]
elementary / transit - modified minor logic error

git-svn-id: https://svn.enlightenment.org/svn/e/trunk/elementary@58691 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agoelementary / transit - updated internal minors
hermet [Fri, 15 Apr 2011 16:32:08 +0000 (16:32 +0000)]
elementary / transit - updated internal minors

git-svn-id: https://svn.enlightenment.org/svn/e/trunk/elementary@58690 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agoElementary bin: Use EINA_TRUE/EINA_FALSE for Eina_Bool parameters.
seoz [Fri, 15 Apr 2011 11:44:05 +0000 (11:44 +0000)]
Elementary bin: Use EINA_TRUE/EINA_FALSE for Eina_Bool parameters.

git-svn-id: https://svn.enlightenment.org/svn/e/trunk/elementary@58688 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agodebug.. off.
raster [Fri, 15 Apr 2011 11:20:41 +0000 (11:20 +0000)]
debug.. off.

git-svn-id: https://svn.enlightenment.org/svn/e/trunk/elementary@58687 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agofix up copy & paste with inlined win and a few other cnp nigglies.
raster [Fri, 15 Apr 2011 11:18:30 +0000 (11:18 +0000)]
fix up copy & paste with inlined win and a few other cnp nigglies.
also no unimplemented win times for now.

git-svn-id: https://svn.enlightenment.org/svn/e/trunk/elementary@58686 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agoefl: don't track cache file.
cedric [Thu, 14 Apr 2011 20:30:17 +0000 (20:30 +0000)]
efl: don't track cache file.

git-svn-id: https://svn.enlightenment.org/svn/e/trunk/elementary@58672 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agoautogen: add forgotten autopoint.
cedric [Thu, 14 Apr 2011 19:26:15 +0000 (19:26 +0000)]
autogen: add forgotten autopoint.

git-svn-id: https://svn.enlightenment.org/svn/e/trunk/elementary@58671 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agoautogen: unobrk things.
cedric [Thu, 14 Apr 2011 14:51:36 +0000 (14:51 +0000)]
autogen: unobrk things.

git-svn-id: https://svn.enlightenment.org/svn/e/trunk/elementary@58668 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agoautogen: improve detection of parameter change.
cedric [Thu, 14 Apr 2011 14:03:46 +0000 (14:03 +0000)]
autogen: improve detection of parameter change.

git-svn-id: https://svn.enlightenment.org/svn/e/trunk/elementary@58667 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agocopy from inlined wins works. copy to.. doesn't.
raster [Thu, 14 Apr 2011 13:51:12 +0000 (13:51 +0000)]
copy from inlined wins works. copy to.. doesn't.

git-svn-id: https://svn.enlightenment.org/svn/e/trunk/elementary@58666 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agokbd input/fcosu works on inlined wins. wootsors
raster [Thu, 14 Apr 2011 12:47:16 +0000 (12:47 +0000)]
kbd input/fcosu works on inlined wins. wootsors

git-svn-id: https://svn.enlightenment.org/svn/e/trunk/elementary@58664 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agoElementary: Removed trailing white spaces.
seoz [Thu, 14 Apr 2011 11:43:43 +0000 (11:43 +0000)]
Elementary: Removed trailing white spaces.

git-svn-id: https://svn.enlightenment.org/svn/e/trunk/elementary@58661 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agoElementary genlist: Do not call "realized"/"unrealized" smart
seoz [Thu, 14 Apr 2011 11:41:07 +0000 (11:41 +0000)]
Elementary genlist: Do not call "realized"/"unrealized" smart
callbacks if those are internal size calculation purpose.

git-svn-id: https://svn.enlightenment.org/svn/e/trunk/elementary@58660 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agomm.... new widget options/modes for win... u can put a window..
raster [Thu, 14 Apr 2011 10:48:43 +0000 (10:48 +0000)]
mm.... new widget options/modes for win... u can put a window..
INLINED in another window. :) it's an image object. have fun!

git-svn-id: https://svn.enlightenment.org/svn/e/trunk/elementary@58657 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agoElementary genlist: Avoid bringing/showing items in a queue.
seoz [Wed, 13 Apr 2011 01:48:11 +0000 (01:48 +0000)]
Elementary genlist: Avoid bringing/showing items in a queue.

Items in a queue were not added to blocks yet. So it's impossible to
calculate its position.

git-svn-id: https://svn.enlightenment.org/svn/e/trunk/elementary@58612 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agoignore++
englebass [Tue, 12 Apr 2011 22:47:12 +0000 (22:47 +0000)]
ignore++

git-svn-id: https://svn.enlightenment.org/svn/e/trunk/elementary@58609 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agoElementary gengrid: Fixed doxygen typo.
seoz [Tue, 12 Apr 2011 17:32:36 +0000 (17:32 +0000)]
Elementary gengrid: Fixed doxygen typo.

git-svn-id: https://svn.enlightenment.org/svn/e/trunk/elementary@58597 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agoElementary: Applied "clicked" signal name change for gengrid/list/genlist.
seoz [Tue, 12 Apr 2011 17:29:59 +0000 (17:29 +0000)]
Elementary: Applied "clicked" signal name change for gengrid/list/genlist.

git-svn-id: https://svn.enlightenment.org/svn/e/trunk/elementary@58596 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agoElementary list: Fixed doxygen for "clicked,double" callback.
seoz [Tue, 12 Apr 2011 14:16:41 +0000 (14:16 +0000)]
Elementary list: Fixed doxygen for "clicked,double" callback.

git-svn-id: https://svn.enlightenment.org/svn/e/trunk/elementary@58595 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agoelementary / transit - fixed a incorrect logic
hermet [Tue, 12 Apr 2011 11:31:03 +0000 (11:31 +0000)]
elementary / transit - fixed a incorrect logic

prevent user from calling elm_transit_del in the user del cb.

git-svn-id: https://svn.enlightenment.org/svn/e/trunk/elementary@58591 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agoelementary/transit - fixed typo
hermet [Tue, 12 Apr 2011 11:05:52 +0000 (11:05 +0000)]
elementary/transit - fixed typo

git-svn-id: https://svn.enlightenment.org/svn/e/trunk/elementary@58589 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agoelementary/transit - updated test_transit for the chain transit
hermet [Tue, 12 Apr 2011 05:49:47 +0000 (05:49 +0000)]
elementary/transit - updated test_transit for the chain transit

git-svn-id: https://svn.enlightenment.org/svn/e/trunk/elementary@58576 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agoelementary/transit - added new APIs elm_trnasit_chain_transit_add , elm_transit_chain...
hermet [Tue, 12 Apr 2011 05:48:44 +0000 (05:48 +0000)]
elementary/transit - added new APIs elm_trnasit_chain_transit_add , elm_transit_chain_transits_get

git-svn-id: https://svn.enlightenment.org/svn/e/trunk/elementary@58575 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agoelementary / widget - removed semicolon
hermet [Mon, 11 Apr 2011 15:56:36 +0000 (15:56 +0000)]
elementary / widget - removed semicolon

git-svn-id: https://svn.enlightenment.org/svn/e/trunk/elementary@58556 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agoELM: Fix 'whitespace following trailing backslash'
devilhorns [Fri, 8 Apr 2011 23:14:52 +0000 (23:14 +0000)]
ELM: Fix 'whitespace following trailing backslash'

git-svn-id: https://svn.enlightenment.org/svn/e/trunk/elementary@58500 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agoElementary actionslider: Fixed doxygen.
seoz [Fri, 8 Apr 2011 16:56:09 +0000 (16:56 +0000)]
Elementary actionslider: Fixed doxygen.

git-svn-id: https://svn.enlightenment.org/svn/e/trunk/elementary@58494 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agoElementary src/lib: Removed all trailing whitespaces.
seoz [Fri, 8 Apr 2011 14:36:29 +0000 (14:36 +0000)]
Elementary src/lib: Removed all trailing whitespaces.

git-svn-id: https://svn.enlightenment.org/svn/e/trunk/elementary@58492 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agoElementary src/bin: Removed all trailing whitespaces.
seoz [Fri, 8 Apr 2011 14:30:48 +0000 (14:30 +0000)]
Elementary src/bin: Removed all trailing whitespaces.

git-svn-id: https://svn.enlightenment.org/svn/e/trunk/elementary@58491 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agoElementary map: Fixed map bug and added null check routine.
seoz [Fri, 8 Apr 2011 12:13:29 +0000 (12:13 +0000)]
Elementary map: Fixed map bug and added null check routine.

git-svn-id: https://svn.enlightenment.org/svn/e/trunk/elementary@58489 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agospank! wanings--
raster [Fri, 8 Apr 2011 08:42:32 +0000 (08:42 +0000)]
spank! wanings--

git-svn-id: https://svn.enlightenment.org/svn/e/trunk/elementary@58483 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agoquiet edje_cc mode - honor V param.
raster [Fri, 8 Apr 2011 08:20:43 +0000 (08:20 +0000)]
quiet edje_cc mode - honor V param.

git-svn-id: https://svn.enlightenment.org/svn/e/trunk/elementary@58481 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agoElementary map: Route patch. Patch by Sangho Park <gouache95@gmail.com>
seoz [Fri, 8 Apr 2011 06:14:10 +0000 (06:14 +0000)]
Elementary map: Route patch. Patch by Sangho Park <gouache95@gmail.com>

Mail from Sangho Park.
I added some APIs for route to elm_map.c
There are some route services provided by Open Street Map (yours, open
route service, monav...)
I just added 'yours' url callback and will add ors, monav.
And added some test code to test_map.c

git-svn-id: https://svn.enlightenment.org/svn/e/trunk/elementary@58474 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agowrn--
raster [Fri, 8 Apr 2011 05:53:37 +0000 (05:53 +0000)]
wrn--

git-svn-id: https://svn.enlightenment.org/svn/e/trunk/elementary@58470 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agowarn--
raster [Fri, 8 Apr 2011 05:52:13 +0000 (05:52 +0000)]
warn--

git-svn-id: https://svn.enlightenment.org/svn/e/trunk/elementary@58469 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agowarn--
raster [Fri, 8 Apr 2011 05:51:13 +0000 (05:51 +0000)]
warn--

git-svn-id: https://svn.enlightenment.org/svn/e/trunk/elementary@58468 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agoElementary elementary.dox.in: Sync with AUTHORS.
seoz [Thu, 7 Apr 2011 16:55:10 +0000 (16:55 +0000)]
Elementary elementary.dox.in: Sync with AUTHORS.

git-svn-id: https://svn.enlightenment.org/svn/e/trunk/elementary@58462 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agoElementary segment_control: Introduced new widget by Govindaraju and Prince.
seoz [Thu, 7 Apr 2011 16:44:54 +0000 (16:44 +0000)]
Elementary segment_control: Introduced new widget by Govindaraju and Prince.

Segment Control Widget is a horizontal control made of multiple segment items
together, each segment item is set to equal size, functioning similar to
discrete two state button. Only one segment item can be at selected state.

git-svn-id: https://svn.enlightenment.org/svn/e/trunk/elementary@58461 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agoElementary genlist: Removed unnecessary blank lines.
seoz [Thu, 7 Apr 2011 16:20:29 +0000 (16:20 +0000)]
Elementary genlist: Removed unnecessary blank lines.

git-svn-id: https://svn.enlightenment.org/svn/e/trunk/elementary@58459 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agoElementary genlist: Removed unnecessary 'const'.
seoz [Thu, 7 Apr 2011 16:16:01 +0000 (16:16 +0000)]
Elementary genlist: Removed unnecessary 'const'.

git-svn-id: https://svn.enlightenment.org/svn/e/trunk/elementary@58458 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agoElementary entry: Now really fix min size calculation.
tasn [Thu, 7 Apr 2011 08:47:18 +0000 (08:47 +0000)]
Elementary entry: Now really fix min size calculation.

Width shouldn't matter. (look at revision 58393 for more info).

git-svn-id: https://svn.enlightenment.org/svn/e/trunk/elementary@58410 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agoRevert "Elementary entry: No need to calc min size for a wrapping entry."
tasn [Thu, 7 Apr 2011 08:16:02 +0000 (08:16 +0000)]
Revert "Elementary entry: No need to calc min size for a wrapping entry."

This reverts commit 58393

Should fix min size height calculation.

git-svn-id: https://svn.enlightenment.org/svn/e/trunk/elementary@58408 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agoelementary/transit - added chain transit features.
hermet [Thu, 7 Apr 2011 05:34:11 +0000 (05:34 +0000)]
elementary/transit - added chain transit features.

git-svn-id: https://svn.enlightenment.org/svn/e/trunk/elementary@58406 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agoFrom: cnook <kimcinoo@gmail.com>
raster [Thu, 7 Apr 2011 04:54:55 +0000 (04:54 +0000)]
From: cnook <kimcinoo@gmail.com>
Subject: Re: [E-devel] [Patch] Display more than 3 items

This is Shinwoo Kim, learned that I could contribute to EFL! :)
I'm pleased to inform you that the patch for the "elm_diskselector".

Until now, the "elm_diskselector" only display 3 items at once,
if you accept this patch, the "elm_diskselector" can display more than 3
items.

For this feature, "elm_diskselector_display_item_num_set(Evas_Object *obj,
int num)" is added.
I would like to know more about your opinion about this feature. Thanks.

git-svn-id: https://svn.enlightenment.org/svn/e/trunk/elementary@58405 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agoFrom: Seunggyun Kim <sgyun.kim@samsung.com>
raster [Thu, 7 Apr 2011 04:35:08 +0000 (04:35 +0000)]
From: Seunggyun Kim <sgyun.kim@samsung.com>
Subject: [E-devel] [Patch] elm_genlist :
elm_genlist_realized_items_update api added

I added elm_genlist_realized_items_update api.

elm_genlist_item_update api already exists.
But If the application want to change all realized items using this api,
application always have to check genlist all realized items and call
elm_genlist_item_update api.

This routine is being used at many functions of application.

So I made elm_genlist_realized_items_update api.
This helps application to update easily all realized items at a time.

git-svn-id: https://svn.enlightenment.org/svn/e/trunk/elementary@58403 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agoElementary elm_genlist.c: Fixed formatting. Fits to ecrustify.
seoz [Thu, 7 Apr 2011 00:58:29 +0000 (00:58 +0000)]
Elementary elm_genlist.c: Fixed formatting. Fits to ecrustify.

git-svn-id: https://svn.enlightenment.org/svn/e/trunk/elementary@58401 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agoElementary entry: No need to calc min size for a wrapping entry.
tasn [Wed, 6 Apr 2011 15:27:52 +0000 (15:27 +0000)]
Elementary entry: No need to calc min size for a wrapping entry.

It's just useless and makes zero sense. No matter what we'll
get a useless output and it just slows everything down.
Should probably be added when it makes sense, but it will probably
need something like elm_label_wrap_width_set.

git-svn-id: https://svn.enlightenment.org/svn/e/trunk/elementary@58393 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agoelementary: allow to emit a signal to a genlist. Thanks to Mikael Sans
yoz [Wed, 6 Apr 2011 14:46:39 +0000 (14:46 +0000)]
elementary: allow to emit a signal to a genlist. Thanks to Mikael Sans

git-svn-id: https://svn.enlightenment.org/svn/e/trunk/elementary@58391 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agoelementary: correct the homepath on windows from vtorri
yoz [Wed, 6 Apr 2011 13:57:42 +0000 (13:57 +0000)]
elementary: correct the homepath on windows from vtorri

git-svn-id: https://svn.enlightenment.org/svn/e/trunk/elementary@58390 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agoElementary smart-scroller: Fixed scroller "jumping" in some cases.
tasn [Wed, 6 Apr 2011 07:51:26 +0000 (07:51 +0000)]
Elementary smart-scroller: Fixed scroller "jumping" in some cases.

In some cases, for example resizing the GenGrid test or just using
ephoto, the scroller would jump to the right before going to it's
proper direction. We should check if the position is below minimum
after we reduce the position, and not instead.

git-svn-id: https://svn.enlightenment.org/svn/e/trunk/elementary@58383 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agoElementary test_list.c: Fixed formatting.
seoz [Wed, 6 Apr 2011 01:10:19 +0000 (01:10 +0000)]
Elementary test_list.c: Fixed formatting.

Use ecrustify and remove trailing whitespaces.

git-svn-id: https://svn.enlightenment.org/svn/e/trunk/elementary@58369 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agoelementary / menu, gengrid, slider, separator, photocam, index, toggle
hermet [Tue, 5 Apr 2011 07:04:09 +0000 (07:04 +0000)]
elementary / menu, gengrid, slider, separator, photocam, index, toggle

updated signal callback list in the doxygen

git-svn-id: https://svn.enlightenment.org/svn/e/trunk/elementary@58347 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agoelementary/genlist - updated signal callback list in doxygen
hermet [Tue, 5 Apr 2011 06:01:28 +0000 (06:01 +0000)]
elementary/genlist - updated signal callback list in doxygen

git-svn-id: https://svn.enlightenment.org/svn/e/trunk/elementary@58346 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agoelementary / genlist - updated signal callback list in the doxygen
hermet [Tue, 5 Apr 2011 05:53:56 +0000 (05:53 +0000)]
elementary / genlist - updated signal callback list in the doxygen

git-svn-id: https://svn.enlightenment.org/svn/e/trunk/elementary@58345 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agoElementary / genlist - updated signal callback list
hermet [Tue, 5 Apr 2011 04:46:38 +0000 (04:46 +0000)]
Elementary / genlist - updated signal callback list

git-svn-id: https://svn.enlightenment.org/svn/e/trunk/elementary@58344 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agoElementary elm_genlist.c: Fixed genlist doxygen.
seoz [Tue, 5 Apr 2011 04:30:34 +0000 (04:30 +0000)]
Elementary elm_genlist.c: Fixed genlist doxygen.

git-svn-id: https://svn.enlightenment.org/svn/e/trunk/elementary@58343 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agoElementary / genlist, slider, radio, win toolbar, thumb, toggle, scroller, slideshow...
hermet [Tue, 5 Apr 2011 02:04:28 +0000 (02:04 +0000)]
Elementary / genlist, slider, radio, win toolbar, thumb, toggle, scroller, slideshow, spinner

updated signall callback list in each doxygen

git-svn-id: https://svn.enlightenment.org/svn/e/trunk/elementary@58342 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agoelementry / entry, menu, notify, list, gengrid, actionslider, image, icon, anchorview...
hermet [Mon, 4 Apr 2011 16:34:18 +0000 (16:34 +0000)]
elementry / entry, menu, notify, list, gengrid, actionslider, image, icon, anchorview, fileselector_button, calendar, photocam, anchorblock,
    button, map, colorselector, hover, photo, diskselector, index, bubble, pager, hoversel, check, scrolled_entry, clock, flipselector

    updated signal callback list in the  doxygen.

            should update genlist, progressbar ...

git-svn-id: https://svn.enlightenment.org/svn/e/trunk/elementary@58335 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agoelementray / transit - fixed typo
hermet [Mon, 4 Apr 2011 05:56:56 +0000 (05:56 +0000)]
elementray / transit - fixed typo

git-svn-id: https://svn.enlightenment.org/svn/e/trunk/elementary@58313 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agoElementary/transit - defined transit callback functions types. (Elm_Transit_Effect_Tr...
hermet [Mon, 4 Apr 2011 05:27:20 +0000 (05:27 +0000)]
Elementary/transit - defined transit callback functions types. (Elm_Transit_Effect_Transition_Cb, Elm_Transit_Effect_End_Cb)

git-svn-id: https://svn.enlightenment.org/svn/e/trunk/elementary@58312 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agoElementary/transit - void * -> Elm_Transit_Effect.
hermet [Mon, 4 Apr 2011 04:48:51 +0000 (04:48 +0000)]
Elementary/transit - void * -> Elm_Transit_Effect.
made the interface clear.

git-svn-id: https://svn.enlightenment.org/svn/e/trunk/elementary@58311 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agoelementary / transit - modified internal namings .
hermet [Mon, 4 Apr 2011 01:54:55 +0000 (01:54 +0000)]
elementary / transit - modified internal namings .

Elm_Transit_Effect -> Elm_Transit_Effect_Module

git-svn-id: https://svn.enlightenment.org/svn/e/trunk/elementary@58310 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agoelementary / ctxpopup - modified doxygen smart object signal callbacks
hermet [Sun, 3 Apr 2011 16:35:19 +0000 (16:35 +0000)]
elementary / ctxpopup - modified doxygen smart object signal callbacks

git-svn-id: https://svn.enlightenment.org/svn/e/trunk/elementary@58307 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agoelementary/flip - modified to use smart callbacks descriptions table
hermet [Sun, 3 Apr 2011 16:26:25 +0000 (16:26 +0000)]
elementary/flip - modified to use smart callbacks descriptions table

git-svn-id: https://svn.enlightenment.org/svn/e/trunk/elementary@58306 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agoElementary elm_gengrid.c: Fixed doxygen.
seoz [Sun, 3 Apr 2011 16:06:06 +0000 (16:06 +0000)]
Elementary elm_gengrid.c: Fixed doxygen.

git-svn-id: https://svn.enlightenment.org/svn/e/trunk/elementary@58303 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agoelementary: fix compilation
billiob [Sun, 3 Apr 2011 11:55:56 +0000 (11:55 +0000)]
elementary: fix compilation

git-svn-id: https://svn.enlightenment.org/svn/e/trunk/elementary@58298 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agoElementary: Fixed wrong smart callback signal name. clicked -> clicked,double
seoz [Sun, 3 Apr 2011 09:36:47 +0000 (09:36 +0000)]
Elementary: Fixed wrong smart callback signal name. clicked -> clicked,double

Unified double-click smart callback signal name to "clicked,double".
Wrong signal name "clicked" is still there.
But this will be removed soon after fixing all codes in trunk.

git-svn-id: https://svn.enlightenment.org/svn/e/trunk/elementary@58293 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agoElementary elm_widget.c: Fix formatting.
seoz [Sun, 3 Apr 2011 06:43:17 +0000 (06:43 +0000)]
Elementary elm_widget.c: Fix formatting.

Used ecrustify then fixed manually. Ecrustify still has wrong formatting.

git-svn-id: https://svn.enlightenment.org/svn/e/trunk/elementary@58285 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agoElementary elm_widget.c: Removed ; after INTERNAL_ENTRY.
seoz [Sun, 3 Apr 2011 05:48:00 +0000 (05:48 +0000)]
Elementary elm_widget.c: Removed ; after INTERNAL_ENTRY.

git-svn-id: https://svn.enlightenment.org/svn/e/trunk/elementary@58284 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agoElementary: Use pre-defined type Edje_Signal_Cb instead of describing all of its...
seoz [Sun, 3 Apr 2011 05:32:17 +0000 (05:32 +0000)]
Elementary: Use pre-defined type Edje_Signal_Cb instead of describing all of its parameters.

git-svn-id: https://svn.enlightenment.org/svn/e/trunk/elementary@58283 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agoelementary / entry, list, scroller, fileselector_button, config, photocam, map, pan...
hermet [Fri, 1 Apr 2011 19:08:56 +0000 (19:08 +0000)]
elementary / entry, list, scroller, fileselector_button, config, photocam, map, pan, bg, store, priv, pager, conform, box, clock, flipselector

fixed indentation, removed white spaces.

git-svn-id: https://svn.enlightenment.org/svn/e/trunk/elementary@58267 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agoElementary elm_genlist.c: Fixed formatting.
seoz [Fri, 1 Apr 2011 16:33:58 +0000 (16:33 +0000)]
Elementary elm_genlist.c: Fixed formatting.

Used ecrustify for formatting.

git-svn-id: https://svn.enlightenment.org/svn/e/trunk/elementary@58263 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agomore complete desktop entry mode support.
raster [Fri, 1 Apr 2011 13:35:39 +0000 (13:35 +0000)]
more complete desktop entry mode support.

git-svn-id: https://svn.enlightenment.org/svn/e/trunk/elementary@58259 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agostart a desktop entry mode. shift arrows start/mod selection. can just
raster [Fri, 1 Apr 2011 13:20:40 +0000 (13:20 +0000)]
start a desktop entry mode. shift arrows start/mod selection. can just
click and drag to select.

git-svn-id: https://svn.enlightenment.org/svn/e/trunk/elementary@58258 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agoright mouse pops up entry menu now too.
raster [Fri, 1 Apr 2011 12:10:24 +0000 (12:10 +0000)]
right mouse pops up entry menu now too.

git-svn-id: https://svn.enlightenment.org/svn/e/trunk/elementary@58255 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agoelementary - fileselecto, actionslider, anchorview, fileselector_button, anchorblock...
hermet [Fri, 1 Apr 2011 11:51:11 +0000 (11:51 +0000)]
elementary - fileselecto, actionslider, anchorview, fileselector_button, anchorblock, fileselector_entry, hoversel, scrolled_entry

git-svn-id: https://svn.enlightenment.org/svn/e/trunk/elementary@58254 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agoelementary / calendar, button, colorselector, bg, cnp_helper, bubble, check, box...
hermet [Fri, 1 Apr 2011 11:35:07 +0000 (11:35 +0000)]
elementary / calendar, button, colorselector, bg, cnp_helper, bubble, check, box, clock  - removed white spaces

git-svn-id: https://svn.enlightenment.org/svn/e/trunk/elementary@58253 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agoelementary - entry, genlist, gengrid, image, icon, hover, frame, diskselector, index...
hermet [Fri, 1 Apr 2011 11:32:33 +0000 (11:32 +0000)]
elementary - entry, genlist, gengrid, image, icon, hover, frame, diskselector, index, layout, label, conform, flip, flipselector - removed white spaces

git-svn-id: https://svn.enlightenment.org/svn/e/trunk/elementary@58252 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33