efl/legacy/elementary
Felipe Magno de Almeida 4f44ca0a16 efl-js: JavaScript Eolian binding
To configure elementary sources with bindings to use in nodejs add
––with-js=nodejs in configure flags in EFL compilation to generate
node files, then compile elementary normally:

path/to/efl$ configure --with-js=nodejs
path/to/efl$ make
path/to/efl$ make install

path/to/elm$ configure
path/to/efl$ make
path/to/efl$ make install

To use, you have to require elm:

elm = require('elm')

The bindings is divided in two parts: generated and manually
written. The generation uses the Eolian library for parsing Eo files
and generate C++ code that is compiled against V8 interpreter library
to create a elm.node file that can be required in a node.js instance.

@feature
2015-12-23 22:23:46 -02:00
..
cmakeconfig
config Entry: Context Menu is now configurable 2015-12-11 16:08:54 +09:00
data calendar: Apply elm_button widgets instead of manually implemented spinner buttons. 2015-12-22 18:48:16 +09:00
doc efl-js: JavaScript Eolian binding 2015-12-23 22:23:46 -02:00
m4 efl-js: JavaScript Eolian binding 2015-12-23 22:23:46 -02:00
pkgbuild
po po: update po files for release 2015-11-09 11:04:36 +01:00
src efl-js: JavaScript Eolian binding 2015-12-23 22:23:46 -02:00
tests
.arcconfig
.gitignore
.mailmap update mailmap 2015-09-05 13:55:22 +02:00
AUTHORS rename an author 2015-12-24 09:19:47 +09:00
COMPLIANCE
COPYING
COPYING.images
ChangeLog
INSTALL
Makefile.am doc: make sure we actually run the command to get the example screenshots 2015-10-04 18:35:22 +02:00
Makefile_Elm_Helpers.am
Makefile_Eolian_Cxx_Helper.am efl-js: JavaScript Eolian binding 2015-12-23 22:23:46 -02:00
Makefile_Eolian_Helper.am build: don't provide --eo to eolian_gen 2015-11-09 20:36:15 +00:00
Makefile_Eolian_Js_Helper.am efl-js: JavaScript Eolian binding 2015-12-23 22:23:46 -02:00
NEWS release: Update NEWS and bump version for 1.16.0 release 2015-11-09 11:08:34 +01:00
README
TODO
autogen.sh
configure.ac efl-js: JavaScript Eolian binding 2015-12-23 22:23:46 -02:00
elementary-cxx.pc.in
elementary.pc.in
elementary.spec.in

README

Elementary
==========

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

Elementary is a basic widget set library that is easy to use and is based on
EFL. It provides the basic building blocks for creating applications and user
interfaces.

For more details about elementary widgets and how to use them kindly refer to
the following link for the latest documentation:

http://www.enlightenment.org/p.php?p=docs


COMPONENTS
----------

**Library:**

//LGPL v2 license//

The library you will find in src/lib/ and modules it loads as demos or
actual implementations in src/modules/. The library depends on at
least on default theme that is built in data/themes/ and some default
config installed from config/.

**Theme:**

The default theme is large and includes data for every widget and then
some. The Theme includes some images that are creative-commons
licensed (see COPYING.images) and is otherwise considered LGPL as well
as the library.

**Test App:**

There is a full test app in src/bin/ and you will find its main source
as test.c with every test split into test_*.c files. This should serve
as a general tester for Elementary as well as example code on writing
UIs with Elementary. Run this app (once installed) with elementary_test.

**Configuration App:**

A simple rough configuration tool is provided called
elementary_config. This tool allows you to play with some basic
configuration of elementary and it saves your config in your home
directory in ~/.elementary as well as applying it to all Elementary
using applications. Themes are normally looked for in
~/.elementary/themes and the system elementary data dir
(PREFIX/share/elementary/themes/).


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

    ./configure
    make
    sudo make install

If you have doxygen, then you can build documentation with:

    make doc

You will find documentation in the doc/ directory.


COMPILER FLAGS
--------------

You likely don't need static libraries most of the time so you can
disable them with:

    --disable-static

You may want to change the install prefix for EFL with:

    --prefix=/path/to/prefix
        
There are also examples in src/examples/ as well. To compile examples
use this option to configure:

    --enable-build-examples

Also you may wish to install the examples, then use:

    --enable-install-examples


REQUIREMENTS
------------

Elementary requires EFL to be installed and available first.


CONFIGURATION
-------------

Configuration for a user is normally stored in ~/.elementary/config,
but if this does not exist, the system configuration in
PREFIX/share/elementary/config is used instead. Overriding either of
these is per-screen or per-virtual-desktop configuration that may be
stored on the root window as a property in X11 or via appropriate
other protocols depending on display system.

By default the profile.cfg file contains a config key that indicates
the name of the profile to use. See config/Makefile.am as to how to
generate this. The directories each contain per-profile configuration.
The cfg files are files generated by Eet and can be generated from
text. See the above Makefile.am