efl/legacy/elementary
Daniel Juyung Seo d559beca4f theme: Check the return value of _elm_theme_group_file_find() and do not
pass NULL to eina_file_filename_get().

eina_file_filename_get() spits unnecessary eina error when the parameter
is null. In this case, we need to check the return of
_elm_theme_group_file_find() and do not call eina_file_filename_get()
	when the return is null. One should check the return of
	elm_theme_group_path_find().
Thank zmike for pointing this out.
2013-12-23 14:50:15 +09:00
..
cmakeconfig Added ElementaryConfigVersion.cmake.in 2013-04-03 14:37:02 +01:00
config config - standard can't use default-desktop as it doesn't exist as a theme 2013-11-08 15:33:13 +09:00
data Update systray theme to have only one box 2013-12-18 16:25:57 -05:00
doc web: Include webkit header in Elementary.h when built with ewebkit or ewebkit2 2013-12-13 22:26:02 +09:00
m4 build: fix crosscompilation to be actually working. 2013-12-08 13:32:14 +09:00
pkgbuild pkgbuild: follow AUR elemetary-git version naming. 2013-12-12 12:22:12 +09:00
po po: updated po 2013-12-08 18:54:42 +09:00
src theme: Check the return value of _elm_theme_group_file_find() and do not 2013-12-23 14:50:15 +09:00
tests
.arcconfig add .arcconfig back. 2013-02-23 22:57:11 +09:00
.gitignore gitignore: added autotools tool. 2013-12-01 21:14:27 +09:00
.mailmap mailmap myself 2013-12-19 18:22:09 -05:00
AUTHORS author: added Michal Jagiello to authors list. 2013-12-20 19:00:28 +09:00
COMPLIANCE compliance/licensing - clarify, fix formatting and point to tldrlegal.com 2013-10-30 19:28:36 +09:00
COPYING COPYING, elm_intro.h: updated copyright Date. 2013-03-23 22:58:45 +09:00
COPYING.images
ChangeLog ChangeLog/NEWS: removed unwanted ChangeLog and NEWS entries anymore. 2013-12-02 21:11:09 +09:00
INSTALL
Makefile.am Minor PKGBUILD cleanup 2013-11-07 20:05:02 +09:00
Makefile_Elm_Helpers.am autotools: forgotten files. 2013-12-01 23:36:44 +09:00
NEWS ChangeLog/NEWS: removed unwanted ChangeLog and NEWS entries anymore. 2013-12-02 21:11:09 +09:00
README readme - update readme for efl 1.8 2013-11-29 19:07:55 +09:00
TODO add whitespace... 2013-02-26 13:18:43 +09:00
autogen.sh
configure.ac web: Include webkit header in Elementary.h when built with ewebkit or ewebkit2 2013-12-13 22:26:02 +09:00
elementary.pc.in deps removal - fix pc file to match 2013-11-12 23:13:41 +09:00
elementary.spec.in Spec and build dependency fixes. 2012-12-26 11:53:38 +00:00

README

Elementary 1.8.0
================

******************************************************************************
 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 csan 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