Commit Graph

2513 Commits

Author SHA1 Message Date
Carsten Haitzler 858a6567be elm config also do it. need to actually USe the prefix stuiff.. no
more package_data_dir use int he code.. needs to go.



SVN revision: 58864
2011-04-24 09:52:31 +00:00
Carsten Haitzler 6bb5c38ea6 and now actuallty start using and supporting per-app prefix finding.
SVN revision: 58863
2011-04-24 09:51:48 +00:00
Carsten Haitzler 1cd4e44b23 use new eina prefix fun
SVN revision: 58855
2011-04-24 08:18:00 +00:00
Cedric BAIL 90a70f1080 elementary: correctly fix scale on items.
SVN revision: 58831
2011-04-22 17:13:59 +00:00
Cedric BAIL 2ce921ba26 elementary: oops, merge mistake, only one assert header is needed.
SVN revision: 58830
2011-04-22 14:37:43 +00:00
Cedric BAIL b86180520d elementary: fix refactoring and assert.
SVN revision: 58828
2011-04-22 13:20:06 +00:00
Daniel Juyung Seo d49218d308 Elementary genlist: Fixed indentation.
Use space instead of tab.


SVN revision: 58827
2011-04-22 12:22:57 +00:00
Daniel Juyung Seo 929052b111 Elementary slideshow: Fixed warnings, fixed spacing and removed unnecessary blank lines.
SVN revision: 58826
2011-04-22 12:06:00 +00:00
Daniel Juyung Seo 71bc736a6f Elementary genlist: Fixed implicit declaration warning.
SVN revision: 58825
2011-04-22 11:54:29 +00:00
Cedric BAIL 97341eaa1f elementary: factorise code.
SVN revision: 58823
2011-04-22 09:56:49 +00:00
Cedric BAIL ac341c9687 elementary: elm_genlist now use edje signal for even/odd state.
NOTE: if you want to implement even/odd in your theme you know
need to listen to both signal :
	- elm,state,odd from elm
	- elm,state,even from elm
If you set data of "stacking_even" to "above" of you item group
it will raise the even object above the odd one (that's the default
behaviour).
You could also explicitly active/deactivate the stacking by setting
data of "stacking" to "no". Default is "yes".



SVN revision: 58822
2011-04-22 09:56:22 +00:00
Michael BOUCHAUD f58b34afea elementary: add the possibility to set the amount of cached items in a slideshow
SVN revision: 58821
2011-04-22 09:19:25 +00:00
Daniel Juyung Seo 7712efaf1b Elementary entry: Fixed indentation. Patch by Jihoon Kim
<jihoon48.kim@samsung.com>


SVN revision: 58819
2011-04-22 02:29:54 +00:00
ChunEon Park 628d558cde elementary/gengrid - made to use signal callback descriptions table.
SVN revision: 58817
2011-04-22 00:57:15 +00:00
ChunEon Park 9420b44918 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. 




SVN revision: 58816
2011-04-22 00:42:32 +00:00
Daniel Juyung Seo ed6949c732 Elementary default.edc/genlist: Enhance rotate mode animation.
SVN revision: 58808
2011-04-21 16:38:26 +00:00
ChunEon Park d45f0154cf elementary / menu, list, index, pager - modified to use signal callback table.
SVN revision: 58807
2011-04-21 15:57:03 +00:00
Daniel Juyung Seo 0ad8cd8913 Elementary po: Updated po files.
SVN revision: 58796
2011-04-21 12:22:07 +00:00
Tom Hacohen e4720e5643 Elementary util: Fix possible invalid read in _elm_util_mkup_to_text.
Patch by WooHyun Jung.

SVN revision: 58795
2011-04-21 12:09:43 +00:00
Daniel Juyung Seo 45507ae70f Elementary genlist: Removed unnecesssary code.
SVN revision: 58794
2011-04-21 12:07:31 +00:00
Daniel Juyung Seo 3edeab7cb8 Elementary genlist: Refactoring for structure packing.
SVN revision: 58793
2011-04-21 12:05:02 +00:00
Daniel Juyung Seo 5229aed40b 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);


SVN revision: 58791
2011-04-21 11:47:36 +00:00
Sangho Park 6bc4670615 - add rotate feature
- pinch zoom improvement


SVN revision: 58784
2011-04-21 08:55:02 +00:00
Daniel Juyung Seo a7a234a3e3 Elementary test_actionslider.c: Fixed wrong variable names.
Magnet slider(ms) is an old name of actionslider. So I changed ms to as.


SVN revision: 58764
2011-04-20 17:20:15 +00:00
Daniel Juyung Seo b1c1993845 Elementary: Removed trailing whitespaces.
SVN revision: 58754
2011-04-20 14:16:51 +00:00
Cedric BAIL 213f07730d elementary: only parse mail file and prevent segv.
SVN revision: 58733
2011-04-19 16:59:23 +00:00
Cedric BAIL b4dd37cceb elementary: fix scale on genlist.
SVN revision: 58731
2011-04-19 13:40:25 +00:00
Daniel Juyung Seo 95b2697f0f Elementary conform: Fixing indentation, coding guideline. Patch by
Prince <prince.dubey@samsung.com>


SVN revision: 58730
2011-04-19 07:31:59 +00:00
Carsten Haitzler 3a8ae11c9b fix window posotioning when inlined
SVN revision: 58722
2011-04-19 01:53:19 +00:00
Daniel Juyung Seo 415b221632 Elementary gengrid: Fixed a warning.
SVN revision: 58721
2011-04-19 00:58:39 +00:00
Michael BOUCHAUD 97dee1c433 elementary: add page relative, item size and horizontal controls to external gengrid
SVN revision: 58706
2011-04-18 10:59:45 +00:00
Michael BOUCHAUD 0642a6c1cc elementary: add page_relative and horizontal getters to gengrid
SVN revision: 58705
2011-04-18 10:54:25 +00:00
Daniel Juyung Seo 12598eb6e6 Elementary map: Fixed doxygen, removed trailing whitespaces.
SVN revision: 58704
2011-04-18 07:37:49 +00:00
Sangho Park fe580b2fdb 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.


SVN revision: 58703
2011-04-18 06:42:47 +00:00
ChunEon Park ef3bc9a48d elementary / image, icon - added missing lines about signal callback table.
SVN revision: 58694
2011-04-15 17:08:04 +00:00
ChunEon Park 89787877e8 elementary/image, icon - updated signal callback table
SVN revision: 58693
2011-04-15 17:05:34 +00:00
ChunEon Park 86df49c4da elementary / actionslider, calendar, colorselector, bubble, hoversel, clock
- updated them for using common signal callback table.




SVN revision: 58692
2011-04-15 17:01:39 +00:00
ChunEon Park 7428bb366b elementary / transit - modified minor logic error
SVN revision: 58691
2011-04-15 17:00:37 +00:00
ChunEon Park 4ebebb6871 elementary / transit - updated internal minors
SVN revision: 58690
2011-04-15 16:32:08 +00:00
Daniel Juyung Seo 7023c0006d Elementary bin: Use EINA_TRUE/EINA_FALSE for Eina_Bool parameters.
SVN revision: 58688
2011-04-15 11:44:05 +00:00
Carsten Haitzler 4b5e270ba9 debug.. off.
SVN revision: 58687
2011-04-15 11:20:41 +00:00
Carsten Haitzler 4361bc8bb4 fix up copy & paste with inlined win and a few other cnp nigglies.
also no unimplemented win times for now.



SVN revision: 58686
2011-04-15 11:18:30 +00:00
Cedric BAIL 72739399bb autogen: add forgotten autopoint.
SVN revision: 58671
2011-04-14 19:26:15 +00:00
Cedric BAIL 21f4072b1e autogen: unobrk things.
SVN revision: 58668
2011-04-14 14:51:36 +00:00
Cedric BAIL bd0e2610ea autogen: improve detection of parameter change.
SVN revision: 58667
2011-04-14 14:03:46 +00:00
Carsten Haitzler 4c7b13444d copy from inlined wins works. copy to.. doesn't.
SVN revision: 58666
2011-04-14 13:51:12 +00:00
Carsten Haitzler 59f8230bb5 kbd input/fcosu works on inlined wins. wootsors
SVN revision: 58664
2011-04-14 12:47:16 +00:00
Daniel Juyung Seo 3d99ec3932 Elementary: Removed trailing white spaces.
SVN revision: 58661
2011-04-14 11:43:43 +00:00
Daniel Juyung Seo f337cf0a31 Elementary genlist: Do not call "realized"/"unrealized" smart
callbacks if those are internal size calculation purpose.


SVN revision: 58660
2011-04-14 11:41:07 +00:00
Carsten Haitzler 315dc93196 mm.... new widget options/modes for win... u can put a window..
INLINED in another window. :) it's an image object. have fun!



SVN revision: 58657
2011-04-14 10:48:43 +00:00