You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
Cedric BAIL fa66dbf40a Remove Evas list from Edje and use Eina instead. 15 years ago
..
data doing some work on a test script object and actually making it work. 16 years ago
debian Merge with Debian files from PkgE. 16 years ago
doc ok. i think most binary files are now fixed. 15 years ago
src Remove Evas list from Edje and use Eina instead. 15 years ago
utils Fix indentation levels. 15 years ago
.cvsignore Added cvsignore entries: mainly for *.spec files, 18 years ago
AUTHORS AUTHOR++ 17 years ago
COPYING in we go edje... no it doesnt do anything useful at the moment... 21 years ago
COPYING-PLAIN in we go edje... no it doesnt do anything useful at the moment... 21 years ago
ChangeLog - Fix warnings 20 years ago
Doxyfile add cedrics dict check patch 16 years ago
INSTALL remove old pc.in 16 years ago
Makefile.am Edje utilities: convert inkscape supported files to edc 15 years ago
NEWS - Fix warnings 20 years ago
README Fix Ticket #17 on Track ;) 15 years ago
autogen.sh Remove unused file. 17 years ago
configure.ac Make edje depend on eina. No change in the code yet, so just fix your build system and no bug must show up. 15 years ago
edje.c.in edje no longer needs imlib2. 18 years ago
edje.pc.in move stuff to Libs.private 17 years ago
edje.spec.in removed edje-config.in because of pkg-config 16 years ago
edje.supp added valgrind suppression file for Edje 20 years ago
gendoc add cedrics dict check patch 16 years ago

README

Edje 0.5.0

Requirements:
-------------

Must:
libc libm eet ecore ecore-evas ecore-job ecore-file embryo evas

A graphical layout and animation library for animated resizable, compressed and
scalable themes.

It's current under development and isn't complete. See src/lib/edje_private.h
for a list of FIXME's to do. Hopefully it will be complete in a few weeks.

Quick start-up guide:

1. You need eet from the HEAD cvs branch (must be up-to-date)

cvs co e17/libs/eet
cd e17/libs/eet
./autogen.sh
make
sudo make install
cd

2. You need evas from the HEAD branch built with eet loader support.

cvs co e17/libs/evas
cd e17/libs/evas
./autogen.sh
make
sudo make install
cd

3. You need ecore from the HEAD cvs branch

cvs co e17/libs/ecore
cd e17/libs/ecore
./autogen.sh
make
sudo make install
cd

4. You need embryo from the HEAD cvs branch

cvs co e17/libs/embryo
cd e17/libs/embryo
./autogen.sh
make
sudo make install
cd

5. You already have Edje. now build it:

./autogen.sh
make
sudo make install

You now want to go test it out. first you'll need to make an Edje EET file.

cd data
./e_logo.sh

Now you can view the Edje you just built:

edje ./e_logo.edj

You can view multiple files at once with the Edje test program:

edje ./e_logo.edj ./e_logo.edj ./e_logo.edj

to view the same one 3 times.

You can read the source file that builds the Edje EET file by looking at:

data/src/e_logo.edc

Another test file is also there:

data/src/test.edc

The test file doesn't build anything useful at the moment.