efl/legacy/ecore
Mike Blumenkrantz daafddb571 implement full event-driven error messaging api for all non-curl ecore_con
docs are in the header, happy birthday cedric


SVN revision: 56894
2011-02-10 08:49:23 +00:00
..
doc [ecore-file] fix doc 2010-10-23 11:05:36 +00:00
examples provide enums for progress return. 2011-01-29 02:48:03 +00:00
m4 add native win32 thread support in ecore_thread. Not tested a lot at all. 2010-11-26 13:50:31 +00:00
po Failed to wrap one clearenv() 2011-02-06 01:33:03 +00:00
src implement full event-driven error messaging api for all non-curl ecore_con 2011-02-10 08:49:23 +00:00
.cvsignore split ecore.pc into multiple pc files, one for each sub module. 2007-03-21 15:30:23 +00:00
AUTHORS Fix me as author 2010-12-10 06:05:35 +00:00
COPYING fix up copyings likewise. nicely standardised templateish. 2010-08-16 03:00:16 +00:00
ChangeLog implement full event-driven error messaging api for all non-curl ecore_con 2011-02-10 08:49:23 +00:00
INSTALL and now ecore is 1.0.0 ready too. 2010-08-16 08:17:24 +00:00
Makefile.am put again ecore tests in the source tree 2011-01-16 18:31:21 +00:00
NEWS damn you salizar! damn you! 2003-09-23 08:09:32 +00:00
README.in note that its experiemntal 2010-10-18 04:52:11 +00:00
autogen.sh Gettext support in Ecore_Getopt. Thanks to k-s :) 2009-09-01 14:15:37 +00:00
configure.ac undo my erroneous commit. (Thinking .po files were undamaged?) 2011-02-06 01:44:52 +00:00
ecore-cocoa.pc.in Move Ecore.h (and associated headers) to own dir. 2010-07-09 06:23:19 +00:00
ecore-con.pc.in Move Ecore.h (and associated headers) to own dir. 2010-07-09 06:23:19 +00:00
ecore-config.pc.in Move Ecore.h (and associated headers) to own dir. 2010-07-09 06:23:19 +00:00
ecore-directfb.pc.in Move Ecore.h (and associated headers) to own dir. 2010-07-09 06:23:19 +00:00
ecore-evas.pc.in Move Ecore.h (and associated headers) to own dir. 2010-07-09 06:23:19 +00:00
ecore-fb.pc.in Move Ecore.h (and associated headers) to own dir. 2010-07-09 06:23:19 +00:00
ecore-file.pc.in Move Ecore.h (and associated headers) to own dir. 2010-07-09 06:23:19 +00:00
ecore-imf-evas.pc.in Move Ecore.h (and associated headers) to own dir. 2010-07-09 06:23:19 +00:00
ecore-imf.pc.in Move Ecore.h (and associated headers) to own dir. 2010-07-09 06:23:19 +00:00
ecore-input-evas.pc.in Move Ecore.h (and associated headers) to own dir. 2010-07-09 06:23:19 +00:00
ecore-input.pc.in Move Ecore.h (and associated headers) to own dir. 2010-07-09 06:23:19 +00:00
ecore-ipc.pc.in Move Ecore.h (and associated headers) to own dir. 2010-07-09 06:23:19 +00:00
ecore-sdl.pc.in Move Ecore.h (and associated headers) to own dir. 2010-07-09 06:23:19 +00:00
ecore-win32.pc.in remove useless private libraries in ecore-win32.pc.in 2010-12-18 19:24:59 +00:00
ecore-wince.pc.in Move Ecore.h (and associated headers) to own dir. 2010-07-09 06:23:19 +00:00
ecore-x.pc.in Move Ecore.h (and associated headers) to own dir. 2010-07-09 06:23:19 +00:00
ecore.pc.in Move Ecore.h (and associated headers) to own dir. 2010-07-09 06:23:19 +00:00
ecore.spec.in Assorted fixes for building RPMS, probably a good thing that the release source archives can generate the rpms as expected. 2011-01-21 21:38:01 +00:00
ecore.supp more suppressions 2004-10-19 16:40:25 +00:00

README.in

Ecore @VERSION@ BETA

******************************************************************************

 FOR ANY ISSUES PLEASE EMAIL:
 enlightenment-devel@lists.sourceforge.net
  
******************************************************************************
  
Requirements:
-------------

Must:
  libc
  libm
  eina (1.0.0 or better)
  (For windows you also need: evil)
  
Recommended:
  libX11
  libXext
  libXcursor
  libXprint
  libXinerama
  libXrandr
  libXss
  libXrender
  libXcomposite
  libXfixes
  libXdamage
  libXdpms
  libXtest
  OpenSSL
  CURL
  evas (1.0.0 or better)

Optional:
  XCB (highly experimental - don't use it unless you are fixing it)
  SDL
  DirectFB

Ecore is a clean and tiny event loop library with many modules to do
lots of convenient things for a programmer, to save time and effort.

It's small and lean, designed to work on embedded systems all the way
to large and powerful multi-cpu workstations. It serialises all system
signals, events etc. into a single event queue, that is easily
processed without needing to worry about concurrency. A properly
written, event-driven program using this kind of programming doesn't
need threads, nor has to worry about concurrency. It turns a program
into a state machine, and makes it very robust and easy to follow.

Ecore gives you other handy primitives, such as timers to tick over
for you and call specified functions at particular times so the
programmer can use this to do things, like animate, or time out on
connections or tasks that take too long etc.

Idle handlers are provided too, as well as calls on entering an idle
state (often a very good time to update the state of the program). All
events that enter the system are passed to specific callback functions
that the program sets up to handle those events. Handling them is
simple and other Ecore modules produce more events on the queue,
coming from other sources such as file descriptors etc.

Ecore also help you work in a multi threaded environment and setup a
thread pool that help you use the EFL on multi-cpu system. It help split
the part that can't be called outside of the ecore main loop from the
computation heavy function that could run on another CPU. Be aware that
Evas and most of Ecore API is not thread safe and should only be called
in the main loop. Eina and Eet could be used, if done carefully, in any
heavy function on another cpu.

Ecore also lets you have functions called when file descriptors become
active for reading or writing, allowing for streamlined, non-blocking
IO.

------------------------------------------------------------------------------
COMPILING AND INSTALLING:

  ./configure
  make
(as root unless you are installing in your users directories):
  make install