WooHyun Jung [Mon, 31 Jan 2011 10:47:53 +0000 (10:47 +0000)]
From: WooHyun Jung <wh0705.jung@samsung.com>
Mr. Wonguk Jeong made a patch for elm_module.
This patch is for changing the timing of module loading.
For now, module loading is done in elm_init
Thus, modules are always loaded, even if the application does not use
them.
So this patch deferred the timing of module loading to
"_elm_module_find_as".
SVN revision: 56586
Daniel Juyung Seo [Mon, 31 Jan 2011 10:33:22 +0000 (10:33 +0000)]
From: Daniel Juyung Seo <juyung.seo@samsung.com>
Subject: [E-devel] [Patch] genlist item cache exception handling patch
I added "no cached item" handling.
In some case, items should not be cached and should not use caches.
For example,
if there was a state change in item style, it should not be cached
because it remembers the state changes.
And if we use elm_genlist_item_item_class_update() API,
item should not be cached as well.
It needs to be a fresh item style without remembering the state changes.
SVN revision: 56585
Tom Hacohen [Mon, 31 Jan 2011 10:23:56 +0000 (10:23 +0000)]
Elementary: applied 56579 on region_show (that commit already applied on bring_in).
SVN revision: 56584
ChunEon Park [Mon, 31 Jan 2011 10:21:05 +0000 (10:21 +0000)]
From: ChunEon Park <chuneon.park@samsung.com>
Subject: [E-devel] [PATCH] elm_transit
call del func after internal cleanups.
SVN revision: 56583
Sohyun Kim [Mon, 31 Jan 2011 10:17:40 +0000 (10:17 +0000)]
From: Sohyun Kim <anna1014.kim@samsung.com>
Subject: [E-devel] [Patch] elm_genlist patch regarding inlist
I made a patch for elm_genlist.
For getting genlist item from inlist, ELM_GENLIST_ITEM_FROM_INLIST macro
should be used.
SVN revision: 56582
Daniel Juyung Seo [Mon, 31 Jan 2011 10:15:22 +0000 (10:15 +0000)]
From: Daniel Juyung Seo <juyung.seo@samsung.com>
Subject: [E-devel] [Patch] Removed dead code in elm_genlist.c
I removed dead macro LONGPRESS_TIMEOUT.
Genlist's longpress_time value is read from
_elm_config->longpress_timeout.
SVN revision: 56581
김재환 [Mon, 31 Jan 2011 10:13:40 +0000 (10:13 +0000)]
From: 김재환 <jae.hwan.kim@samsung.com>
Subject: [E-devel] [Patch] els_scroller - Cannot click even if it
reach to end
I have another issue in scroller when the bounce is off.
Scroller cannot be clicked even if it reach to edge and animation is
end.
The reason is why the momentum animation is running even if it reach
end and bounce animation is off.
So I change the code that if it reach the edge in case of bounce-off,
the momentum animation is stoped.
The following is the patch code.
SVN revision: 56580
Jae Hwan Kim [Mon, 31 Jan 2011 10:00:49 +0000 (10:00 +0000)]
From: Jae Hwan Kim <jae.hwan.kim@samsung.com>
Subject: [E-devel] [Patch] els_scroller -
elm_smart_scroller_child_region_show
I have some issue in scroller.
Sometimes the scroller move to wrong region when the child get first
focus.
It use "scroller -> layout -> button".
So I checked the code and found a suspected thing in
elm_smart_scroller_child_region_show.
Please refer following pictures.
In the pictures, the rect which be written "x, y, w, h" is the area
which be made with the parameters of
"elm_smart_scroller_child_region_show".
The rect which be written "Pan" is the pan area of the scroller.
If the situation is 1) or 2) and the function is called, the result
have to be 7).
In case of 3) or 4), it have to be 8).
In case of 5) or 6), it have to remain as it is.
Is it right??
But if the situation is 6) and the function is called, the result will
be 7) in current code.
I think it is wrong.
I attached patch code. please find it below the pictures.
1)
---------------
| |
| x, y, w, h |
| |
---------------
---------------------
| |
| |
| |
| Pan |
| |
| |
| |
---------------------
2)
---------------
| |
| x, y, w, h |
---------------------
| | | |
| --------------- |
| |
| Pan |
| |
| |
| |
---------------------
3)
---------------------
| |
| |
| |
| Pan |
| |
| --------------- |
| | | |
---------------------
| x, y, w, h |
| |
---------------
4)
---------------------
| |
| |
| |
| Pan |
| |
| |
| |
---------------------
---------------
| |
| x, y, w, h |
| |
---------------
5)
---------------------
| |
| --------------- |
| | | |
| | x, y, w, h | |
| | | |
| --------------- |
| Pan |
---------------------
6)
---------------
| |
--------------------- <---Pan
| | | |
| | x, y, w, h | |
| | | |
---------------------
| |
---------------
7)
---------------------
| | | |
| | x, y, w, h | |
| | | |
| --------------- |
| |
| Pan |
| |
---------------------
8)
---------------------
| |
| Pan |
| |
| --------------- |
| | | |
| | x, y, w, h | |
| | | |
---------------------
SVN revision: 56579
ChunEon Park [Mon, 31 Jan 2011 08:47:19 +0000 (08:47 +0000)]
From: ChunEon Park <chuneon.park@samsung.com>
Subject: [E-devel] [PATCH] elc_ctxpopup
only set style on scroller if it exists.
SVN revision: 56578
WooHyun Jung [Mon, 31 Jan 2011 08:32:15 +0000 (08:32 +0000)]
From: WooHyun Jung <wh0705.jung@samsung.com>
Subject: [E-devel] [Patch] small patch for elm_main.c
I made small patch for elm_main.c
In elm_all_flush function, I was suspicious about,
if _elm_win_list is NULL then following codes should not be called or
not.
ejde_file_cache_flush();
edje_collection_cache_flush();
eet_clearcache();
I thinks above functions should be called without any consideration
about
the state of _elm_win_list.
SVN revision: 56574
Daniel Juyung Seo [Mon, 31 Jan 2011 08:30:11 +0000 (08:30 +0000)]
From: Daniel Juyung Seo <juyung.seo@samsung.com>
Subject: [E-devel] [Patch] elm_genlist patch for group index handling
and bug fix
I attached a small patch for elm_genlist.c
1. _item_block_position() fix
This patch realizes group index even there is no sub-items.
There was a request about this.
And it shows that there is no sub-items explicitly.
2. Bug Fix
Null check routine was wrong-placed.
I fixed it.
SVN revision: 56573
Jae Hwan Kim [Mon, 31 Jan 2011 08:18:58 +0000 (08:18 +0000)]
From: Jae Hwan Kim <jae.hwan.kim@samsung.com>
Subject: [E-devel] [Patch] environment parameter - ELM_EFFECT_ENABLE
I want to add the environment parameter "ELM_EFFECT_ENABLE".
It will play a role as the enablement for the effect of all widget.
SVN revision: 56572
ChunEon Park [Mon, 31 Jan 2011 08:03:16 +0000 (08:03 +0000)]
From: ChunEon Park <chuneon.park@samsung.com>
Subject: [E-devel] [PATCH] elm_transit
Here is a minor patch for elm_transit
(indentation & removed unuseful calls - evas_map_smooth_set)
SVN revision: 56571
Vincent Torri [Mon, 31 Jan 2011 08:00:03 +0000 (08:00 +0000)]
fix windows build
SVN revision: 56570
Tom Hacohen [Sun, 30 Jan 2011 12:29:30 +0000 (12:29 +0000)]
Elementary theme: Made list and genlist's text auto-align according to language's direction.
SVN revision: 56551
Carsten Haitzler [Sun, 30 Jan 2011 09:50:56 +0000 (09:50 +0000)]
tnx vtorri -> cleaner module thing. more minimal changes.
SVN revision: 56400
Carsten Haitzler [Sun, 30 Jan 2011 05:59:24 +0000 (05:59 +0000)]
lock externals to major version of edje.
SVN revision: 56397
Michael BOUCHAUD [Thu, 27 Jan 2011 22:58:28 +0000 (22:58 +0000)]
elementary: add a smart callback to slideshow to be notified when current item change
SVN revision: 56336
Michael BOUCHAUD [Thu, 27 Jan 2011 22:14:32 +0000 (22:14 +0000)]
elementary: avoid stack corruption unselect item toolbar before del it
SVN revision: 56335
Tom Hacohen [Tue, 25 Jan 2011 03:04:33 +0000 (03:04 +0000)]
Elementary: implemented elm_scrolled_entry_is_empty and elm_entry_is_empty. Currently done in a hackish way, will be fixed to be cool once 1.0 is out, and the needed textblock support will be there.
SVN revision: 56296
Tom Hacohen [Tue, 25 Jan 2011 02:19:06 +0000 (02:19 +0000)]
Elementary: Improved els_scroller's handling with scrolling and 'wanted location', unfortunately momentum scrolling isn't handled correctly at the moment should be fixed.
SVN revision: 56294
Tom Hacohen [Tue, 25 Jan 2011 02:19:03 +0000 (02:19 +0000)]
Elementary: Adjusted elm_list to work with the changes in els_scroller.
SVN revision: 56293
Carsten Haitzler [Mon, 24 Jan 2011 11:30:20 +0000 (11:30 +0000)]
fix label theme.
SVN revision: 56285
Tom Hacohen [Mon, 24 Jan 2011 10:50:35 +0000 (10:50 +0000)]
Elementary: Wrote proper support for "wanted position" in els_scroller. It will now save the position we really wanted to get to (for example because of scrolling) and will go back to that place after resizes. Fixes a couple of bugs.
In this change I also introduced elm_smart_scroller_child_region_set thats used to change the position of the scroller, without actually saving it as a wanted position.
SVN revision: 56284
Tom Hacohen [Mon, 24 Jan 2011 10:50:33 +0000 (10:50 +0000)]
Elementary: Fixed the way elm_scrolled_entry_cursor_end_set worked. It now just queries the show region which is mostly good, until we'll really define what we want to be shown.
SVN revision: 56283
Tom Hacohen [Mon, 24 Jan 2011 10:50:30 +0000 (10:50 +0000)]
Will soon commit a better solution instead.
Revert "Elementary scroller: Fixed an issue in scroller. When a resize happens (or any change for that matter), we should go to the last "asked for" location. This for example fixes an issue with elm_scrolled_entry (and many other widgets) showing "empty regions" on some resizes."
This reverts commit
f322bd28101518849c53e6d56b93c206e4129162.
SVN revision: 56282
Tom Hacohen [Mon, 24 Jan 2011 10:50:27 +0000 (10:50 +0000)]
Will soon commit a better solution instead.
Revert "Elemenatry: Fixed an issue with elm_scrolled_entry_cursor_end_set not showing the correct region."
This reverts commit
90e80c4045d0c7031b0b01b67b06f62ea8efb14f.
SVN revision: 56281
Carsten Haitzler [Mon, 24 Jan 2011 10:21:58 +0000 (10:21 +0000)]
now there's a good idea! let's actually USE thew config value eh?
*spank myself*
SVN revision: 56279
Tom Hacohen [Mon, 24 Jan 2011 03:01:36 +0000 (03:01 +0000)]
Elemenatry: Fixed an issue with elm_scrolled_entry_cursor_end_set not showing the correct region.
SVN revision: 56278
Tom Hacohen [Mon, 24 Jan 2011 03:01:33 +0000 (03:01 +0000)]
Elementary: Added elm_entry_cursor_geometry_get for getting the cursor's geometry.
SVN revision: 56277
Tom Hacohen [Mon, 24 Jan 2011 03:01:29 +0000 (03:01 +0000)]
Elementary scroller: Fixed an issue in scroller. When a resize happens (or any change for that matter), we should go to the last "asked for" location. This for example fixes an issue with elm_scrolled_entry (and many other widgets) showing "empty regions" on some resizes.
SVN revision: 56276
Michael BOUCHAUD [Thu, 20 Jan 2011 20:07:57 +0000 (20:07 +0000)]
elementary: and this fix me :p
SVN revision: 56245
Michael BOUCHAUD [Thu, 20 Jan 2011 19:44:12 +0000 (19:44 +0000)]
elementary: fix bug on keyboard events in slideshow timeout are not respected
SVN revision: 56243
Nicolas Aguirre [Wed, 19 Jan 2011 19:25:49 +0000 (19:25 +0000)]
Add more info in the doc about the return value.
SVN revision: 56227
Nicolas Aguirre [Wed, 19 Jan 2011 18:28:01 +0000 (18:28 +0000)]
Add elm_layout_data_get function to retrieve data associated to the underlying edje object.
Data that comes from block like data.item: "key" "value" in the EDC.
SVN revision: 56225
Carsten Haitzler [Wed, 19 Jan 2011 11:59:53 +0000 (11:59 +0000)]
fix over-render bug in map/mapbuf and with changed flags! that was
nasty to find!
SVN revision: 56220
Carsten Haitzler [Wed, 19 Jan 2011 04:55:19 +0000 (04:55 +0000)]
dont ALWAYS init elm for externals - if one isnt used.. why init it?
(for that matter externals has a problem in design - it loads every
module for externals and thus links in every lib even if never used by
the app/edje obj).
SVN revision: 56218
Carsten Haitzler [Mon, 17 Jan 2011 10:47:12 +0000 (10:47 +0000)]
thanks capn' igloo - trying to repro your enna cpu usage case, but
can't. its a matter of simply some element re-rendering that is hidden
- rendering into a mapped buffer. i disable the animation in the
layout (layout2) and no cpu usage. that's my bet.
SVN revision: 56204
Carsten Haitzler [Mon, 17 Jan 2011 08:34:20 +0000 (08:34 +0000)]
fix possible empty if that can caus eproblems on some shells.
SVN revision: 56203
Mike Blumenkrantz [Mon, 17 Jan 2011 08:12:32 +0000 (08:12 +0000)]
In C, the following two prototypes are not the same:
void func();
void func(void);
Attached patch fixes occurrences of 1st in Elementary.h
thanks,
Mike
SVN revision: 56202
Carsten Haitzler [Sun, 16 Jan 2011 08:16:45 +0000 (08:16 +0000)]
warning--
SVN revision: 56188
Carsten Haitzler [Sat, 15 Jan 2011 15:34:39 +0000 (15:34 +0000)]
well that file read wasnt safe.
SVN revision: 56132
WooHyun Jung [Sat, 15 Jan 2011 08:39:33 +0000 (08:39 +0000)]
From: WooHyun Jung <wh0705.jung@samsung.com>
Subject: [E-devel] [Patch] small patch for elm_pager.c
I felt strange with the following codes in elm_pager.c
Why it->content should be hidden after deleted ?
Is it a bug ?
I made a small patch for this
SVN revision: 56127
ChunEon Park [Sat, 15 Jan 2011 08:09:42 +0000 (08:09 +0000)]
From: ChunEon Park <chuneon.park@samsung.com>
Subject: RE: [E-devel] [PATCH] elm_transit
modified some test sample codes for looking better.
SVN revision: 56126
ChunEon Park [Sat, 15 Jan 2011 08:09:03 +0000 (08:09 +0000)]
From: ChunEon Park <chuneon.park@samsung.com>
Subject: RE: [E-devel] [PATCH] elm_transit
elm_transit_paused_set / elm_transit_paused_get /
elm_transit_progress_value_get
SVN revision: 56125
Brett Nash [Thu, 13 Jan 2011 23:08:37 +0000 (23:08 +0000)]
Elm: Entry: cnp: Actually use the calculated format.
And I read this patch twice before I sent it. So support images and text
again in entry _paste.
SVN revision: 56079
Brett Nash [Thu, 13 Jan 2011 23:04:25 +0000 (23:04 +0000)]
Elm: Entry: cno: Add support for using text only in entries.
By default it's text only for single line entries (you can toggle it back on
if you want to). Otherwise images are enabled for multiline entries.
SVN revision: 56078
Brett Nash [Thu, 13 Jan 2011 23:04:14 +0000 (23:04 +0000)]
Elm: cnp: Allow updating of drop info.
Currently you can't update drop info on a window. Now you can.
SVN revision: 56077
Brett Nash [Thu, 13 Jan 2011 23:04:04 +0000 (23:04 +0000)]
Elm: CNP: Images/Markup split up
So basically you can request markup without images. If you want both request
MARKUP | IMAGES. Then when an image comes in you'll get an image as markup.
SVN revision: 56076
Brett Nash [Thu, 13 Jan 2011 23:03:49 +0000 (23:03 +0000)]
Elm: cnp: Split out images and markup.
So if you want both images and markup use an or tag to get them.
SVN revision: 56075
Gustavo Lima Chaves [Wed, 12 Jan 2011 12:58:26 +0000 (12:58 +0000)]
We don't want this timer to cause race conditions with item deletion, eh?
SVN revision: 56057
Carsten Haitzler [Wed, 12 Jan 2011 10:04:11 +0000 (10:04 +0000)]
safety - check wd return for null.
SVN revision: 56056
Carsten Haitzler [Tue, 11 Jan 2011 09:58:34 +0000 (09:58 +0000)]
warnings--
SVN revision: 56049
Carsten Haitzler [Tue, 11 Jan 2011 09:54:41 +0000 (09:54 +0000)]
warning--
SVN revision: 56048
Carsten Haitzler [Tue, 11 Jan 2011 09:49:16 +0000 (09:49 +0000)]
warning--
SVN revision: 56047
Carsten Haitzler [Tue, 11 Jan 2011 09:47:56 +0000 (09:47 +0000)]
warning--
SVN revision: 56046
Carsten Haitzler [Tue, 11 Jan 2011 09:40:03 +0000 (09:40 +0000)]
and handle null/default theme stuff
SVN revision: 56045
Carsten Haitzler [Tue, 11 Jan 2011 07:48:02 +0000 (07:48 +0000)]
fix theme specific add if default theme involved.
SVN revision: 56042
Carsten Haitzler [Tue, 11 Jan 2011 05:58:07 +0000 (05:58 +0000)]
add in proper declaration of elm_transit_add with void as a param -
and fix from ChunEon Park <chuneon.park@samsung.com> for it tin test
app.
SVN revision: 56040
sangho park [Tue, 11 Jan 2011 05:48:28 +0000 (05:48 +0000)]
From: sangho park <gouache95@gmail.com>
Subject: [E-devel] [Patch] elm_map downloading progress info & bug fix
I added one new signal, one new API and fixed seg fault bug.
- signal : "download" (this signal is called when map_tile is
downloaded)
- API : elm_map_utils_downloading_status_get(const Evas_Object *obj, int
*try_num, int *finish_num)
- seg fault : if user select custom map provider, seg fault occurs,
because
there is no url_cb in the custom map provider
you can check download progress using these signal & API.
the example is in "test_map.c".
SVN revision: 56039
Carsten Haitzler [Mon, 10 Jan 2011 09:05:11 +0000 (09:05 +0000)]
fix if formatting
SVN revision: 56022
ChunEon Park [Mon, 10 Jan 2011 08:59:40 +0000 (08:59 +0000)]
From: ChunEon Park <chuneon.park@samsung.com>
Subject: [PATCH] elc_ctxpopup
Here code is for the ctxpopup.
Since the functionalities of ctxpopup are somewhat different,
I'm trying to overwrite the ctxpopup code entirely first.
The main reason is,
Original ctxpopup could determine it's size and position by itself.
Of course, upstreamed version supports this. But it can not be reduced
it's
size
And it supposes the arrow position to center of box edje.
Basically,
This version calculates it's box size first then find available space
from
the it's position.
The origin position of the box is not expected, it finds the available
positions.
But if there is not enough space to be shown, then it finds a best
direction
to be shown again.
In this case, it reduces it's size also as to be shown entirely.
Since the ctxpopup supports scroller, the reduced box could show the all
items also.
(The point is ctxpopup should know the size of total items...)
I'm not sure the upstreamed version could cover the above scenario,
If then, I need to modify it first.
(fixed some minor formatting issue too)
SVN revision: 56021
Carsten Haitzler [Mon, 10 Jan 2011 06:46:59 +0000 (06:46 +0000)]
make genlist use different icon for end for testing.
SVN revision: 56019
Daniel Juyung Seo [Mon, 10 Jan 2011 05:39:13 +0000 (05:39 +0000)]
From: Daniel Juyung Seo <seojuyung2@gmail.com>
Subject: [E-devel] [Patch] elm_genlist doxygen fix and addition.
I fixed some typos of Genlist doxygen and added more explanations.
Please review this and apply this to upstream.
SVN revision: 56017
ChunEon Park [Mon, 10 Jan 2011 05:34:58 +0000 (05:34 +0000)]
From: ChunEon Park <chuneon.park@samsung.com>
Subject: Re: [E-devel] [PATCH] elm_transit
Here is a very small patch for elm_transit
Removed an unnecessary parameter.
SVN revision: 56016
Jihoon Kim [Mon, 10 Jan 2011 05:27:15 +0000 (05:27 +0000)]
From: Jihoon Kim <jihoon48.kim@samsung.com>
Subject: [E-devel] [PATCH] Change the second parameter type of
elm_slidershow_timeout_set
Most of APIs related to timeout_set / get uses double type as parameter,
but elm_slidershow uses integer type.
For uniformity, the second parameter type of elm_slideshow_timeout_set
is changed into double type.
SVN revision: 56015
Nicolas Aguirre [Sat, 8 Jan 2011 15:12:15 +0000 (15:12 +0000)]
Delete multi_timer of genlist when object is deleted.
SVN revision: 55992
Brett Nash [Sat, 8 Jan 2011 04:55:31 +0000 (04:55 +0000)]
Add support for file:/// URIs in cut and paste and persistent URIs/
Patch original from Hyoyoung Chang.
Modified by me a lot, with some extra debug.
Also I removed the sizeof(char). That was defined to be one before most of us
where born.
SVN revision: 55986
Brett Nash [Sat, 8 Jan 2011 04:55:15 +0000 (04:55 +0000)]
Fix rather terminal breakge in cnp.
The spanking belongs to raster and Hyoyoung Chang.
SVN revision: 55985
ChunEon Park [Fri, 7 Jan 2011 06:23:20 +0000 (06:23 +0000)]
From: ChunEon Park <chuneon.park@samsung.com>
Even it looks somewhat alien elm,
I hope EFL supports basic effect by using c and edc.
In some cases, it is useful for app developers.
They want to use effects easily and quickly as Other F/W does
providing.
Here is patch again.
Added two lines for elm_transit_duration_set exception handling.
I guess there are possibilities still to add/modify some functions to
the
transit.
So, currently the exception cases does not defined yet.
But I will try patches soon as perfect things.
Please consider about transit.
And.. if this transit is acceptable,
How about deprecate elm_animator as soon as possible?
SVN revision: 55966
Seunggyun Kim [Fri, 7 Jan 2011 04:58:37 +0000 (04:58 +0000)]
From: Seunggyun Kim <sgyun.kim@samsung.com>
Subject: RE: [E-devel] [Patch] Group index support
I added a small patch for Genlist group item clear.
And I changed git->minh to git->h in item_block_position function.
Thanks Govi
SVN revision: 55965
Mike Blumenkrantz [Thu, 6 Jan 2011 23:09:56 +0000 (23:09 +0000)]
a widget toolkit should NOT, I repeat, should NOT, depend on HAL. especially when no HAL functionality is used.
SVN revision: 55961
Vincent Torri [Thu, 6 Jan 2011 19:01:34 +0000 (19:01 +0000)]
add guards in config.h to avoid multiple inclusions
raster: may I rename elementary_config.h to config.h ? If I
add macros for all the init stuff, it would be nice to have
consistent name for that file
SVN revision: 55952
Daniel Juyung Seo [Thu, 6 Jan 2011 08:58:28 +0000 (08:58 +0000)]
From: Daniel Juyung Seo <juyung.seo@samsung.com>
Subject: RE: [E-devel] [Patch] Group index support
I added a small patch for Genlist Group.
I missed one. Thanks Govi!
Can you review this and apply it to upstream?
SVN revision: 55929
Carsten Haitzler [Thu, 6 Jan 2011 08:52:32 +0000 (08:52 +0000)]
make elm config system settings!
SVN revision: 55928
Seunggyun Kim [Thu, 6 Jan 2011 05:13:11 +0000 (05:13 +0000)]
From: Seunggyun Kim <sgyun.kim@samsung.com>
Subject: [E-devel] [Patch] Group index support
I added group index feature.
This feature support to show item indicates group index.
I attached capture images showing group index.
As you can see attached png images, Group index item includes same group
items.
The group index is shown until every items that have same group index
are scrolled. so group index realize/unrealize is not excuteded in
_item_block_position function.
instead of the function, group index is controlled in _pan_calculate
function.
"Genlist Group" and "Genlist Group Tree" menu is added in
elementary_test. you can test group index operations in elementary_test.
This patch is not support elm_genlist_item_insert_before/after
operation of group index. We are now considering the operations in group index.,
This patch assumes that the previous 2 patches are already applied to upstream.
'[E-devel] [Patch] Tree support for elm_genlist_item_prepend() API.'
'[E-devel] [Patch] Tree support for
elm_genlist_item_insert_before/after() APIs',
So this patch does not include the changes of the previous patch.
I separated this patch.
- 004.elm_genlist.c.patch.txt
Patch for src/lib/elm_genlist.c
- 005.test_genlist.c.patch.txt
Patch for src/bin/test_genlist.c
- 006.genlist.patch.txt
Patch for data/theme/default.edc
And you have to add attached group_index.png file into 'data/themes'
'group_index.png' file is group index background image.
Daniel Juyung Seo help make test code and refactoring group index code.
SVN revision: 55925
sangho park [Thu, 6 Jan 2011 03:43:51 +0000 (03:43 +0000)]
From: sangho park <gouache95@gmail.com>
Subject: Re: [E-devel] [Patch] elm_map pinch zoom
This is a patch for elm_map pinch zoom.
you can zoom in/out using two fingers.
- add event handler for multi touch.
(also fixed the TOUCH_HOLD_RANGE to use finger size as it should be)
SVN revision: 55920
Bruno Dilly [Wed, 5 Jan 2011 14:23:39 +0000 (14:23 +0000)]
Fix forgotten attribution of max year on elm calendar widget
This bug was always setting the displayed year to min year
when the function elm_calendar_min_max_set is called.
SVN revision: 55881
Gustavo Lima Chaves [Wed, 5 Jan 2011 14:07:40 +0000 (14:07 +0000)]
Hello,
I fixed a bug for elm_genlist_item_insert_before/after() declarations.
(Thanks glima.)
I should have modified EINA_ARG_NONNULL() when I added a new parameter.
1st and 5th parameter should not be NULL.
Anybody can review and apply this to upstream?
Thanks.
Daniel Juyung Seo (SeoZ)
SVN revision: 55880
Jeonghyun Yun [Wed, 5 Jan 2011 10:28:23 +0000 (10:28 +0000)]
From: Jeonghyun Yun <jh0506.yun@samsung.com>
Subject: [E-devel] [Patch] elm_genlist multi-touch smart callbacks
added
I added 6 multi-touch smart callbacks in elm_genlist, please refer to
below.
"multi,sweep,left" - Genlist has been multi-touch swept left.
"multi,sweep,right" - Genlist has been multi-touch swept right.
"multi,sweep,top" - Genlist has been multi-touch swept top.
"multi,sweep,bottom" - Genlist has been multi-touch swept bottom.
"multi,pinch,out" - Genlist has been multi-touch pinched out.
"multi,pinch,in" - Genlist has been multi-touch pinched in.
I think these smart callbacks are very useful for elm_genlist
multi-touch
effect.
If this patch have any issue, please let me know.
SVN revision: 55878
Carsten Haitzler [Wed, 5 Jan 2011 07:52:49 +0000 (07:52 +0000)]
and return NULL - shoudl return A value on exit.
SVN revision: 55875
Carsten Haitzler [Wed, 5 Jan 2011 07:52:15 +0000 (07:52 +0000)]
as_anim label not used. remove.
SVN revision: 55874
Carsten Haitzler [Wed, 5 Jan 2011 07:51:51 +0000 (07:51 +0000)]
dont need void * casts. void * accepts everything.
SVN revision: 55873
Daniel Juyung Seo [Wed, 5 Jan 2011 07:49:11 +0000 (07:49 +0000)]
From: Daniel Juyung Seo <juyung.seo@samsung.com>
Subject: [E-devel] [Patch] elm_actionslider feature patch for
elementary.
This patch is for elementary elm_actionslider.
Mr. Sumanth created this patch. I reviewed it and fixed some.
This patch includes below features.
- Indicator label Set/Get APIs.
- _del_hook fix for wd->drag_button_base.
- Added magnet disable feature. _drag_button_up_cb fix for no magnet
handling. If magnet position is set to ELM_ACTIONSLIDER_NONE, it disables
magnetic. Added a test case to elementary_test.
SVN revision: 55872
Hyoyoung Chang [Wed, 5 Jan 2011 06:21:24 +0000 (06:21 +0000)]
From: Hyoyoung Chang <hyoyoung.chang@samsung.com>
Subject: [E-devel] elm_label patch(bugfix)
It's a bugfix patch of elm_label.
In strbuf_key_value_replace, null pointer reference can be occured
SVN revision: 55870
Daniel Juyung Seo [Wed, 5 Jan 2011 06:03:43 +0000 (06:03 +0000)]
From: Daniel Juyung Seo <juyung.seo@samsung.com>
Subject: [E-devel] [Patch] Tree support for
elm_genlist_item_insert_before/after() APIs
I added tree feature support to
elm_genlist_item_insert_before/after() APIs.
This patch assumes that the previous patch, '[E-devel] [Patch] Tree
support
for elm_genlist_item_prepend() API.', is already applied to upstream.
So this patch does not include the changes of the previous patch.
This patch includes API break. I added parent parameter.
To support genlist group index feature, it should have a parent
parameter
like elm_genlist_item_append/prepend() do.
Raster already agreed to this API break.
I or my co-worker will introduce genlist group index feature today.
But for the reviewer's convenience, I separated this patch.
- 001.elm_genlist.patch.txt
Patch for src/lib/elm_genlist.c
- 002.elm_genlist.patch.txt
Patch for src/lib/Elementary.h.in, src/bin/test_genlist.c
- 003.elm_genlist.patch.txt
Due to API break, I changes other EFL libraries and applications on SVN.
SVN revision: 55869
Daniel Juyung Seo [Wed, 5 Jan 2011 05:59:30 +0000 (05:59 +0000)]
From: Daniel Juyung Seo <juyung.seo@samsung.com>
Subject: [E-devel] [Patch] Tree support for elm_genlist_item_prepend()
API.
I added tree feature support to elm_genlist_item_prepend() API.
(elm_genlist_item_append() already supports tree.)
This patch is tested with elementary_test -> Genlist Tree.
Please review this and apply it to upstream.
SVN revision: 55868
ChunEon Park [Wed, 5 Jan 2011 05:48:17 +0000 (05:48 +0000)]
From: ChunEon Park <chuneon.park@samsung.com>
Subject: [E-devel] [PATCH] elm_tansit
002_elm_transit.c : renamed (Elm_Effect / Elm_Fx) -> Elm_Transit_Effect
SVN revision: 55866
ChunEon Park [Wed, 5 Jan 2011 05:17:18 +0000 (05:17 +0000)]
From: ChunEon Park <chuneon.park@samsung.com>
Subject: [E-devel] [PATCH] elm_tansit
001_elm_transit.c. : fixed elementary_test resizing / zoom effect bug.
SVN revision: 55861
Mike Blumenkrantz [Tue, 4 Jan 2011 20:07:10 +0000 (20:07 +0000)]
add -lm to elm_test thanks to quaker66
SVN revision: 55855
김지훈 [Tue, 4 Jan 2011 10:09:48 +0000 (10:09 +0000)]
From: 김지훈 <imfine98@gmail.com>
elm_photocam widget does not support keyboard input.
This patch makes elm_photocam be able to process keyboard input such
as Left,
Right, Up, Down, PgDn, and PgUp key.
In addition, image will be zoomed in or out when '+' or '-' key in
keypad is pressed.
Please review it and let me know if there is any problem in this patch.
SVN revision: 55842
Jeonghyun Yun [Tue, 4 Jan 2011 10:05:27 +0000 (10:05 +0000)]
From: Jeonghyun Yun <jh0506.yun@samsung.com>
I found one small bug in elm_gengrid.c
"item" is used after "free(item)" in elm_gengrid_item_del() function.
Can anybody check about this ?
SVN revision: 55841
Jihoon Kim [Tue, 4 Jan 2011 08:45:27 +0000 (08:45 +0000)]
From: Jihoon Kim <jihoon48.kim@samsung.com>
Subject: [E-devel] elm_map patch for supporting keyboard input
Most of elementary widgets can process keyboard input, but elm_map widget
has not. This patch makes elm_map be able to process keyboard input such as
Left, Right, Up, Down, PgDn, and PgUp key. In addition, map image will be
zoomed in or out when '+' or '-' key in keypad.
Please review it and let me know if there is any problem in this patch.
Merry Christmas!
SVN revision: 55840
Sohyun Kim [Tue, 4 Jan 2011 08:42:55 +0000 (08:42 +0000)]
From: Sohyun Kim <anna1014.kim@samsung.com>
Subject: [E-devel] [Patch] elm_bubble theme patch
I'm Sohyun Kim. Nice to meet you.
This is a patch for bubble theme.
The bubble has a region for icon, label and info text.
However, it has the region, if icon, label and info text are not set.
I modified theme and added edje signals.
1. add edje signal for label and info text state
2. remove text size for label and info text default state
-> set it on "visible" state
3. add base image state for info text only
SVN revision: 55839
Vincent Torri [Mon, 3 Jan 2011 08:49:41 +0000 (08:49 +0000)]
update MAINTAINERCLEANFILES
SVN revision: 55825
Fabiano Fidêncio [Fri, 31 Dec 2010 08:45:45 +0000 (08:45 +0000)]
Fixed elementary/src/lib/elm_widget.h doxygen.
Fixed typos and removed unnecessary lines.
Patch by Daniel Juyung Seo (SeoZ)
SVN revision: 55787
Christopher Michael [Fri, 31 Dec 2010 01:13:36 +0000 (01:13 +0000)]
Add UNUSED so we get a clean compile.
SVN revision: 55786
Christopher Michael [Fri, 31 Dec 2010 01:10:55 +0000 (01:10 +0000)]
Add UNUSED where needed.
Fix formatting.
SVN revision: 55785
Christopher Michael [Fri, 31 Dec 2010 01:08:41 +0000 (01:08 +0000)]
If you add new atom names, be sure to bump the atom count. (This
removes more nasty compiler messages about excess elements in array
initializer, etc, etc).
SVN revision: 55784
Christopher Michael [Fri, 31 Dec 2010 01:08:01 +0000 (01:08 +0000)]
Fix up functions & prototypes to match the proper ElmMapSourceURLFunc
declaration so we can remove stupid "nobody checked the code" compiler
warnings.
SVN revision: 55783