platform/upstream/elementary.git
12 years agoelementary: and now fix me
Michael BOUCHAUD [Fri, 15 Jun 2012 16:48:25 +0000 (16:48 +0000)]
elementary: and now fix me

SVN revision: 72198

12 years agoelementary: add elm_progressbar_unit_format_function_set
Michael BOUCHAUD [Fri, 15 Jun 2012 16:32:54 +0000 (16:32 +0000)]
elementary: add elm_progressbar_unit_format_function_set

SVN revision: 72197

12 years agoelementary: fix typo in doc
Michael BOUCHAUD [Fri, 15 Jun 2012 16:21:21 +0000 (16:21 +0000)]
elementary: fix typo in doc

SVN revision: 72196

12 years agoelementary/elm_win: No need to define and undef the same macro all over again.
Stefan Schmidt [Fri, 15 Jun 2012 14:11:47 +0000 (14:11 +0000)]
elementary/elm_win: No need to define and undef the same macro all over again.

SVN revision: 72194

12 years agoelm: @since. Reviewers, please, review...
Vincent Torri [Fri, 15 Jun 2012 11:43:02 +0000 (11:43 +0000)]
elm: @since. Reviewers, please, review...

SVN revision: 72189

12 years agoelm test_genlist.c: Added more test case for genlist. 'Genlist Decorate Modes'. This...
Daniel Juyung Seo [Fri, 15 Jun 2012 07:58:11 +0000 (07:58 +0000)]
elm test_genlist.c: Added more test case for genlist. 'Genlist Decorate Modes'. This test runs 'decorate item mode' and 'decorate all mode' at the same time.

SVN revision: 72174

12 years agoelm genlist: Unset decorate item mode when decorate mode set is called. Yes that...
Daniel Juyung Seo [Fri, 15 Jun 2012 07:58:08 +0000 (07:58 +0000)]
elm genlist: Unset decorate item mode when decorate mode set is called. Yes that's so confusing. 'Decorate Item Mode' and 'Decorate Mode' are different and exlusive from the implementation.

SVN revision: 72173

12 years agoelm test_genlist.c: Add separator for each test case.
Daniel Juyung Seo [Fri, 15 Jun 2012 07:58:05 +0000 (07:58 +0000)]
elm test_genlist.c: Add separator for each test case.

SVN revision: 72172

12 years agoelementary: changelog and News. I avoid vtorri spanking :P
Michael BOUCHAUD [Thu, 14 Jun 2012 22:54:31 +0000 (22:54 +0000)]
elementary: changelog and News. I avoid vtorri spanking :P

SVN revision: 72152

12 years agoelementary: add an enum for mark repeat type, ELM_CALENDAR_LAST_DAY_OF_MONTH. fix...
Michael BOUCHAUD [Thu, 14 Jun 2012 17:10:31 +0000 (17:10 +0000)]
elementary: add an enum for mark repeat type, ELM_CALENDAR_LAST_DAY_OF_MONTH. fix #855

SVN revision: 72145

12 years agoelementary/elm_win: Also check for potential NULL in other defines
Stefan Schmidt [Thu, 14 Jun 2012 15:56:42 +0000 (15:56 +0000)]
elementary/elm_win: Also check for potential NULL in other defines

Thanks to Daniel Willmann pointing them out to me. Actually I wonder
why we need all this define and undef for ENGINE_COMPARE. Will dig a
bit deeper into that and see if we may can go with a single one.

SVN revision: 72144

12 years agoelementary/elm_win: Check argument for NULL before we pass it to strncmp
Stefan Schmidt [Thu, 14 Jun 2012 15:01:37 +0000 (15:01 +0000)]
elementary/elm_win: Check argument for NULL before we pass it to strncmp

strncmp() really does not like that. So we should not be lazy and check for it. Say thanks to
scan-build which reported these to me.

SVN revision: 72142

12 years agoFrom: Daniel Willmann <d.willmann@samsung.com>
Daniel Willmann [Thu, 14 Jun 2012 14:42:34 +0000 (14:42 +0000)]
From: Daniel Willmann <d.willmann@samsung.com>
Subject: [PATCH] elementary: Minor fix to the documentation of ActionSlider
Date: Thu, 14 Jun 2012 15:31:05 +0100

Yeah, the most overhead I could imagine. :-)

SVN revision: 72141

12 years agomassive, massive, MASSIVE spankies to the person that wrote gengrid's sorted insert...
Mike Blumenkrantz [Thu, 14 Jun 2012 14:11:04 +0000 (14:11 +0000)]
massive, massive, MASSIVE spankies to the person that wrote gengrid's sorted insert functions. cannot overstate the size of the spankies that await you if I decide to look through the svn logs.
also fixes ticket #984
--This line
\
, and those below, will be ignored--

M    lib/elm_gengrid.c

SVN revision: 72139

12 years agoAdd the reorder feature when the more panel is shown.
Jaehwan Kim [Thu, 14 Jun 2012 12:59:38 +0000 (12:59 +0000)]
Add the reorder feature when the more panel is shown.
After the item is long-pressed, it can be moved.

SVN revision: 72129

12 years agofix doc error as spotted by Daniel Willmann <d.willmann@samsung.com>
Mike Blumenkrantz [Thu, 14 Jun 2012 12:41:18 +0000 (12:41 +0000)]
fix doc error as spotted by Daniel Willmann <d.willmann@samsung.com>

SVN revision: 72127

12 years agoFrom: Seunggyun Kim <sgyun.kim@samsung.com>
Seunggyun Kim [Thu, 14 Jun 2012 10:55:16 +0000 (10:55 +0000)]
From: Seunggyun Kim <sgyun.kim@samsung.com>
Subject: [E-devel] [Patch] elm_config_font_overlay_apply bug fix

[Current Issue]
 - The API applies the changes with elm_config_font_overlay_set().
   But at the first time, application fonts have not been changed after
elm_config_font_overlay_apply api is called.
   The application fonts changed only when the display is updated or
elm_config_font_overlay_apply api is called again.

[Main cause]
 - When the elm_config_font_overlay_apply is called at fist time, it
calls
edje_text_class_del and edje_text_class_set in locally. But
edje_text_class_set just returns without _ejde_reclc() when new text
class
is ceated.
  So in this case, there is nothing to be changed.
  Since second call the api, edje_text_class_del api calls
_edje_recalc() in
locally. So the application fonts are changed.

[Change Description]
 - There is two method. The first is to enable ejde_test_class_set api
is
can be recalced when the fist calling.
   The second is to add _elm_rescale() function in
elm_config_font_overlay_apply API. This occurs edje_recalc effect
after font
overay set.
   I attached the second method.

SVN revision: 72124

12 years agofix discomfitors list scalign thing.. was actually image/icon madness.
Carsten Haitzler [Thu, 14 Jun 2012 07:55:55 +0000 (07:55 +0000)]
fix discomfitors list scalign thing.. was actually image/icon madness.
:)

SVN revision: 72109

12 years ago[elm] Forgotten __UNUSED__.
Gustavo Lima Chaves [Wed, 13 Jun 2012 17:21:34 +0000 (17:21 +0000)]
[elm] Forgotten __UNUSED__.

SVN revision: 72092

12 years agoBe clear about gesture layer's usage.
Gustavo Lima Chaves [Wed, 13 Jun 2012 17:21:13 +0000 (17:21 +0000)]
Be clear about gesture layer's usage.
Elm widget as parent, any Evas object as target.

SVN revision: 72091

12 years agoIn case of scroll in scroll, the outside scroller shouldn't be scrolled if the inside...
Jaehwan Kim [Wed, 13 Jun 2012 07:01:00 +0000 (07:01 +0000)]
In case of scroll in scroll, the outside scroller shouldn't be scrolled if the inside scroller can be scrolled.

SVN revision: 72064

12 years agoelementary: rename VIRTUAL into SPACER.
Cedric BAIL [Wed, 13 Jun 2012 03:23:01 +0000 (03:23 +0000)]
elementary: rename VIRTUAL into SPACER.

SVN revision: 72059

12 years ago[elm] Sexying up elm_win_icon_object_set()'s doc
Gustavo Lima Chaves [Tue, 12 Jun 2012 16:40:57 +0000 (16:40 +0000)]
[elm] Sexying up elm_win_icon_object_set()'s doc
 string.

SVN revision: 72045

12 years agobitch--
Carsten Haitzler [Tue, 12 Jun 2012 16:31:02 +0000 (16:31 +0000)]
bitch--

SVN revision: 72044

12 years agodebug bitch--
Carsten Haitzler [Tue, 12 Jun 2012 16:27:15 +0000 (16:27 +0000)]
debug bitch--

SVN revision: 72042

12 years agocomplaint--
Carsten Haitzler [Tue, 12 Jun 2012 16:21:56 +0000 (16:21 +0000)]
complaint--

SVN revision: 72040

12 years agoticket #902: elementary saves map data into /tmp
Mike Blumenkrantz [Tue, 12 Jun 2012 14:50:15 +0000 (14:50 +0000)]
ticket #902: elementary saves map data into /tmp
now we use XDG_CACHE_HOME

SVN revision: 72035

12 years agoelm/docs: Fix typo: no releted pages.
Rafael Antognolli [Tue, 12 Jun 2012 13:08:51 +0000 (13:08 +0000)]
elm/docs: Fix typo: no releted pages.

SVN revision: 72027

12 years agofix date in chlog
Carsten Haitzler [Tue, 12 Jun 2012 10:58:20 +0000 (10:58 +0000)]
fix date in chlog

SVN revision: 72016

12 years agoadd docs for new win funcs.
Carsten Haitzler [Tue, 12 Jun 2012 10:21:41 +0000 (10:21 +0000)]
add docs for new win funcs.

SVN revision: 72012

12 years agochangelog for added api's to elm
Carsten Haitzler [Tue, 12 Jun 2012 10:16:46 +0000 (10:16 +0000)]
changelog for added api's to elm

SVN revision: 72011

12 years agonew api's for hinting base+step sizes for a window.
Carsten Haitzler [Tue, 12 Jun 2012 10:15:19 +0000 (10:15 +0000)]
new api's for hinting base+step sizes for a window.

SVN revision: 72009

12 years agoelementary/transit - updated changelog
ChunEon Park [Tue, 12 Jun 2012 06:46:54 +0000 (06:46 +0000)]
elementary/transit - updated changelog

SVN revision: 71981

12 years agoelementary/po - updated
ChunEon Park [Tue, 12 Jun 2012 06:46:38 +0000 (06:46 +0000)]
elementary/po - updated

SVN revision: 71980

12 years agoelementary/transit - fixed wipe effect flickering.
ChunEon Park [Tue, 12 Jun 2012 06:39:25 +0000 (06:39 +0000)]
elementary/transit - fixed wipe effect flickering.

evas_map_point_coord APIs have the int values but evas_map_point_image_uv_set have the double parameters on the other hand.
This inconsistency causes the inexact result(flickering).

It's not good APIs for users.

SVN revision: 71979

12 years agoelementary/module : Modified 71929 with better way. Thanks ShinWoo.
WooHyun Jung [Tue, 12 Jun 2012 01:52:31 +0000 (01:52 +0000)]
elementary/module : Modified 71929 with better way. Thanks ShinWoo.
But I recommend to remove all callbacks with elm_widget_top_get(obj).

SVN revision: 71975

12 years agoanother non premul color
Davide Andreoli [Mon, 11 Jun 2012 23:56:01 +0000 (23:56 +0000)]
another non premul color

SVN revision: 71970

12 years agowhops, this file wasnt mean to be committed
Davide Andreoli [Mon, 11 Jun 2012 23:35:05 +0000 (23:35 +0000)]
whops, this file wasnt mean to be committed

SVN revision: 71968

12 years agoevas only handle premul colors (note: not making any news or bp)
Davide Andreoli [Mon, 11 Jun 2012 23:25:43 +0000 (23:25 +0000)]
evas only handle premul colors (note: not making any news or bp)

SVN revision: 71965

12 years agoshould probably return these values instead of just copy/pasting code around
Mike Blumenkrantz [Mon, 11 Jun 2012 08:19:04 +0000 (08:19 +0000)]
should probably return these values instead of just copy/pasting code around

SVN revision: 71935

12 years agoelementary/datetime - [E-devel] [Patch][elementary] datetime module, delete callback
ChunEon Park [Mon, 11 Jun 2012 07:09:48 +0000 (07:09 +0000)]
elementary/datetime - [E-devel] [Patch][elementary] datetime module, delete callback

Dear all, hello.

There is a case, in the _ctxpopup_parent_resize_cb() is called even
though the datetime is removed.
It makes a crash, so the callback should be deleted before removing
datetime. That's it.

Sincerely,
Shinwoo Kim.

Submitted-By-Off: Kim Shinwoo <kimcinoo.efl@gmail.com>

SVN revision: 71929

12 years agoElm ctxpopup: Fixed ctxpopup test.
Tom Hacohen [Sun, 10 Jun 2012 07:50:27 +0000 (07:50 +0000)]
Elm ctxpopup: Fixed ctxpopup test.

Patch by Daniel Zaoui.

SVN revision: 71889

12 years ago[elm] Just cosmetical, but since it's here on my
Gustavo Lima Chaves [Fri, 8 Jun 2012 21:05:51 +0000 (21:05 +0000)]
[elm] Just cosmetical, but since it's here on my
 changes...

SVN revision: 71869

12 years ago[elm] Oops, forgotten class smart cbs setting
Gustavo Lima Chaves [Fri, 8 Jun 2012 21:05:45 +0000 (21:05 +0000)]
[elm] Oops, forgotten class smart cbs setting
 paths.
This will also unb0rk Edje externals signal proxying.

SVN revision: 71868

12 years ago[elm] Fix elm_shutdown via Edje externals.
Gustavo Lima Chaves [Fri, 8 Jun 2012 21:05:37 +0000 (21:05 +0000)]
[elm] Fix elm_shutdown via Edje externals.
An EVAS_CALLBACK_DEL event cb will take place before the smart del
function, so there'll be more action taking place after that, and Elm
has be on.

SVN revision: 71867

12 years agoFixing win_example (Win - General API Overview) doc, includes were broken.
Jonas M. Gastal [Fri, 8 Jun 2012 19:56:51 +0000 (19:56 +0000)]
Fixing win_example (Win - General API Overview) doc, includes were broken.

Author:    Guilherme Iscaro <iscaro@profusion.mobi>

SVN revision: 71864

12 years agoAdding related pages link.
Jonas M. Gastal [Fri, 8 Jun 2012 13:21:47 +0000 (13:21 +0000)]
Adding related pages link.

Author:    Guilherme Iscaro <iscaro@profusion.mobi>

SVN revision: 71849

12 years agoAdd elm_object_scroll_hold/freeze_get
Jaehwan Kim [Fri, 8 Jun 2012 08:59:07 +0000 (08:59 +0000)]
Add elm_object_scroll_hold/freeze_get

SVN revision: 71836

12 years agoelm notify can now have the timeout set before it becomes visible
Mike Blumenkrantz [Fri, 8 Jun 2012 07:20:39 +0000 (07:20 +0000)]
elm notify can now have the timeout set before it becomes visible

SVN revision: 71832

12 years agoelementary: randomly testing elementary let me come to this completly broken widget.
Cedric BAIL [Fri, 8 Jun 2012 02:16:19 +0000 (02:16 +0000)]
elementary: randomly testing elementary let me come to this completly broken widget.

SVN revision: 71828

12 years agoChange the comment.
Jaehwan Kim [Fri, 8 Jun 2012 01:35:05 +0000 (01:35 +0000)]
Change the comment.

SVN revision: 71826

12 years agoelm: Applied elm_icon_file_set -> elm_image_file_set api change.
Daniel Juyung Seo [Thu, 7 Jun 2012 11:40:54 +0000 (11:40 +0000)]
elm: Applied elm_icon_file_set -> elm_image_file_set api change.

SVN revision: 71804

12 years agotypos in notify test
Mike Blumenkrantz [Thu, 7 Jun 2012 09:52:14 +0000 (09:52 +0000)]
typos in notify test

SVN revision: 71788

12 years agoAdd the NEWS and @since.
Jaehwan Kim [Thu, 7 Jun 2012 07:53:33 +0000 (07:53 +0000)]
Add the NEWS and @since.

SVN revision: 71780

12 years agoSorry, I missed my name in changelog.
Jaehwan Kim [Thu, 7 Jun 2012 07:40:22 +0000 (07:40 +0000)]
Sorry, I missed my name in changelog.

SVN revision: 71778

12 years agoRemove the APIs elm_toolbar_items_max_set/get.
Jaehwan Kim [Thu, 7 Jun 2012 07:32:55 +0000 (07:32 +0000)]
Remove the APIs elm_toolbar_items_max_set/get.
Instead of them, add the APIs elm_toolbar_standard_priority_set/get.
The items which are lower than standard priority are located in more menu or panel.

SVN revision: 71777

12 years ago[elm] Dangling elm_icon_resizable_set() calls, be gone.
Gustavo Lima Chaves [Wed, 6 Jun 2012 18:05:22 +0000 (18:05 +0000)]
[elm] Dangling elm_icon_resizable_set() calls, be gone.

SVN revision: 71763

12 years agounbreak elm configure
Mike Blumenkrantz [Wed, 6 Jun 2012 16:43:35 +0000 (16:43 +0000)]
unbreak elm configure
SPANK SPANK SPANK devilhorns!

SVN revision: 71762

12 years ago[elm] Initialize forgotten variable on naviframe.
Gustavo Lima Chaves [Wed, 6 Jun 2012 14:40:34 +0000 (14:40 +0000)]
[elm] Initialize forgotten variable on naviframe.

SVN revision: 71759

12 years agoElm: Patches from Rob Bradford <rob@linux.intel.com> to:
Christopher Michael [Wed, 6 Jun 2012 13:55:15 +0000 (13:55 +0000)]
Elm: Patches from Rob Bradford <rob@linux.intel.com> to:

* Move X related window items into their own substruct of
_Elm_Win_Smart_Data to allow grouping based on engine.

* Move X related cursor items into their own substruct of Elm_Cursor
to make supporting cursors on other platforms cleaner.

* Add support for setting the cursor under Wayland:
* Introduce a configure option and #define to as per other engines
* Add always-built API function to allow identification of running
under Wayland (like for X11)
* Call into Ecore to set the cursor when the mouse enters the desired
widget.

SVN revision: 71754

12 years agoElm: Update ChangeLog for Rob's patch.
Christopher Michael [Wed, 6 Jun 2012 08:25:39 +0000 (08:25 +0000)]
Elm: Update ChangeLog for Rob's patch.

SVN revision: 71737

12 years agoElm: Patch from Rob Bradford <rob@linux.intel.com> for:
Christopher Michael [Wed, 6 Jun 2012 08:25:12 +0000 (08:25 +0000)]
Elm: Patch from Rob Bradford <rob@linux.intel.com> for:

* Move X related window items into their own substruct of
_Elm_Win_Smart_Data to allow grouping based on engine.

SVN revision: 71736

12 years agoelm/edje_externals/index: fix formatting
Jihoon Kim [Wed, 6 Jun 2012 02:51:28 +0000 (02:51 +0000)]
elm/edje_externals/index: fix formatting

SVN revision: 71727

12 years agoelm_intro.h: fix @version from 0.8.0 to 1.0.0
Jihoon Kim [Wed, 6 Jun 2012 02:50:32 +0000 (02:50 +0000)]
elm_intro.h: fix @version from 0.8.0 to 1.0.0

SVN revision: 71726

12 years ago[elm] Welcome pretty widget hierarchy images on docs.
Gustavo Lima Chaves [Tue, 5 Jun 2012 22:41:21 +0000 (22:41 +0000)]
[elm] Welcome pretty widget hierarchy images on docs.

The Makefile rule building that is commented out -- meant to be run
locally once in a while (when changes on overall widget tree happen)
and changed images commited.

SVN revision: 71721

12 years ago[elm] Separate win-inwin properly.
Gustavo Lima Chaves [Tue, 5 Jun 2012 22:39:59 +0000 (22:39 +0000)]
[elm] Separate win-inwin properly.

SVN revision: 71720

12 years ago[elm] Put some order on widget preview programs
Gustavo Lima Chaves [Tue, 5 Jun 2012 22:27:15 +0000 (22:27 +0000)]
[elm] Put some order on widget preview programs
 generation
and also on widget preview images generation.

SVN revision: 71719

12 years ago[elm] The name of the widget is conformant.
Gustavo Lima Chaves [Tue, 5 Jun 2012 22:27:09 +0000 (22:27 +0000)]
[elm] The name of the widget is conformant.

SVN revision: 71718

12 years agoElementary.h.in: it's time to remove 'OK' mark
Jihoon Kim [Mon, 4 Jun 2012 23:34:58 +0000 (23:34 +0000)]
Elementary.h.in: it's time to remove 'OK' mark

SVN revision: 71693

12 years ago[elm] And commit the damn new file.
Gustavo Lima Chaves [Mon, 4 Jun 2012 17:37:46 +0000 (17:37 +0000)]
[elm] And commit the damn new file.

SVN revision: 71688

12 years ago[elm] Give a dedicated file for inwin widget.
Gustavo Lima Chaves [Mon, 4 Jun 2012 17:36:01 +0000 (17:36 +0000)]
[elm] Give a dedicated file for inwin widget.
Thus facilitating hierarchy tree generation.

SVN revision: 71687

12 years ago[elm] Revive file=NULL path on elm_photo_file_set().
Gustavo Lima Chaves [Mon, 4 Jun 2012 16:23:31 +0000 (16:23 +0000)]
[elm] Revive file=NULL path on elm_photo_file_set().
Thanks, Tom, for pointing this out.

SVN revision: 71686

12 years agoelementary: show case the use of VIRTUAL part.
Cedric BAIL [Mon, 4 Jun 2012 02:58:44 +0000 (02:58 +0000)]
elementary: show case the use of VIRTUAL part.

SVN revision: 71676

12 years agoelementary: Don't try to restore table part that the job of Edje.
Cedric BAIL [Mon, 4 Jun 2012 02:58:08 +0000 (02:58 +0000)]
elementary: Don't try to restore table part that the job of Edje.

NOTE: wondering if all that code shouldn't just be removed.

SVN revision: 71675

12 years agofix in doxy
Davide Andreoli [Sun, 3 Jun 2012 18:36:06 +0000 (18:36 +0000)]
fix in doxy

SVN revision: 71668

12 years agoelm: fix the name and title of window in some elementary test
Jihoon Kim [Sat, 2 Jun 2012 08:18:32 +0000 (08:18 +0000)]
elm: fix the name and title of window in some elementary test

SVN revision: 71641

12 years ago[elm] Naviframe now ported.
Gustavo Lima Chaves [Fri, 1 Jun 2012 21:56:09 +0000 (21:56 +0000)]
[elm] Naviframe now ported.
Man, this one was tough (though there are toughers). Please help me
test it in the real, wild, world.

SVN revision: 71635

12 years agoforgot to update changelog last time
Mike Blumenkrantz [Fri, 1 Jun 2012 10:15:41 +0000 (10:15 +0000)]
forgot to update changelog last time

SVN revision: 71619

12 years agosanitize bool param, prevent unnecessary ui recalc when mirror mode is not changed
Mike Blumenkrantz [Fri, 1 Jun 2012 09:55:44 +0000 (09:55 +0000)]
sanitize bool param, prevent unnecessary ui recalc when mirror mode is not changed

SVN revision: 71617

12 years agoelm elm_widget.h elm_widget_layout.h: Fixed typo.
Daniel Juyung Seo [Thu, 31 May 2012 23:02:54 +0000 (23:02 +0000)]
elm elm_widget.h elm_widget_layout.h: Fixed typo.

SVN revision: 71611

12 years agoelm headers: Fixed typo.
Daniel Juyung Seo [Thu, 31 May 2012 17:55:07 +0000 (17:55 +0000)]
elm headers: Fixed typo.

SVN revision: 71589

12 years ago[elm] Simplify and comment 71573's work.
Gustavo Lima Chaves [Thu, 31 May 2012 16:23:19 +0000 (16:23 +0000)]
[elm] Simplify and comment 71573's work.

Let's use the smart data fetching macro whenever possible.

SVN revision: 71587

12 years agofix item min height in tree
Mike Blumenkrantz [Thu, 31 May 2012 08:56:30 +0000 (08:56 +0000)]
fix item min height in tree

SVN revision: 71576

12 years agoelementary : child_can_focus should be EINA_FALSE only when all
WooHyun Jung [Thu, 31 May 2012 07:15:28 +0000 (07:15 +0000)]
elementary : child_can_focus should be EINA_FALSE only when all
children in the object tree were not focusable.

SVN revision: 71573

12 years agotest_entry.c: fix formatting
Jihoon Kim [Wed, 30 May 2012 23:59:08 +0000 (23:59 +0000)]
test_entry.c: fix formatting

SVN revision: 71568

12 years ago[elm] item del, not free, on index.
Gustavo Lima Chaves [Wed, 30 May 2012 17:42:26 +0000 (17:42 +0000)]
[elm] item del, not free, on index.

SVN revision: 71564

12 years ago[elm] Fix index example.
Gustavo Lima Chaves [Wed, 30 May 2012 17:41:48 +0000 (17:41 +0000)]
[elm] Fix index example.

note to self: were on drugs here?

SVN revision: 71563

12 years agoFrom: thiep ha <thiep.ha@samsung.com>
thiep ha [Wed, 30 May 2012 12:18:48 +0000 (12:18 +0000)]
From: thiep ha <thiep.ha@samsung.com>
Subject: Re: [E-devel] [Patch] [elm_entry] New APIs for user style

Thank you for your comments.
I would like to send you the modified patch.
Followings are my modification:
- Add my part to ChangeLog, AUTHORS files as Raster's comment.
- Add const to the parameter of elm_entry_text_style_user_peek and
example for pop and peek to test_entry_style_user as Daniel's comment.

SVN revision: 71557

12 years agoalso fix selected item scrolling when item prepended to the genlist is offscreen
Mike Blumenkrantz [Wed, 30 May 2012 10:44:59 +0000 (10:44 +0000)]
also fix selected item scrolling when item prepended to the genlist is offscreen

SVN revision: 71554

12 years agoThis is a small change, so I won't changelog it (or backport), but
Carsten Haitzler [Wed, 30 May 2012 10:08:41 +0000 (10:08 +0000)]
This is a small change, so I won't changelog it (or backport), but
make _shutdown() funcs across efl complain and be unhappy if you
shutdown to < 0 shutdowns and not pull init count below 0.

SVN revision: 71548

12 years agofix genlist item signals on prepend
Mike Blumenkrantz [Wed, 30 May 2012 09:14:45 +0000 (09:14 +0000)]
fix genlist item signals on prepend

SVN revision: 71547

12 years agoelementary/genlist: clean up codes
Hyoyoung Chang [Wed, 30 May 2012 08:09:09 +0000 (08:09 +0000)]
elementary/genlist: clean up codes

SVN revision: 71541

12 years agoelm genlist: Fixed formatting. Added more braces.
Daniel Juyung Seo [Wed, 30 May 2012 07:27:05 +0000 (07:27 +0000)]
elm genlist: Fixed formatting. Added more braces.

SVN revision: 71539

12 years agoelm genlist: Cut off long lines.
Daniel Juyung Seo [Wed, 30 May 2012 06:40:46 +0000 (06:40 +0000)]
elm genlist: Cut off long lines.

SVN revision: 71533

12 years agoelm win: Place ifdef to a proper place. Initialize variable.
Daniel Juyung Seo [Wed, 30 May 2012 04:57:31 +0000 (04:57 +0000)]
elm win: Place ifdef to a proper place. Initialize variable.

SVN revision: 71529

12 years agoelm genlist: Use EINA_SAFETY_ON_TRUE_RETURN for nicely warn user.
Daniel Juyung Seo [Wed, 30 May 2012 04:57:29 +0000 (04:57 +0000)]
elm genlist: Use EINA_SAFETY_ON_TRUE_RETURN for nicely warn user.

SVN revision: 71528

12 years agoelementary: oops, this should have never got in.
Cedric BAIL [Wed, 30 May 2012 01:06:07 +0000 (01:06 +0000)]
elementary: oops, this should have never got in.

SVN revision: 71521

12 years agoelementary: make expand effect faster.
Cedric BAIL [Wed, 30 May 2012 00:52:18 +0000 (00:52 +0000)]
elementary: make expand effect faster.

This a team work, half of the borkage by zmike and half by me. I hope we succeed.

NOTE: It is better to do one smart object that you apply map on it, that to apply
map on it's 10 childs separately.

SVN revision: 71520

12 years ago[elm] Better logic for elm bubble's text set call.
Gustavo Lima Chaves [Tue, 29 May 2012 21:02:01 +0000 (21:02 +0000)]
[elm] Better logic for elm bubble's text set call.

SVN revision: 71516

12 years ago[elm] Better logic for elm_box_unpack.
Gustavo Lima Chaves [Tue, 29 May 2012 21:01:55 +0000 (21:01 +0000)]
[elm] Better logic for elm_box_unpack.

SVN revision: 71515