platform/upstream/efl.git
13 years agoFrom: Hyoyoung Chang <hyoyoung.chang@samsung.com>
Hyoyoung Chang [Tue, 5 Jul 2011 01:33:59 +0000 (01:33 +0000)]
From: Hyoyoung Chang <hyoyoung.chang@samsung.com>
Subject: [E-devel] [patch] evas - add checking event type

Dear developers.

I found a bug about evas event handling.
In some situation, evas blocks some events by checking _evas_event_counter.
So I made a patch that is checking event type also event counter.

Reproduce steps:
1. make a window
2. show window before adding a elementary/genlist widget

--- codes ---
void _gl_mousedown_cb(void *data, Evas *evas, Evas_Object *obj, void *event_info)
{
  printf("_gl_mousedown_cb !! \n");
}

static Eina_Bool create_main_win(App *app)
{
  app->win = elm_win_add(NULL, "genlist-win", ELM_WIN_BASIC);
  evas_object_show(app->win);          <-- position 1

  Evas_Object *genlist = elm_genlist_add(app->win);
  elm_win_resize_object_add(app->win, genlist);
  evas_object_event_callback_add(genlist, EVAS_CALLBACK_MOUSE_DOWN, _gl_mousedown_cb, NULL);
  evas_object_show(genlist);

  evas_object_resize(app->win, 320, 240);
//evas_object_show(app->win);          <-- position 2

  return EINA_TRUE;
}
--- codes ---

In common use case, apps don't show main window at position 1.
However to reproduce, it can be at position 1. Then, focus is at just on main window.
In that situation, if a user clicks a genlist, its event is dropped by evas.
Because in mouse down callback, it give focus to genlist.

Then two events is made. First is mouse down, second is focus handling.
In event callback, evas processes mouse down after focus handling.
But evas found that mouse event is retarded event than focus handling.
So it ignores it.

This patch is introduce event handling type checking to
evas_object_event_callback_call.

SVN revision: 61026

13 years agounify more event handling, fix a little formatting
Mike Blumenkrantz [Tue, 5 Jul 2011 00:06:27 +0000 (00:06 +0000)]
unify more event handling, fix a little formatting

SVN revision: 61025

13 years ago[evas] cedric, stop influencing me to break builds.
Gustavo Lima Chaves [Mon, 4 Jul 2011 20:37:16 +0000 (20:37 +0000)]
[evas] cedric, stop influencing me to break builds.

SVN revision: 61022

13 years agoecore/ecore_con - Make ecore_con_lookup() work with ipv4 too
Rafael Antognolli [Mon, 4 Jul 2011 20:04:18 +0000 (20:04 +0000)]
ecore/ecore_con - Make ecore_con_lookup() work with ipv4 too

SVN revision: 61021

13 years agoEina: Spelling fixes and using smaller size for hash image.
Jonas M. Gastal [Mon, 4 Jul 2011 19:48:01 +0000 (19:48 +0000)]
Eina: Spelling fixes and using smaller size for hash image.

SVN revision: 61018

13 years agoecore/fd_handler - Add detailed description to this group.
Rafael Antognolli [Mon, 4 Jul 2011 18:31:23 +0000 (18:31 +0000)]
ecore/fd_handler - Add detailed description to this group.

SVN revision: 61016

13 years agoecore/events - add detailed description to this group.
Rafael Antognolli [Mon, 4 Jul 2011 18:31:13 +0000 (18:31 +0000)]
ecore/events - add detailed description to this group.

SVN revision: 61015

13 years agoecore - add and fix links to examples on each module description.
Rafael Antognolli [Mon, 4 Jul 2011 18:31:02 +0000 (18:31 +0000)]
ecore - add and fix links to examples on each module description.

SVN revision: 61014

13 years agoEina: Adding link to example in eina_str documentation.
Jonas M. Gastal [Mon, 4 Jul 2011 17:18:30 +0000 (17:18 +0000)]
Eina: Adding link to example in eina_str documentation.

SVN revision: 61013

13 years ago[evas] Documenting and exemplifying the following:
Gustavo Lima Chaves [Mon, 4 Jul 2011 16:23:12 +0000 (16:23 +0000)]
[evas] Documenting and exemplifying the following:
 - evas_object_text_add
 - evas_object_text_font_get
 - evas_object_text_font_set
 - evas_object_text_font_source_get
 - evas_object_text_font_source_set
 - evas_object_text_glow2_color_get
 - evas_object_text_glow2_color_set
 - evas_object_text_glow_color_get
 - evas_object_text_glow_color_set
 - evas_object_text_outline_color_get
 - evas_object_text_outline_color_set
 - evas_object_text_shadow_color_get
 - evas_object_text_shadow_color_set
 - evas_object_text_style_get
 - evas_object_text_style_set
 - evas_object_text_text_get
 - evas_object_text_text_set

SVN revision: 61012

13 years ago[evas] Allowing one to build examples by hand.
Gustavo Lima Chaves [Mon, 4 Jul 2011 16:23:00 +0000 (16:23 +0000)]
[evas] Allowing one to build examples by hand.

SVN revision: 61011

13 years agoEvas Map, little clarifications and an overview example
Iván Briano [Mon, 4 Jul 2011 15:22:53 +0000 (15:22 +0000)]
Evas Map, little clarifications and an overview example

SVN revision: 61010

13 years agoemotion/doc - add a link in the main page to the API reference.
Rafael Antognolli [Mon, 4 Jul 2011 14:42:56 +0000 (14:42 +0000)]
emotion/doc - add a link in the main page to the API reference.

SVN revision: 61009

13 years agoemotion - better introduction and link to emotion_test.
Rafael Antognolli [Mon, 4 Jul 2011 14:31:01 +0000 (14:31 +0000)]
emotion - better introduction and link to emotion_test.

SVN revision: 61008

13 years agoemotion/example - basic usage of emotion commented.
Rafael Antognolli [Mon, 4 Jul 2011 14:30:54 +0000 (14:30 +0000)]
emotion/example - basic usage of emotion commented.

SVN revision: 61007

13 years agoand also enable mmap safety here
Carsten Haitzler [Mon, 4 Jul 2011 09:59:49 +0000 (09:59 +0000)]
and also enable mmap safety here

SVN revision: 60984

13 years agouse eina mmap safety.
Carsten Haitzler [Mon, 4 Jul 2011 09:44:11 +0000 (09:44 +0000)]
use eina mmap safety.

SVN revision: 60982

13 years agoenable mmap safety in eet.
Carsten Haitzler [Mon, 4 Jul 2011 09:36:07 +0000 (09:36 +0000)]
enable mmap safety in eet.

SVN revision: 60979

13 years agoenable mmap safety in efreet.
Carsten Haitzler [Mon, 4 Jul 2011 09:35:39 +0000 (09:35 +0000)]
enable mmap safety in efreet.

SVN revision: 60978

13 years agoand include eina_mmap.h in Eina.h <- forgot
Carsten Haitzler [Mon, 4 Jul 2011 09:35:17 +0000 (09:35 +0000)]
and include eina_mmap.h in Eina.h <- forgot

SVN revision: 60977

13 years agoadd eina mmap safety handling.
Carsten Haitzler [Mon, 4 Jul 2011 09:29:59 +0000 (09:29 +0000)]
add eina mmap safety handling.

SVN revision: 60976

13 years agofix some segvs in eet_node
Mike Blumenkrantz [Mon, 4 Jul 2011 03:50:37 +0000 (03:50 +0000)]
fix some segvs in eet_node

SVN revision: 60958

13 years agoadd a bunch of functions for manipulating eet_node structs
Mike Blumenkrantz [Mon, 4 Jul 2011 03:47:03 +0000 (03:47 +0000)]
add a bunch of functions for manipulating eet_node structs

SVN revision: 60957

13 years ago<arrowdodger> Patch to unbreak eio build on systems without xattr: http://intara...
Mike Blumenkrantz [Sun, 3 Jul 2011 17:58:57 +0000 (17:58 +0000)]
<arrowdodger> Patch to unbreak eio build on systems without xattr: intara.org.ru/eio.diff

SVN revision: 60955

13 years agoeio: morning speedup, pack feedback together to reduce context switch.
Cedric BAIL [Sat, 2 Jul 2011 11:06:52 +0000 (11:06 +0000)]
eio: morning speedup, pack feedback together to reduce context switch.

SVN revision: 60935

13 years agoEmotion: making emotion_object_play_set doc appear.
Jonas M. Gastal [Fri, 1 Jul 2011 17:13:17 +0000 (17:13 +0000)]
Emotion: making emotion_object_play_set doc appear.

SVN revision: 60923

13 years ago[evas] Documentation fixes.
Gustavo Lima Chaves [Fri, 1 Jul 2011 16:19:27 +0000 (16:19 +0000)]
[evas] Documentation fixes.

SVN revision: 60922

13 years ago[evas] Documenting the following:
Gustavo Lima Chaves [Fri, 1 Jul 2011 16:19:15 +0000 (16:19 +0000)]
[evas] Documenting the following:
 - evas_object_image_load_dpi_get
 - evas_object_image_load_dpi_set
 - evas_object_image_load_error_get
 - evas_object_image_load_region_get
 - evas_object_image_load_region_set
 - evas_object_image_load_scale_down_get
 - evas_object_image_load_scale_down_set
 - evas_object_image_load_size_get
 - evas_object_image_load_size_set

SVN revision: 60921

13 years agoemotion/doc - Document more functions
Rafael Antognolli [Fri, 1 Jul 2011 14:08:29 +0000 (14:08 +0000)]
emotion/doc - Document more functions

 - emotion_object_size_get
 - emotion_object_smooth_scale_set
 - emotion_object_smooth_scale_get
 - emotion_object_ratio_get
 - emotion_object_video_mute_set
 - emotion_object_video_mute_get
 - emotion_object_title_get
 - emotion_object_meta_info_get
 - emotion_object_vis_set
 - emotion_object_vis_get
 - emotion_object_vis_supported

SVN revision: 60919

13 years ago[evas] Documenting the following.
Gustavo Lima Chaves [Fri, 1 Jul 2011 13:51:44 +0000 (13:51 +0000)]
[evas] Documenting the following.
 - evas_object_image_content_hint_get
 - evas_object_image_content_hint_set
 - evas_object_image_data_copy_set
 - evas_object_image_data_get
 - evas_object_image_data_set
 - evas_object_image_data_update_add

SVN revision: 60918

13 years agoEmotion: signals documentation.
Jonas M. Gastal [Fri, 1 Jul 2011 13:46:25 +0000 (13:46 +0000)]
Emotion: signals documentation.

SVN revision: 60917

13 years agoevas/evas_map - removed white trailings.
ChunEon Park [Fri, 1 Jul 2011 11:43:50 +0000 (11:43 +0000)]
evas/evas_map - removed white trailings.

SVN revision: 60916

13 years agoevas/main.c - removed useless lines.
ChunEon Park [Fri, 1 Jul 2011 11:32:21 +0000 (11:32 +0000)]
evas/main.c - removed useless lines.

SVN revision: 60915

13 years agoevas/evas_map - added workaround code for avoid afterimage problem temporary.
ChunEon Park [Fri, 1 Jul 2011 11:30:17 +0000 (11:30 +0000)]
evas/evas_map - added workaround code for avoid afterimage problem temporary.

Since the last frame is not updated when map is disabled,
Afterimage problem is happened in s/w rendering.
Need to find out the fundanmental reason then fix it.

SVN revision: 60914

13 years agoevas/evas_map - reverted the work around code.
ChunEon Park [Fri, 1 Jul 2011 10:58:58 +0000 (10:58 +0000)]
evas/evas_map - reverted the work around code.

SVN revision: 60913

13 years agoemotion: add empty infrastructure for suspending the pipeline.
Cedric BAIL [Fri, 1 Jul 2011 08:57:54 +0000 (08:57 +0000)]
emotion: add empty infrastructure for suspending the pipeline.

SVN revision: 60909

13 years agoevas/evas_map - fixed workaround code more properly.
ChunEon Park [Fri, 1 Jul 2011 04:35:26 +0000 (04:35 +0000)]
evas/evas_map - fixed workaround code more properly.

SVN revision: 60906

13 years agoNot so unused
Iván Briano [Fri, 1 Jul 2011 02:02:02 +0000 (02:02 +0000)]
Not so unused

SVN revision: 60904

13 years agoevas/evas_map - added workaround code to remove afterimage problem.
ChunEon Park [Fri, 1 Jul 2011 01:10:32 +0000 (01:10 +0000)]
evas/evas_map - added workaround code to remove afterimage problem.

Sine the last frame is not updated when map is disabled,
Afterimage problem is happened in software rendering.
Need to find out the reason in the rendering engine then fix it.
However, it's hard to fix the problem now, added a just workaround code temporary.

This problem will be fixed later or be removed when the rendering engine is refactored completely.

SVN revision: 60901

13 years agoFix epoll delete fd handling in child process - #796
Carsten Haitzler [Fri, 1 Jul 2011 00:04:06 +0000 (00:04 +0000)]
Fix epoll delete fd handling in child process - #796

SVN revision: 60895

13 years ago[evas] Documenting the following:
Gustavo Lima Chaves [Thu, 30 Jun 2011 21:55:16 +0000 (21:55 +0000)]
[evas] Documenting the following:
 - evas_object_image_preload
 - evas_object_image_reload
 - evas_object_image_save
 - evas_object_image_scale_hint_get
 - evas_object_image_scale_hint_set
 - evas_object_image_size_get
 - evas_object_image_size_set

SVN revision: 60889

13 years agoEmotion: emotion play control functions documentation.
Jonas M. Gastal [Thu, 30 Jun 2011 21:38:44 +0000 (21:38 +0000)]
Emotion: emotion play control functions documentation.

SVN revision: 60888

13 years ago[evas] Documenting/exemplifying the following:
Gustavo Lima Chaves [Thu, 30 Jun 2011 21:29:02 +0000 (21:29 +0000)]
[evas] Documenting/exemplifying the following:
 - evas_object_image_smooth_scale_get
 - evas_object_image_smooth_scale_set
 - evas_object_image_source_get
 - evas_object_image_source_set
 - evas_object_image_source_unset
 - evas_object_image_stride_get

SVN revision: 60887

13 years agoemotion/doc - Document some audio functions.
Rafael Antognolli [Thu, 30 Jun 2011 20:02:12 +0000 (20:02 +0000)]
emotion/doc - Document some audio functions.

 - emotion_object_audio_volume_set
 - emotion_object_audio_volume_get
 - emotion_object_audio_mute_set
 - emotion_object_audio_mute_get

SVN revision: 60884

13 years agoemotion/doc - documented the initialization functions.
Rafael Antognolli [Thu, 30 Jun 2011 18:31:39 +0000 (18:31 +0000)]
emotion/doc - documented the initialization functions.

SVN revision: 60880

13 years agoemotion/doc - Give a brief description of the library in the front page.
Rafael Antognolli [Thu, 30 Jun 2011 18:31:36 +0000 (18:31 +0000)]
emotion/doc - Give a brief description of the library in the front page.

SVN revision: 60879

13 years agoEcore: ecore_pipe documentation.
Jonas M. Gastal [Thu, 30 Jun 2011 18:10:30 +0000 (18:10 +0000)]
Ecore: ecore_pipe documentation.

SVN revision: 60878

13 years agoemotion: cleanup emotion async loader on file set.
Cedric BAIL [Thu, 30 Jun 2011 09:49:24 +0000 (09:49 +0000)]
emotion: cleanup emotion async loader on file set.

SVN revision: 60869

13 years agocreate mount point directory if it doesn't exist
Mike Blumenkrantz [Thu, 30 Jun 2011 08:15:42 +0000 (08:15 +0000)]
create mount point directory if it doesn't exist

SVN revision: 60866

13 years agoshuffle signal handler setup and remove job, fix startup file check
Mike Blumenkrantz [Thu, 30 Jun 2011 06:49:54 +0000 (06:49 +0000)]
shuffle signal handler setup and remove job, fix startup file check

SVN revision: 60864

13 years agoedje : Password's last char show feature supported. This patch is made
WooHyun Jung [Thu, 30 Jun 2011 05:31:08 +0000 (05:31 +0000)]
edje : Password's last char show feature supported. This patch is made
by Shilpa.

SVN revision: 60858

13 years agoadd signal handlers
Mike Blumenkrantz [Thu, 30 Jun 2011 03:57:49 +0000 (03:57 +0000)]
add signal handlers

SVN revision: 60857

13 years agomake eeze_scanner suid
Mike Blumenkrantz [Thu, 30 Jun 2011 03:57:47 +0000 (03:57 +0000)]
make eeze_scanner suid

SVN revision: 60856

13 years ago[evas] Documenting the following image functions:
Gustavo Lima Chaves [Wed, 29 Jun 2011 21:06:36 +0000 (21:06 +0000)]
[evas] Documenting the following image functions:
 - evas_object_image_alpha_get
 - evas_object_image_alpha_set
 - evas_object_image_border_center_fill_get
 - evas_object_image_border_center_fill_set
 - evas_object_image_border_get
 - evas_object_image_border_scale_get
 - evas_object_image_border_scale_set
 - evas_object_image_border_set

SVN revision: 60844

13 years agoemotion/doc - Use the same doc style from the other libraries.
Rafael Antognolli [Wed, 29 Jun 2011 20:26:15 +0000 (20:26 +0000)]
emotion/doc - Use the same doc style from the other libraries.

Copied css, header, footer and images from ecore.

SVN revision: 60840

13 years agoemotion/doc - doc build now uses the build system, instead gendoc.
Rafael Antognolli [Wed, 29 Jun 2011 20:13:37 +0000 (20:13 +0000)]
emotion/doc - doc build now uses the build system, instead gendoc.

SVN revision: 60839

13 years agowhoops, forgot to actually add the scanner last time
Mike Blumenkrantz [Wed, 29 Jun 2011 19:54:39 +0000 (19:54 +0000)]
whoops, forgot to actually add the scanner last time

SVN revision: 60838

13 years agosync disk find/watch qualifiers
Mike Blumenkrantz [Wed, 29 Jun 2011 19:53:11 +0000 (19:53 +0000)]
sync disk find/watch qualifiers

SVN revision: 60836

13 years agoEcore: Ecore_X: Add missing EAPI for ecore_x_dnd_source_action_get
Christopher Michael [Wed, 29 Jun 2011 19:40:20 +0000 (19:40 +0000)]
Ecore: Ecore_X: Add missing EAPI for ecore_x_dnd_source_action_get
function.

SVN revision: 60834

13 years agoeeze_scanner seems to finally be complete, have at it
Mike Blumenkrantz [Wed, 29 Jun 2011 18:53:40 +0000 (18:53 +0000)]
eeze_scanner seems to finally be complete, have at it

SVN revision: 60833

13 years agofix some segvs and drive detection
Mike Blumenkrantz [Wed, 29 Jun 2011 18:53:38 +0000 (18:53 +0000)]
fix some segvs and drive detection

SVN revision: 60832

13 years agoecore/timer - Document ecore_timer_freeze and ecore_timer_thaw.
Rafael Antognolli [Wed, 29 Jun 2011 18:15:36 +0000 (18:15 +0000)]
ecore/timer - Document ecore_timer_freeze and ecore_timer_thaw.

SVN revision: 60830

13 years agoecore/poller - Add a poller example and its explanation.
Rafael Antognolli [Wed, 29 Jun 2011 18:07:34 +0000 (18:07 +0000)]
ecore/poller - Add a poller example and its explanation.

SVN revision: 60829

13 years agoecore/time - Rename example to avoid mismatch.
Rafael Antognolli [Wed, 29 Jun 2011 18:07:23 +0000 (18:07 +0000)]
ecore/time - Rename example to avoid mismatch.

SVN revision: 60828

13 years agoecore/timer - Add a commented example.
Rafael Antognolli [Wed, 29 Jun 2011 18:07:08 +0000 (18:07 +0000)]
ecore/timer - Add a commented example.

SVN revision: 60827

13 years agoemotion: add some help to debug the pipeline.
Cedric BAIL [Wed, 29 Jun 2011 17:45:13 +0000 (17:45 +0000)]
emotion: add some help to debug the pipeline.

SVN revision: 60826

13 years agoemotion: restore/save last know position for file.
Cedric BAIL [Wed, 29 Jun 2011 17:30:19 +0000 (17:30 +0000)]
emotion: restore/save last know position for file.

SVN revision: 60825

13 years agoeio: more xattr support.
Cedric BAIL [Wed, 29 Jun 2011 17:28:55 +0000 (17:28 +0000)]
eio: more xattr support.

SVN revision: 60824

13 years ago[evas] Unbork examples, sorry.
Gustavo Lima Chaves [Wed, 29 Jun 2011 14:46:29 +0000 (14:46 +0000)]
[evas] Unbork examples, sorry.

SVN revision: 60821

13 years agoeio: forgotten Eio.h decl.
Cedric BAIL [Wed, 29 Jun 2011 14:16:41 +0000 (14:16 +0000)]
eio: forgotten Eio.h decl.

SVN revision: 60820

13 years agoemotion: use stringshare for file.
Cedric BAIL [Wed, 29 Jun 2011 13:58:42 +0000 (13:58 +0000)]
emotion: use stringshare for file.

SVN revision: 60818

13 years ago[evas] Documantation and examples on this group of
Gustavo Lima Chaves [Wed, 29 Jun 2011 13:25:58 +0000 (13:25 +0000)]
[evas] Documantation and examples on this group of
 functions:
- evas_object_image_add
- evas_object_image_file_get
- evas_object_image_file_set
- evas_object_image_filled_add
- evas_object_image_filled_get
- evas_object_image_filled_set
- evas_object_image_fill_get
- evas_object_image_fill_set

SVN revision: 60817

13 years agoecore: forgotten eina_threads_init/shutdown.
Cedric BAIL [Wed, 29 Jun 2011 08:24:13 +0000 (08:24 +0000)]
ecore: forgotten eina_threads_init/shutdown.

SVN revision: 60801

13 years agoEvas events: Fix issues with mouse_in/out caused by previous commit.
Tom Hacohen [Wed, 29 Jun 2011 05:05:35 +0000 (05:05 +0000)]
Evas events: Fix issues with mouse_in/out caused by previous commit.

SVN revision: 60793

13 years agoEvas events: Re-apply commits 60787,60788.
Tom Hacohen [Wed, 29 Jun 2011 05:05:32 +0000 (05:05 +0000)]
Evas events: Re-apply commits 60787,60788.

SVN revision: 60792

13 years agoREVERT commits 60787 and 60788 by tasn. BORK mouse in/out (e17 menus)
Carsten Haitzler [Wed, 29 Jun 2011 03:14:57 +0000 (03:14 +0000)]
REVERT commits 60787 and 60788 by tasn. BORK mouse in/out (e17 menus)

SVN revision: 60790

13 years agoIt doesn't look like this matters, so let's fix the build.
Iván Briano [Wed, 29 Jun 2011 02:32:37 +0000 (02:32 +0000)]
It doesn't look like this matters, so let's fix the build.

And if it does matter, I hope it breaks something from cedric. One femur, for example. Or both.

SVN revision: 60789

13 years agoEvas events: Fixed more issues with pointer grabbing.
Tom Hacohen [Wed, 29 Jun 2011 02:03:33 +0000 (02:03 +0000)]
Evas events: Fixed more issues with pointer grabbing.

We want to free the grab even if mouse up happened outside of the
object's region (that's the whole point of grabbing...). Also, we don't
want to update the grabbed list anywhere but in mouse down.

SVN revision: 60788

13 years agoEvas events: Fix 1 more issue with pointer grabbing.
Tom Hacohen [Wed, 29 Jun 2011 02:03:25 +0000 (02:03 +0000)]
Evas events: Fix 1 more issue with pointer grabbing.

We only need to change the list of grabbed objects if we are initiating
a new grab, and not if are already in a grab because of multi touch.

SVN revision: 60787

13 years agoEvas: document evas_object_rectangle.
Jonas M. Gastal [Tue, 28 Jun 2011 18:19:30 +0000 (18:19 +0000)]
Evas: document evas_object_rectangle.

SVN revision: 60772

13 years agoEvas: Fix latex doc generation.
Jonas M. Gastal [Tue, 28 Jun 2011 18:19:09 +0000 (18:19 +0000)]
Evas: Fix latex doc generation.

SVN revision: 60771

13 years agodon't leak
Iván Briano [Tue, 28 Jun 2011 18:05:19 +0000 (18:05 +0000)]
don't leak

SVN revision: 60770

13 years ago[evas] Documenting more functions on Evas objects:
Gustavo Lima Chaves [Tue, 28 Jun 2011 17:43:44 +0000 (17:43 +0000)]
[evas] Documenting more functions on Evas objects:

     - evas_object_event_callback_add
     - evas_object_event_callback_del_full
     - evas_object_focus_get
     - evas_object_focus_set
     - evas_object_key_grab
     - evas_object_key_ungrab
     - evas_object_pass_events_get
     - evas_object_pass_events_set
     - evas_object_precise_is_inside_get
     - evas_object_precise_is_inside_set
     - evas_object_propagate_events_get
     - evas_object_propagate_events_set
     - evas_object_repeat_events_get
     - evas_object_repeat_events_set

    Examples on them also follow.

SVN revision: 60769

13 years agoecore: do count threads only in the main loop.
Cedric BAIL [Tue, 28 Jun 2011 15:53:19 +0000 (15:53 +0000)]
ecore: do count threads only in the main loop.

NOTE: for an unknow reason I always get the wrong number
of threads when doing the computation from the thread.
Even if I use volatile and mutex. So to avoid that move
that stuff in the main loop. It increase the complexity
of the code, but at least it work.

SVN revision: 60767

13 years agoecore/fd_handler - Add an example.
Rafael Antognolli [Tue, 28 Jun 2011 15:05:29 +0000 (15:05 +0000)]
ecore/fd_handler - Add an example.

SVN revision: 60766

13 years agoecore/fd_handler - Fix prepare_callback_set and improve its doc.
Rafael Antognolli [Tue, 28 Jun 2011 15:05:09 +0000 (15:05 +0000)]
ecore/fd_handler - Fix prepare_callback_set and improve its doc.

Now they can be set even if the list is empty (sorry discomfitor,
removing your optimization and making it O(n) again, back from O(0)).

Also notice that due to the already existing check, if a prepare
callback was already set to a fd handler, it can't be changed, so I
added that to the docs.

SVN revision: 60765

13 years agoecore/fd_handler - Rename fd_handler example that uses gnutls.
Rafael Antognolli [Tue, 28 Jun 2011 15:03:58 +0000 (15:03 +0000)]
ecore/fd_handler - Rename fd_handler example that uses gnutls.

SVN revision: 60764

13 years agoecore: actually limit the number of pipe in the cache.
Cedric BAIL [Tue, 28 Jun 2011 14:53:34 +0000 (14:53 +0000)]
ecore: actually limit the number of pipe in the cache.

SVN revision: 60763

13 years agoEina: eina_strbuf example and documentation.
Jonas M. Gastal [Tue, 28 Jun 2011 14:38:17 +0000 (14:38 +0000)]
Eina: eina_strbuf example and documentation.

SVN revision: 60762

13 years agoEina: Slight improvement to eina_strbuf's documentation.
Jonas M. Gastal [Tue, 28 Jun 2011 14:37:49 +0000 (14:37 +0000)]
Eina: Slight improvement to eina_strbuf's documentation.

SVN revision: 60761

13 years agoethumb: fix various source of misusage.
Cedric BAIL [Tue, 28 Jun 2011 14:35:21 +0000 (14:35 +0000)]
ethumb: fix various source of misusage.

SVN revision: 60760

13 years agoevas: raise level of warning.
Cedric BAIL [Tue, 28 Jun 2011 14:26:22 +0000 (14:26 +0000)]
evas: raise level of warning.

SVN revision: 60758

13 years agoEina: improve eina_str documentation.
Jonas M. Gastal [Tue, 28 Jun 2011 13:52:59 +0000 (13:52 +0000)]
Eina: improve eina_str documentation.

SVN revision: 60757

13 years agoadd ecore_throttle
Carsten Haitzler [Tue, 28 Jun 2011 12:34:52 +0000 (12:34 +0000)]
add ecore_throttle

SVN revision: 60756

13 years agoethumb: mute emotion during thumbnailing.
Cedric BAIL [Tue, 28 Jun 2011 08:39:28 +0000 (08:39 +0000)]
ethumb: mute emotion during thumbnailing.

SVN revision: 60751

13 years agoEvas textblock: Yet another coord_set fix.
Tom Hacohen [Tue, 28 Jun 2011 08:27:26 +0000 (08:27 +0000)]
Evas textblock: Yet another coord_set fix.

SVN revision: 60750

13 years agoEvas textblock: Fixed coord_set and line_coord set in a couple of cases.
Tom Hacohen [Tue, 28 Jun 2011 08:13:45 +0000 (08:13 +0000)]
Evas textblock: Fixed coord_set and line_coord set in a couple of cases.

SVN revision: 60749

13 years agoactually - we dont need to clear at all. rely on engine alpha
Carsten Haitzler [Tue, 28 Jun 2011 08:11:07 +0000 (08:11 +0000)]
actually - we dont need to clear at all. rely on engine alpha
returning right value and let evas_render do it.

SVN revision: 60748

13 years agoEvas: Updated changelog.
Tom Hacohen [Tue, 28 Jun 2011 02:10:36 +0000 (02:10 +0000)]
Evas: Updated changelog.

SVN revision: 60744

13 years agoEvas polygon: Hopefully this time really fix is_inside calculation.
Tom Hacohen [Tue, 28 Jun 2011 02:10:31 +0000 (02:10 +0000)]
Evas polygon: Hopefully this time really fix is_inside calculation.

SVN revision: 60743