Commit Graph

2513 Commits

Author SHA1 Message Date
Daniel Juyung Seo b4968b3572 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.


SVN revision: 58612
2011-04-13 01:48:11 +00:00
Sebastian Dransfeld b5269a31aa ignore++
SVN revision: 58609
2011-04-12 22:47:12 +00:00
Daniel Juyung Seo de8ecd6ff8 Elementary gengrid: Fixed doxygen typo.
SVN revision: 58597
2011-04-12 17:32:36 +00:00
Daniel Juyung Seo aff74489cc Elementary: Applied "clicked" signal name change for gengrid/list/genlist.
SVN revision: 58596
2011-04-12 17:29:59 +00:00
Daniel Juyung Seo ebfa1123c0 Elementary list: Fixed doxygen for "clicked,double" callback.
SVN revision: 58595
2011-04-12 14:16:41 +00:00
ChunEon Park 9a29b51bd4 elementary / transit - fixed a incorrect logic
prevent user from calling elm_transit_del in the user del cb. 



SVN revision: 58591
2011-04-12 11:31:03 +00:00
ChunEon Park fe4cbef49f elementary/transit - fixed typo
SVN revision: 58589
2011-04-12 11:05:52 +00:00
ChunEon Park 2b735983c4 elementary/transit - updated test_transit for the chain transit
SVN revision: 58576
2011-04-12 05:49:47 +00:00
ChunEon Park 0d41b9fee8 elementary/transit - added new APIs elm_trnasit_chain_transit_add , elm_transit_chain_transits_get
SVN revision: 58575
2011-04-12 05:48:44 +00:00
ChunEon Park cc5e358c45 elementary / widget - removed semicolon
SVN revision: 58556
2011-04-11 15:56:36 +00:00
Christopher Michael 2b431b610a ELM: Fix 'whitespace following trailing backslash'
SVN revision: 58500
2011-04-08 23:14:52 +00:00
Daniel Juyung Seo 7baa0025ed Elementary actionslider: Fixed doxygen.
SVN revision: 58494
2011-04-08 16:56:09 +00:00
Daniel Juyung Seo 77450413d7 Elementary src/lib: Removed all trailing whitespaces.
SVN revision: 58492
2011-04-08 14:36:29 +00:00
Daniel Juyung Seo 64ff85f610 Elementary src/bin: Removed all trailing whitespaces.
SVN revision: 58491
2011-04-08 14:30:48 +00:00
Daniel Juyung Seo 2496f67fa8 Elementary map: Fixed map bug and added null check routine.
SVN revision: 58489
2011-04-08 12:13:29 +00:00
Carsten Haitzler dccd5aa4c6 spank! wanings--
SVN revision: 58483
2011-04-08 08:42:32 +00:00
Carsten Haitzler 1d8ba55175 quiet edje_cc mode - honor V param.
SVN revision: 58481
2011-04-08 08:20:43 +00:00
Daniel Juyung Seo d61cf35694 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


SVN revision: 58474
2011-04-08 06:14:10 +00:00
Carsten Haitzler c4b8b91834 wrn--
SVN revision: 58470
2011-04-08 05:53:37 +00:00
Carsten Haitzler f864f83af4 warn--
SVN revision: 58469
2011-04-08 05:52:13 +00:00
Carsten Haitzler 7e80b356ec warn--
SVN revision: 58468
2011-04-08 05:51:13 +00:00
Daniel Juyung Seo 9d145ce833 Elementary elementary.dox.in: Sync with AUTHORS.
SVN revision: 58462
2011-04-07 16:55:10 +00:00
Daniel Juyung Seo 4204583f81 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.


SVN revision: 58461
2011-04-07 16:44:54 +00:00
Daniel Juyung Seo 6983399bc9 Elementary genlist: Removed unnecessary blank lines.
SVN revision: 58459
2011-04-07 16:20:29 +00:00
Daniel Juyung Seo 35928fe87c Elementary genlist: Removed unnecessary 'const'.
SVN revision: 58458
2011-04-07 16:16:01 +00:00
Tom Hacohen b57382c5ab Elementary entry: Now really fix min size calculation.
Width shouldn't matter. (look at revision 58393 for more info).

SVN revision: 58410
2011-04-07 08:47:18 +00:00
Tom Hacohen b9518d9381 Revert "Elementary entry: No need to calc min size for a wrapping entry."
This reverts commit 58393

Should fix min size height calculation.

SVN revision: 58408
2011-04-07 08:16:02 +00:00
ChunEon Park 241231b2f4 elementary/transit - added chain transit features.
SVN revision: 58406
2011-04-07 05:34:11 +00:00
cnook 4959de1e63 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.



SVN revision: 58405
2011-04-07 04:54:55 +00:00
Seunggyun Kim e64bfe7cf1 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.



SVN revision: 58403
2011-04-07 04:35:08 +00:00
Daniel Juyung Seo 13877292d4 Elementary elm_genlist.c: Fixed formatting. Fits to ecrustify.
SVN revision: 58401
2011-04-07 00:58:29 +00:00
Tom Hacohen 1e85b6a3ca 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.

SVN revision: 58393
2011-04-06 15:27:52 +00:00
Michael BOUCHAUD 48c2737034 elementary: allow to emit a signal to a genlist. Thanks to Mikael Sans
SVN revision: 58391
2011-04-06 14:46:39 +00:00
Michael BOUCHAUD 11e6a2ea75 elementary: correct the homepath on windows from vtorri
SVN revision: 58390
2011-04-06 13:57:42 +00:00
Tom Hacohen 4ea6131744 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.

SVN revision: 58383
2011-04-06 07:51:26 +00:00
Daniel Juyung Seo ed5cfa443c Elementary test_list.c: Fixed formatting.
Use ecrustify and remove trailing whitespaces.


SVN revision: 58369
2011-04-06 01:10:19 +00:00
ChunEon Park 3761fc17f5 elementary / menu, gengrid, slider, separator, photocam, index, toggle
updated signal callback list in the doxygen



SVN revision: 58347
2011-04-05 07:04:09 +00:00
ChunEon Park 880365feee elementary/genlist - updated signal callback list in doxygen
SVN revision: 58346
2011-04-05 06:01:28 +00:00
ChunEon Park d95b927bed elementary / genlist - updated signal callback list in the doxygen
SVN revision: 58345
2011-04-05 05:53:56 +00:00
ChunEon Park bb67935a54 Elementary / genlist - updated signal callback list
SVN revision: 58344
2011-04-05 04:46:38 +00:00
Daniel Juyung Seo 9ef7f1f943 Elementary elm_genlist.c: Fixed genlist doxygen.
SVN revision: 58343
2011-04-05 04:30:34 +00:00
ChunEon Park 902a467b7e Elementary / genlist, slider, radio, win toolbar, thumb, toggle, scroller, slideshow, spinner
updated signall callback list in each doxygen 



SVN revision: 58342
2011-04-05 02:04:28 +00:00
ChunEon Park c7c99ddea6 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 ... 



SVN revision: 58335
2011-04-04 16:34:18 +00:00
ChunEon Park a68b234f22 elementray / transit - fixed typo
SVN revision: 58313
2011-04-04 05:56:56 +00:00
ChunEon Park e1b5d7bea8 Elementary/transit - defined transit callback functions types. (Elm_Transit_Effect_Transition_Cb, Elm_Transit_Effect_End_Cb)
SVN revision: 58312
2011-04-04 05:27:20 +00:00
ChunEon Park 4aabc33b1c Elementary/transit - void * -> Elm_Transit_Effect.
made the interface clear.



SVN revision: 58311
2011-04-04 04:48:51 +00:00
ChunEon Park 5f2ae803e0 elementary / transit - modified internal namings .
Elm_Transit_Effect -> Elm_Transit_Effect_Module



SVN revision: 58310
2011-04-04 01:54:55 +00:00
ChunEon Park 85d9b909f7 elementary / ctxpopup - modified doxygen smart object signal callbacks
SVN revision: 58307
2011-04-03 16:35:19 +00:00
ChunEon Park d497b0ea87 elementary/flip - modified to use smart callbacks descriptions table
SVN revision: 58306
2011-04-03 16:26:25 +00:00
Daniel Juyung Seo 6dc86966fd Elementary elm_gengrid.c: Fixed doxygen.
SVN revision: 58303
2011-04-03 16:06:06 +00:00