New lib for EFL: eeze! Bringing you the freedom to (hopefully) never need to learn external apis again!
So far only e_udev is complete, but more will be added. Add stuff to the TODO or yell at me in irc if you want something in. If anyone knows how to fix the doxygen css, I'd be most grateful! SVN revision: 48808devs/devilhorns/wayland_egl
parent
141a2bb9a8
commit
7c28e4ce29
37 changed files with 2787 additions and 0 deletions
@ -0,0 +1 @@ |
||||
Mike Blumenkrantz (zmike/discomfitor) mike@zentific.com |
@ -0,0 +1,20 @@ |
||||
Copyright (C) 2010 Mike Blumenkrantz and various contributors (see AUTHORS) |
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy |
||||
of this software and associated documentation files (the "Software"), to |
||||
deal in the Software without restriction, including without limitation the |
||||
rights to use, copy, modify, merge, publish, distribute, sublicense, and/or |
||||
sell copies of the Software, and to permit persons to whom the Software is |
||||
furnished to do so, subject to the following conditions: |
||||
|
||||
The above copyright notice and this permission notice shall be included in |
||||
all copies of the Software, its documentation and marketing & publicity |
||||
materials, and acknowledgment shall be given in the documentation, materials |
||||
and software packages that this Software was used. |
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL |
||||
THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER |
||||
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN |
||||
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
@ -0,0 +1,302 @@ |
||||
Installation Instructions |
||||
************************* |
||||
|
||||
Copyright (C) 1994, 1995, 1996, 1999, 2000, 2001, 2002, 2004, 2005, |
||||
2006, 2007, 2008, 2009 Free Software Foundation, Inc. |
||||
|
||||
This file is free documentation; the Free Software Foundation gives |
||||
unlimited permission to copy, distribute and modify it. |
||||
|
||||
Basic Installation |
||||
================== |
||||
|
||||
Briefly, the shell commands `./configure; make; make install' should |
||||
configure, build, and install this package. The following |
||||
more-detailed instructions are generic; see the `README' file for |
||||
instructions specific to this package. |
||||
|
||||
The `configure' shell script attempts to guess correct values for |
||||
various system-dependent variables used during compilation. It uses |
||||
those values to create a `Makefile' in each directory of the package. |
||||
It may also create one or more `.h' files containing system-dependent |
||||
definitions. Finally, it creates a shell script `config.status' that |
||||
you can run in the future to recreate the current configuration, and a |
||||
file `config.log' containing compiler output (useful mainly for |
||||
debugging `configure'). |
||||
|
||||
It can also use an optional file (typically called `config.cache' |
||||
and enabled with `--cache-file=config.cache' or simply `-C') that saves |
||||
the results of its tests to speed up reconfiguring. Caching is |
||||
disabled by default to prevent problems with accidental use of stale |
||||
cache files. |
||||
|
||||
If you need to do unusual things to compile the package, please try |
||||
to figure out how `configure' could check whether to do them, and mail |
||||
diffs or instructions to the address given in the `README' so they can |
||||
be considered for the next release. If you are using the cache, and at |
||||
some point `config.cache' contains results you don't want to keep, you |
||||
may remove or edit it. |
||||
|
||||
The file `configure.ac' (or `configure.in') is used to create |
||||
`configure' by a program called `autoconf'. You need `configure.ac' if |
||||
you want to change it or regenerate `configure' using a newer version |
||||
of `autoconf'. |
||||
|
||||
The simplest way to compile this package is: |
||||
|
||||
1. `cd' to the directory containing the package's source code and type |
||||
`./configure' to configure the package for your system. |
||||
|
||||
Running `configure' might take a while. While running, it prints |
||||
some messages telling which features it is checking for. |
||||
|
||||
2. Type `make' to compile the package. |
||||
|
||||
3. Optionally, type `make check' to run any self-tests that come with |
||||
the package. |
||||
|
||||
4. Type `make install' to install the programs and any data files and |
||||
documentation. |
||||
|
||||
5. You can remove the program binaries and object files from the |
||||
source code directory by typing `make clean'. To also remove the |
||||
files that `configure' created (so you can compile the package for |
||||
a different kind of computer), type `make distclean'. There is |
||||
also a `make maintainer-clean' target, but that is intended mainly |
||||
for the package's developers. If you use it, you may have to get |
||||
all sorts of other programs in order to regenerate files that came |
||||
with the distribution. |
||||
|
||||
6. Often, you can also type `make uninstall' to remove the installed |
||||
files again. |
||||
|
||||
Compilers and Options |
||||
===================== |
||||
|
||||
Some systems require unusual options for compilation or linking that |
||||
the `configure' script does not know about. Run `./configure --help' |
||||
for details on some of the pertinent environment variables. |
||||
|
||||
You can give `configure' initial values for configuration parameters |
||||
by setting variables in the command line or in the environment. Here |
||||
is an example: |
||||
|
||||
./configure CC=c99 CFLAGS=-g LIBS=-lposix |
||||
|
||||
*Note Defining Variables::, for more details. |
||||
|
||||
Compiling For Multiple Architectures |
||||
==================================== |
||||
|
||||
You can compile the package for more than one kind of computer at the |
||||
same time, by placing the object files for each architecture in their |
||||
own directory. To do this, you can use GNU `make'. `cd' to the |
||||
directory where you want the object files and executables to go and run |
||||
the `configure' script. `configure' automatically checks for the |
||||
source code in the directory that `configure' is in and in `..'. |
||||
|
||||
With a non-GNU `make', it is safer to compile the package for one |
||||
architecture at a time in the source code directory. After you have |
||||
installed the package for one architecture, use `make distclean' before |
||||
reconfiguring for another architecture. |
||||
|
||||
On MacOS X 10.5 and later systems, you can create libraries and |
||||
executables that work on multiple system types--known as "fat" or |
||||
"universal" binaries--by specifying multiple `-arch' options to the |
||||
compiler but only a single `-arch' option to the preprocessor. Like |
||||
this: |
||||
|
||||
./configure CC="gcc -arch i386 -arch x86_64 -arch ppc -arch ppc64" \ |
||||
CXX="g++ -arch i386 -arch x86_64 -arch ppc -arch ppc64" \ |
||||
CPP="gcc -E" CXXCPP="g++ -E" |
||||
|
||||
This is not guaranteed to produce working output in all cases, you |
||||
may have to build one architecture at a time and combine the results |
||||
using the `lipo' tool if you have problems. |
||||
|
||||
Installation Names |
||||
================== |
||||
|
||||
By default, `make install' installs the package's commands under |
||||
`/usr/local/bin', include files under `/usr/local/include', etc. You |
||||
can specify an installation prefix other than `/usr/local' by giving |
||||
`configure' the option `--prefix=PREFIX'. |
||||
|
||||
You can specify separate installation prefixes for |
||||
architecture-specific files and architecture-independent files. If you |
||||
pass the option `--exec-prefix=PREFIX' to `configure', the package uses |
||||
PREFIX as the prefix for installing programs and libraries. |
||||
Documentation and other data files still use the regular prefix. |
||||
|
||||
In addition, if you use an unusual directory layout you can give |
||||
options like `--bindir=DIR' to specify different values for particular |
||||
kinds of files. Run `configure --help' for a list of the directories |
||||
you can set and what kinds of files go in them. |
||||
|
||||
If the package supports it, you can cause programs to be installed |
||||
with an extra prefix or suffix on their names by giving `configure' the |
||||
option `--program-prefix=PREFIX' or `--program-suffix=SUFFIX'. |
||||
|
||||
Optional Features |
||||
================= |
||||
|
||||
Some packages pay attention to `--enable-FEATURE' options to |
||||
`configure', where FEATURE indicates an optional part of the package. |
||||
They may also pay attention to `--with-PACKAGE' options, where PACKAGE |
||||
is something like `gnu-as' or `x' (for the X Window System). The |
||||
`README' should mention any `--enable-' and `--with-' options that the |
||||
package recognizes. |
||||
|
||||
For packages that use the X Window System, `configure' can usually |
||||
find the X include and library files automatically, but if it doesn't, |
||||
you can use the `configure' options `--x-includes=DIR' and |
||||
`--x-libraries=DIR' to specify their locations. |
||||
|
||||
Particular systems |
||||
================== |
||||
|
||||
On HP-UX, the default C compiler is not ANSI C compatible. If GNU |
||||
CC is not installed, it is recommended to use the following options in |
||||
order to use an ANSI C compiler: |
||||
|
||||
./configure CC="cc -Ae -D_XOPEN_SOURCE=500" |
||||
|
||||
and if that doesn't work, install pre-built binaries of GCC for HP-UX. |
||||
|
||||
On OSF/1 a.k.a. Tru64, some versions of the default C compiler cannot |
||||
parse its `<wchar.h>' header file. The option `-nodtk' can be used as |
||||
a workaround. If GNU CC is not installed, it is therefore recommended |
||||
to try |
||||
|
||||
./configure CC="cc" |
||||
|
||||
and if that doesn't work, try |
||||
|
||||
./configure CC="cc -nodtk" |
||||
|
||||
On Solaris, don't put `/usr/ucb' early in your `PATH'. This |
||||
directory contains several dysfunctional programs; working variants of |
||||
these programs are available in `/usr/bin'. So, if you need `/usr/ucb' |
||||
in your `PATH', put it _after_ `/usr/bin'. |
||||
|
||||
On Haiku, software installed for all users goes in `/boot/common', |
||||
not `/usr/local'. It is recommended to use the following options: |
||||
|
||||
./configure --prefix=/boot/common |
||||
|
||||
Specifying the System Type |
||||
========================== |
||||
|
||||
There may be some features `configure' cannot figure out |
||||
automatically, but needs to determine by the type of machine the package |
||||
will run on. Usually, assuming the package is built to be run on the |
||||
_same_ architectures, `configure' can figure that out, but if it prints |
||||
a message saying it cannot guess the machine type, give it the |
||||
`--build=TYPE' option. TYPE can either be a short name for the system |
||||
type, such as `sun4', or a canonical name which has the form: |
||||
|
||||
CPU-COMPANY-SYSTEM |
||||
|
||||
where SYSTEM can have one of these forms: |
||||
|
||||
OS |
||||
KERNEL-OS |
||||
|
||||
See the file `config.sub' for the possible values of each field. If |
||||
`config.sub' isn't included in this package, then this package doesn't |
||||
need to know the machine type. |
||||
|
||||
If you are _building_ compiler tools for cross-compiling, you should |
||||
use the option `--target=TYPE' to select the type of system they will |
||||
produce code for. |
||||
|
||||
If you want to _use_ a cross compiler, that generates code for a |
||||
platform different from the build platform, you should specify the |
||||
"host" platform (i.e., that on which the generated programs will |
||||
eventually be run) with `--host=TYPE'. |
||||
|
||||
Sharing Defaults |
||||
================ |
||||
|
||||
If you want to set default values for `configure' scripts to share, |
||||
you can create a site shell script called `config.site' that gives |
||||
default values for variables like `CC', `cache_file', and `prefix'. |
||||
`configure' looks for `PREFIX/share/config.site' if it exists, then |
||||
`PREFIX/etc/config.site' if it exists. Or, you can set the |
||||
`CONFIG_SITE' environment variable to the location of the site script. |
||||
A warning: not all `configure' scripts look for a site script. |
||||
|
||||
Defining Variables |
||||
================== |
||||
|
||||
Variables not defined in a site shell script can be set in the |
||||
environment passed to `configure'. However, some packages may run |
||||
configure again during the build, and the customized values of these |
||||
variables may be lost. In order to avoid this problem, you should set |
||||
them in the `configure' command line, using `VAR=value'. For example: |
||||
|
||||
./configure CC=/usr/local2/bin/gcc |
||||
|
||||
causes the specified `gcc' to be used as the C compiler (unless it is |
||||
overridden in the site shell script). |
||||
|
||||
Unfortunately, this technique does not work for `CONFIG_SHELL' due to |
||||
an Autoconf bug. Until the bug is fixed you can use this workaround: |
||||
|
||||
CONFIG_SHELL=/bin/bash /bin/bash ./configure CONFIG_SHELL=/bin/bash |
||||
|
||||
`configure' Invocation |
||||
====================== |
||||
|
||||
`configure' recognizes the following options to control how it |
||||
operates. |
||||
|
||||
`--help' |
||||
`-h' |
||||
Print a summary of all of the options to `configure', and exit. |
||||
|
||||
`--help=short' |
||||
`--help=recursive' |
||||
Print a summary of the options unique to this package's |
||||
`configure', and exit. The `short' variant lists options used |
||||
only in the top level, while the `recursive' variant lists options |
||||
also present in any nested packages. |
||||
|
||||
`--version' |
||||
`-V' |
||||
Print the version of Autoconf used to generate the `configure' |
||||
script, and exit. |
||||
|
||||
`--cache-file=FILE' |
||||
Enable the cache: use and save the results of the tests in FILE, |
||||
traditionally `config.cache'. FILE defaults to `/dev/null' to |
||||
disable caching. |
||||
|
||||
`--config-cache' |
||||
`-C' |
||||
Alias for `--cache-file=config.cache'. |
||||
|
||||
`--quiet' |
||||
`--silent' |
||||
`-q' |
||||
Do not print messages saying which checks are being made. To |
||||
suppress all normal output, redirect it to `/dev/null' (any error |
||||
messages will still be shown). |
||||
|
||||
`--srcdir=DIR' |
||||
Look for the package's source code in directory DIR. Usually |
||||
`configure' can determine that directory automatically. |
||||
|
||||
`--prefix=DIR' |
||||
Use DIR as the installation prefix. *Note Installation Names:: |
||||
for more details, including other options available for fine-tuning |
||||
the installation locations. |
||||
|
||||
`--no-create' |
||||
`-n' |
||||
Run the configure checks, but stop before creating any output |
||||
files. |
||||
|
||||
`configure' also accepts some other, not widely useful, options. Run |
||||
`configure --help' for more details. |
||||
|
@ -0,0 +1,22 @@ |
||||
ACLOCAL_AMFLAGS = -I m4
|
||||
|
||||
SUBDIRS = src doc
|
||||
|
||||
MAINTAINERCLEANFILES = Makefile.in aclocal.m4 config.guess config.h.in \
|
||||
config.log config.sub configure depcomp \
|
||||
install-sh ltmain.sh missing compile eeze*doc*tar* \
|
||||
m4/l*
|
||||
|
||||
|
||||
pkgconfigdir = $(libdir)/pkgconfig
|
||||
|
||||
if BUILD_EUDEV |
||||
EUDEV_PC = eudev.pc
|
||||
endif |
||||
pkgconfig_DATA = $(EUDEV_PC)
|
||||
|
||||
.PHONY: doc |
||||
|
||||
doc: all |
||||
@echo "entering doc/"
|
||||
$(MAKE) -C doc doc
|
@ -0,0 +1,3 @@ |
||||
eeze v?.?? |
||||
|
||||
eeze is a collection of misc apis wrapped in efl for ease of integration with other efl projects. Dependencies may vary, use at your own risk, i before e except after c. |
@ -0,0 +1,9 @@ |
||||
udev: switch enum to bitmasks with categories probably |
||||
documentation for all types |
||||
more functions or something? |
||||
|
||||
TO BE ADDED |
||||
mpd: implement efl mpd bindings |
||||
xen: common xen control/info functions |
||||
libvirt: same as above |
||||
??? |
@ -0,0 +1,16 @@ |
||||
#!/bin/sh |
||||
|
||||
rm -rf autom4te.cache |
||||
rm -f aclocal.m4 ltmain.sh |
||||
|
||||
touch README |
||||
|
||||
echo "Running aclocal..." ; aclocal $ACLOCAL_FLAGS -I m4 || exit 1 |
||||
echo "Running autoheader..." ; autoheader || exit 1 |
||||
echo "Running autoconf..." ; autoconf || exit 1 |
||||
echo "Running libtoolize..." ; (libtoolize --copy --automake || glibtoolize --automake) || exit 1 |
||||
echo "Running automake..." ; automake --add-missing --copy || exit 1 |
||||
|
||||
if [ -z "$NOCONFIGURE" ]; then |
||||
./configure "$@" |
||||
fi |
@ -0,0 +1,105 @@ |
||||
# get rid of that stupid cache mechanism |
||||
rm -f config.cache |
||||
|
||||
AC_INIT([eeze], [0.0.1], [enlightenment-devel@lists.sourceforge.net]) |
||||
release="ver-pre-svn-05" |
||||
AC_PREREQ([2.52]) |
||||
AC_CONFIG_SRCDIR([configure.ac]) |
||||
AC_CONFIG_MACRO_DIR([m4]) |
||||
AC_CANONICAL_BUILD |
||||
AC_CANONICAL_HOST |
||||
|
||||
AM_INIT_AUTOMAKE([1.6 dist-bzip2]) |
||||
AM_CONFIG_HEADER([config.h]) |
||||
m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])]) |
||||
|
||||
AC_PROG_CC |
||||
AC_HEADER_STDC |
||||
AM_PROG_CC_C_O |
||||
|
||||
define([AC_LIBTOOL_LANG_CXX_CONFIG], [:])dnl |
||||
AC_PROG_LIBTOOL |
||||
|
||||
VMAJ=`echo $PACKAGE_VERSION | awk -F. '{printf("%s", $1);}'` |
||||
VMIN=`echo $PACKAGE_VERSION | awk -F. '{printf("%s", $2);}'` |
||||
VMIC=`echo $PACKAGE_VERSION | awk -F. '{printf("%s", $3);}'` |
||||
SNAP=`echo $PACKAGE_VERSION | awk -F. '{printf("%s", $4);}'` |
||||
version_info=`expr $VMAJ + $VMIN`":$VMIC:$VMIN" |
||||
eudev_release_info="-release $release" |
||||
AC_SUBST(version_info) |
||||
AC_SUBST(eudev_release_info) |
||||
|
||||
dnl Check enabled modules to build |
||||
AC_ARG_ENABLE([eudev],[AC_HELP_STRING([--disable-eudev], [Disable eudev build])]) |
||||
AS_IF( |
||||
[test "x$enableval" != "xno"], |
||||
[enable_eudev="yes"], |
||||
[enable_eudev=no], |
||||
) |
||||
|
||||
# pkg-config |
||||
PKG_PROG_PKG_CONFIG |
||||
|
||||
# Check whether pkg-config supports Requires.private |
||||
AS_IF( |
||||
[$PKG_CONFIG --atleast-pkgconfig-version 0.22], |
||||
[pkgconfig_requires_private="Requires.private"], |
||||
[pkgconfig_requires_private="Requires"] |
||||
) |
||||
AC_SUBST(pkgconfig_requires_private) |
||||
|
||||
PKG_CHECK_MODULES([ECORE], [ecore]) |
||||
|
||||
AS_IF( |
||||
[test "x${enable_eudev}" = "xyes"], |
||||
[PKG_CHECK_MODULES(UDEV, libudev, [], [enable_eudev="no"])] |
||||
) |
||||
|
||||
AM_CONDITIONAL([BUILD_EUDEV], [test "x${enable_eudev}" = "xyes"]) |
||||
|
||||
EFL_EDBUS_BUILD="" |
||||
lt_enable_auto_import="" |
||||
AS_CASE( |
||||
["$host_os"], |
||||
[mingw* | cegcc*], |
||||
AC_MSG_ERROR([THIS WILL NOT RUN ON WINDOWS!]) |
||||
) |
||||
|
||||
EFL_CHECK_DOXYGEN([build_doc="yes"], [build_doc="no"]) |
||||
|
||||
AC_OUTPUT([ |
||||
Makefile |
||||
doc/eeze.dox |
||||
doc/Makefile |
||||
src/Makefile |
||||
src/lib/Makefile |
||||
src/lib/udev/Makefile |
||||
src/bin/Makefile |
||||
eudev.pc |
||||
]) |
||||
|
||||
|
||||
##################################################################### |
||||
## Info |
||||
|
||||
echo |
||||
echo |
||||
echo |
||||
echo "------------------------------------------------------------------------" |
||||
echo "$PACKAGE $VERSION" |
||||
echo "------------------------------------------------------------------------" |
||||
echo |
||||
echo "Configuration Options Summary:" |
||||
echo |
||||
echo " Modules:" |
||||
echo |
||||
echo " EUdev..............: $enable_eudev" |
||||
echo |
||||
echo "Compilation............: make (or gmake)" |
||||
echo " CPPFLAGS.............: $CPPFLAGS" |
||||
echo " CFLAGS...............: $CFLAGS" |
||||
echo " LDFLAGS..............: $LDFLAGS" |
||||
echo |
||||
echo "Installation...........: make install (as root if needed, with 'su' or 'sudo')" |
||||
echo " prefix...............: $prefix" |
||||
echo |
@ -0,0 +1,141 @@ |
||||
ALIASES = |
||||
ALLEXTERNALS = NO |
||||
ALPHABETICAL_INDEX = YES |
||||
ALWAYS_DETAILED_SEC = NO |
||||
BINARY_TOC = NO |
||||
BRIEF_MEMBER_DESC = YES |
||||
CASE_SENSE_NAMES = YES |
||||
CHM_FILE = |
||||
CLASS_DIAGRAMS = NO |
||||
CLASS_GRAPH = NO |
||||
COLLABORATION_GRAPH = NO |
||||
COLS_IN_ALPHA_INDEX = 2 |
||||
COMPACT_LATEX = NO |
||||
COMPACT_RTF = NO |
||||
DETAILS_AT_TOP = NO |
||||
DISABLE_INDEX = YES |
||||
DISTRIBUTE_GROUP_DOC = NO |
||||
DOT_CLEANUP = YES |
||||
DOTFILE_DIRS = |
||||
DOT_IMAGE_FORMAT = png |
||||
DOT_PATH = |
||||
ENABLED_SECTIONS = |
||||
ENABLE_PREPROCESSING = YES |
||||
ENUM_VALUES_PER_LINE = 1 |
||||
EXAMPLE_PATH = |
||||
EXAMPLE_PATTERNS = |
||||
EXAMPLE_RECURSIVE = NO |
||||
EXCLUDE = |
||||
EXCLUDE_PATTERNS = |
||||
EXCLUDE_SYMLINKS = NO |
||||
EXPAND_AS_DEFINED = |
||||
EXPAND_ONLY_PREDEF = NO |
||||
EXTERNAL_GROUPS = YES |
||||
EXTRACT_ALL = NO |
||||
EXTRACT_LOCAL_CLASSES = NO |
||||
EXTRACT_PRIVATE = NO |
||||
EXTRACT_STATIC = NO |
||||
EXTRA_PACKAGES = |
||||
FILE_PATTERNS = |
||||
FILTER_SOURCE_FILES = NO |
||||
FULL_PATH_NAMES = NO |
||||
GENERATE_AUTOGEN_DEF = NO |
||||
GENERATE_BUGLIST = YES |
||||
GENERATE_CHI = NO |
||||
GENERATE_DEPRECATEDLIST= YES |
||||
GENERATE_HTMLHELP = NO |
||||
GENERATE_HTML = YES |
||||
GENERATE_LATEX = YES |
||||
GENERATE_LEGEND = YES |
||||
GENERATE_MAN = YES |
||||
GENERATE_RTF = NO |
||||
GENERATE_TAGFILE = |
||||
GENERATE_TESTLIST = YES |
||||
GENERATE_TODOLIST = YES |
||||
GENERATE_TREEVIEW = NO |
||||
GENERATE_XML = NO |
||||
GRAPHICAL_HIERARCHY = NO |
||||
HAVE_DOT = NO |
||||
HHC_LOCATION = |
||||
HIDE_FRIEND_COMPOUNDS = YES |
||||
HIDE_SCOPE_NAMES = NO |
||||
HIDE_UNDOC_CLASSES = YES |
||||
HIDE_UNDOC_MEMBERS = YES |
||||
HIDE_UNDOC_RELATIONS = YES |
||||
HTML_ALIGN_MEMBERS = YES |
||||
HTML_FILE_EXTENSION = .html |
||||
HTML_FOOTER = foot.html |
||||
HTML_HEADER = head.html |
||||
HTML_OUTPUT = html |
||||
HTML_STYLESHEET = e.css |
||||
IGNORE_PREFIX = |
||||
IMAGE_PATH = img |
||||
INCLUDED_BY_GRAPH = NO |
||||
INCLUDE_FILE_PATTERNS = |
||||
INCLUDE_GRAPH = NO |
||||
INCLUDE_PATH = |
||||
INHERIT_DOCS = YES |
||||
INLINE_INFO = YES |
||||
INLINE_INHERITED_MEMB = NO |
||||
INLINE_SOURCES = NO |
||||
INPUT = eeze.dox ../src/lib |
||||
INPUT_FILTER = |
||||
INTERNAL_DOCS = NO |
||||
JAVADOC_AUTOBRIEF = YES |
||||
LATEX_BATCHMODE = NO |
||||
LATEX_CMD_NAME = latex |
||||
LATEX_HEADER = |
||||
LATEX_OUTPUT = latex |
||||
MACRO_EXPANSION = NO |
||||
MAKEINDEX_CMD_NAME = makeindex |
||||
MAN_EXTENSION = .3 |
||||
MAN_LINKS = YES |
||||
MAN_OUTPUT = man |
||||
MAX_DOT_GRAPH_HEIGHT = 512 |
||||
MAX_DOT_GRAPH_WIDTH = 512 |
||||
MAX_INITIALIZER_LINES = 30 |
||||
MULTILINE_CPP_IS_BRIEF = NO |
||||
OPTIMIZE_OUTPUT_FOR_C = YES |
||||
OPTIMIZE_OUTPUT_JAVA = NO |
||||
OUTPUT_DIRECTORY = . |
||||
OUTPUT_LANGUAGE = English |
||||
PAPER_TYPE = a4wide |
||||
PDF_HYPERLINKS = YES |
||||
PERL_PATH = /usr/bin/perl |
||||
PREDEFINED = |
||||
PROJECT_NAME = Eeze |
||||
PROJECT_NUMBER = |
||||
QUIET = NO |
||||
RECURSIVE = YES |
||||
REFERENCES_LINK_SOURCE = YES |
||||
REFERENCED_BY_RELATION = YES |
||||
REFERENCES_RELATION = YES |
||||
REPEAT_BRIEF = YES |
||||
RTF_EXTENSIONS_FILE = |
||||
RTF_HYPERLINKS = NO |
||||
RTF_OUTPUT = rtf |
||||
RTF_STYLESHEET_FILE = |
||||
SEARCHENGINE = NO |
||||
SEARCH_INCLUDES = YES |
||||
SHORT_NAMES = NO |
||||
SHOW_INCLUDE_FILES = NO |
||||
SHOW_USED_FILES = NO |
||||
SKIP_FUNCTION_MACROS = YES |
||||
SORT_MEMBER_DOCS = YES |
||||
SOURCE_BROWSER = NO |
||||
STRIP_CODE_COMMENTS = YES |
||||
STRIP_FROM_PATH = src/ |
||||
SUBGROUPING = YES |
||||
TAB_SIZE = 2 |
||||
TAGFILES = |
||||
TEMPLATE_RELATIONS = NO |
||||
TOC_EXPAND = NO |
||||
TREEVIEW_WIDTH = 250 |
||||
USE_PDFLATEX = NO |
||||
VERBATIM_HEADERS = NO |
||||
WARN_FORMAT = "$file:$line: $text" |
||||
WARN_IF_UNDOCUMENTED = YES |
||||
WARNINGS = YES |
||||
WARN_LOGFILE = |
||||
XML_DTD = |
||||
XML_SCHEMA = |
@ -0,0 +1,32 @@ |
||||
MAINTAINERCLEANFILES = Makefile.in eeze.dox
|
||||
|
||||
.PHONY: doc |
||||
|
||||
PACKAGE_DOCNAME = $(PACKAGE_TARNAME)-$(PACKAGE_VERSION)-doc
|
||||
|
||||
if EFL_BUILD_DOC |
||||
|
||||
doc-clean: |
||||
rm -rf html/ latex/ man/ xml/ $(PACKAGE_DOCNAME).tar*
|
||||
|
||||
doc: all doc-clean |
||||
$(efl_doxygen)
|
||||
cp img/* html/
|
||||
rm -rf $(PACKAGE_DOCNAME).tar*
|
||||
mkdir -p $(PACKAGE_DOCNAME)/doc
|
||||
cp -R html/ latex/ man/ $(PACKAGE_DOCNAME)/doc
|
||||
tar cf $(PACKAGE_DOCNAME).tar $(PACKAGE_DOCNAME)/
|
||||
bzip2 -9 $(PACKAGE_DOCNAME).tar
|
||||
rm -rf $(PACKAGE_DOCNAME)/
|
||||
mv $(PACKAGE_DOCNAME).tar.bz2 $(top_srcdir)
|
||||
|
||||
clean-local: doc-clean |
||||
|
||||
else |
||||
|
||||
doc: |
||||
@echo "Documentation not built. Run ./configure --help"
|
||||
|
||||
endif |
||||
|
||||
EXTRA_DIST = Doxyfile $(wildcard img/*.*) e.css head.html foot.html eeze.dox.in
|
@ -0,0 +1,273 @@ |
||||
/* |
||||
Author: |
||||
Andres Blanc <andresblanc@gmail.com> |
||||
DaveMDS Andreoli <dave@gurumeditation.it> |
||||
|
||||
Supported Browsers: |
||||
ie7, opera9, konqueror4 and firefox3 |
||||
|
||||
Please use a different file for ie6, ie5, etc. hacks. |
||||
*/ |
||||
|
||||
|
||||
/* Necessary to place the footer at the bottom of the page */ |
||||
html, body { |
||||
height: 100%; |
||||
margin: 0px; |
||||
padding: 0px; |
||||
} |
||||
|
||||
#container { |
||||
min-height: 100%; |
||||
height: auto !important; |
||||
height: 100%; |
||||
margin: 0 auto -53px; |
||||
} |
||||
|
||||
#footer, #push { |
||||
height: 53px; |
||||
} |
||||
|
||||
|
||||
* html #container { |
||||
height: 100%; |
||||
} |
||||
|
||||
/* Prevent floating elements overflowing containers */ |
||||
.clear { |
||||
clear: both; |
||||
width: 0px; |
||||
height: 0px; |
||||
} |
||||
|
||||
/* Flexible & centered layout from 750 to 960 pixels */ |
||||
.layout { |
||||
max-width: 960px; |
||||
min-width: 760px; |
||||
margin-left: auto; |
||||
margin-right: auto; |
||||
} |
||||
|
||||
body { |
||||
/*font-family: Lucida Grande, Helvetica, sans-serif;*/ |
||||
font-family: "Bitstream Vera","Vera","Trebuchet MS",Trebuchet,Tahoma,sans-serif |
||||
} |
||||
|
||||
/* Prevent design overflowing the viewport in small resolutions */ |
||||
#container { |
||||
padding-right: 17px; |
||||
padding-left: 17px; |
||||
background-image: url(head_bg.png); |
||||
background-repeat: repeat-x; |
||||
} |
||||
|
||||
/****************************/ |
||||
/* Top main menu */ |
||||
/****************************/ |
||||
#header_logo { |
||||
background-image : url(logo.png); |
||||
width : 61px; |
||||
} |
||||
|
||||
#header_logo a { |
||||
position : absolute; |
||||
border : 0px; |
||||
background-color : transparent; |
||||
top : 0px; |
||||
width : 60px; |
||||
height : 60px; |
||||
} |
||||
|
||||
#header_menu { |
||||
background-image : url(header_menu_background.png); |
||||
font : normal 10pt verdana,'Bitstream Vera Sans',helvetica,arial,sans-serif; |
||||
text-align : right; |
||||
} |
||||
|
||||
#header_last { |
||||
background-image : url(header_menu_background_last.png); |
||||
width : 15px; |
||||
} |
||||
|
||||
td.nav_passive { |
||||
background : url(header_menu_unselected_background.png) 0 0 no-repeat; |
||||
height : 63px; |
||||
font-family : "Bitstream Vera","Vera","Trebuchet MS",Trebuchet,Tahoma,sans-serif; |
||||
font-size : 11px; |
||||
padding : 20px 10px 20px 10px; |
||||
vertical-align : middle; |
||||
} |
||||
|
||||
td.nav_active { |
||||
background : url(header_menu_current_background.png) 0 0 no-repeat; |
||||
height : 63px; |
||||
color : #646464; |
||||
font-family : "Bitstream Vera","Vera","Trebuchet MS",Trebuchet,Tahoma,sans-serif; |
||||
font-size : 11px; |
||||
font-weight : bold; |
||||
padding : 20px 10px 20px 10px; |
||||
vertical-align : middle; |
||||
} |
||||
|
||||
#header_menu a { |
||||
display : block; |
||||
text-decoration : none; |
||||
cursor : pointer; |
||||
color : #cdcdcd; |
||||
} |
||||
|
||||
|
||||
|
||||
#header { |
||||
width: 100%; |
||||
height: 102px; |
||||
} |
||||
|
||||
#header h1 { |
||||
width: 63px; |
||||
height: 63px; |
||||
position: absolute; |
||||
margin: 0px; |
||||
} |
||||
|
||||
#header h1 span { |
||||
display: none; |
||||
} |
||||
|
||||
#header h2 { |
||||
display: none; |
||||
} |
||||
|
||||
/* .menu-container is used to set properties common to .menu and .submenu */ |
||||
#header .menu-container { |
||||
} |
||||
|
||||
#header .menu-container ul { |
||||
list-style-type: none; |
||||
list-style-position: inside; |
||||
margin: 0; |
||||
} |
||||
|
||||
#header .menu-container li { |
||||
display: block; |
||||
float: right; |
||||
} |
||||
|
||||
#header .menu { |
||||
height: 63px; |
||||
display: block; |
||||
background-image: url(menu_bg.png); |
||||
background-repeat: repeat-x; |
||||
} |
||||
|
||||
#header .menu ul { |
||||
height: 100%; |
||||
display: block; |
||||
background-image: url(menu_bg_last.png); |
||||
background-repeat: no-repeat; |
||||
background-position: top right; |
||||
padding-right: 17px; |
||||
} |
||||
|
||||
#header .menu li { |
||||
height: 100%; |
||||
text-align: center; |
||||
background-image: url(menu_bg_unsel.png); |
||||
background-repeat: no-repeat; |
||||
} |
||||
|
||||
#header .menu a { |
||||
height: 100%; |
||||
display: block; |
||||
color: #cdcdcd; |
||||
text-decoration: none; |
||||
font-size: 10pt; |
||||
line-height: 59px; |
||||
text-align: center; |
||||
padding: 0px 15px 0px 15px; |
||||
} |
||||
|
||||
#header .menu li:hover { |
||||
background-image: url(menu_bg_hover.png); |
||||
background-repeat: no-repeat; |
||||
} |
||||
|
||||
#header .menu li:hover a { |
||||
color: #FFFFFF; |
||||
} |
||||
|
||||
#header .menu li.current { |
||||
background-image: url(menu_bg_current.png); |
||||
background-repeat: no-repeat; |
||||
} |
||||
|
||||
#header .menu li.current a { |
||||
color: #646464; |
||||
} |
||||
|
||||
|
||||
/* Hide all the submenus but the current */ |
||||
#header .submenu ul { |
||||
display: none; |
||||
} |
||||
|
||||
#header .submenu .current { |
||||
display: block; |
||||
} |
||||
|
||||
#header .submenu { |
||||
font: bold 10px verdana,'Bitstream Vera Sans',helvetica,arial,sans-serif; |
||||
margin-top: 10px; |
||||
} |
||||
|
||||
#header .submenu a { |
||||
color: #888888; |
||||
text-decoration: none; |
||||
font-size: 0.9em; |
||||
line-height: 15px; |
||||
padding:0px 5px 0px 5px; |
||||
} |
||||
|
||||
#header .submenu a:hover { |
||||
color: #444444; |
||||
} |
||||
|
||||
#header .submenu li { |
||||
border-left: 1px solid #DDDDDD; |
||||
} |
||||
|
||||
#header .submenu li:last-child { |
||||
border-left: 0; |
||||
} |
||||
|
||||
#header .doxytitle { |
||||
position: absolute; |
||||
font-size: 1.8em; |
||||
font-weight: bold; |
||||
color: #444444; |
||||
line-height: 35px; |
||||
} |
||||
|
||||
#header small { |
||||
font-size: 0.4em; |
||||
} |
||||
|
||||
#footer { |
||||
background-image: url(foot_bg.png); |
||||
width: 100%; |
||||
} |
||||
|
||||
#footer table { |
||||
width: 100%; |
||||
text-align: center; |
||||
white-space: nowrap; |
||||
padding: 5px 30px 5px 30px; |
||||
font-size: 0.8em; |
||||
font-family: "Bitstream Vera","Vera","Trebuchet MS",Trebuchet,Tahoma,sans-serif; |
||||
color: #888888; |
||||
} |
||||
|
||||
#footer td.copyright { |
||||
width: 100%; |
||||
} |
||||
|
@ -0,0 +1,23 @@ |
||||
/** |
||||
@file eeze.dox |
||||
@brief Eeze Misc Libraries |
||||
*/ |
||||
|
||||
/** |
||||
@mainpage Eeze |
||||
@image html eeze.png |
||||
@version @PACKAGE_VERSION@ |
||||
@author Mike Blumenkrantz (zmike/discomfitor) <mike@zentific.com> |
||||
@date 2010 |
||||
|
||||
@section intro What is Eeze? |
||||
|
||||
Eeze is a collection of various APIs which may or may not be useful |
||||
to developers working with EFL. The aim is to eliminate the need to |
||||
learn any api outside of EFL while simultaneously providing an |
||||
extremely easy way to manipulate external libraries. |
||||
|
||||
@verbatim |
||||
Pants |
||||
@endverbatim |
||||
*/ |
@ -0,0 +1,18 @@ |
||||
|
||||
<div id="push"></div> |
||||
</div> <!-- #content --> |
||||
</div> <!-- .layout --> |
||||
|
||||
</div> <!-- #container --> |
||||
|
||||
|
||||
<div id="footer"> |
||||
<table><tr> |
||||
<td class="copyright">Copyright ©$year Enlightenment</td> |
||||
<td class="generated">Docs generated $datetime</td> |
||||
</tr></table> |
||||
</div> |
||||
|
||||
|
||||
</body> |
||||
</html> |
@ -0,0 +1,68 @@ |
||||
<html> |
||||
<head> |
||||
<title>$title</title> |
||||
<meta http-equiv="content-type" content="text/html;charset=UTF-8"> |
||||
<meta name="author" content="Andres Blanc" > |
||||
|
||||
<link rel="icon" href="img/favicon.png" type="image/x-icon"> |
||||
<link rel="shortcut icon" href="img/favicon.png" type="image/x-icon"> |
||||
<link rel="icon" href="img/favicon.png" type="image/ico"> |
||||
<link rel="shortcut icon" href="img/favicon.png" type="image/ico"> |
||||
|
||||
<link rel="stylesheet" type="text/css" href="e.css"> |
||||
<link rel="stylesheet" type="text/css" href="edoxy.css"> |
||||
</head> |
||||
|
||||
<body> |
||||
|
||||
<div id="container"> |
||||
|
||||
<div id="header"> |
||||
<div class="layout"> |
||||
|
||||
<h1><span>Enlightenment</span></h1> |
||||
<h2><span>Beauty at your fingertips</span></h2> |
||||
|
||||
<table cellspacing="0" cellpadding="0" width="100%"><tr> |
||||
<td id="header_logo"> |
||||
<a href="http://www.enlightenment.org"></a> |
||||
</td> |
||||
<td id="header_menu"> |
||||
<table cellspacing="0" cellpadding="0" align="right"><tr> |
||||
<td class="nav_passive"><a class="nav_passive" href="http://www.enlightenment.org/p.php?p=home">Home</a></td> |
||||
<td class="nav_passive"><a class="nav_passive" href="http://www.enlightenment.org/p.php?p=news">News</a></td> |
||||
<td class="nav_passive"><a class="nav_passive" href="http://www.enlightenment.org/p.php?p=about">About</a></td> |
||||
<td class="nav_passive"><a class="nav_passive" href="http://www.enlightenment.org/p.php?p=download">Download</a></td> |
||||
<td class="nav_passive"><a class="nav_passive" href="http://www.enlightenment.org/p.php?p=support">Support</a></td> |
||||
<td class="nav_passive"><a class="nav_passive" href="http://www.enlightenment.org/p.php?p=contribute">Contribute</a></td> |
||||
<td class="nav_passive"><a class="nav_passive" href="http://www.enlightenment.org/p.php?p=contact">Contact</a></td> |
||||
<td class="nav_passive"><a class="nav_passive" href="http://trac.enlightenment.org/e">Tracker</a></td> |
||||
<td class="nav_passive"><a class="nav_passive" href="http://www.enlightenment.org/p.php?p=docs">Docs</a></td> |
||||
</tr></table> |
||||
</td> |
||||
<td id="header_last"></td> |
||||
</tr></table> |
||||
|
||||
<div class="doxytitle"> |
||||
$projectname Documentation <small>at $date</small> |
||||
</div> |
||||
|
||||
<div class="menu-container"> |
||||
<div class="submenu"> |
||||
<ul class="current"> |
||||
<li><a href="files.html">Files</a></li> |
||||
<li><a href="globals.html">Globals</a></li> |
||||
<li><a href="Eeze_8h.html">API Reference</a></li> |
||||
<li><a href="modules.html">Modules</a></li> |
||||
<li class="current"><a href="index.html">Main Page</a></li> |
||||
</ul> |
||||
</div> |
||||
</div> |
||||
|
||||
|
||||
<div class="clear"></div> |
||||
</div> |
||||
</div> |
||||
|
||||
<div id="content"> |
||||
<div class="layout"> |
@ -0,0 +1,486 @@ |
||||
/* |
||||
* This file contain a custom doxygen style to match e.org graphics |
||||
*/ |
||||
|
||||
|
||||
|
||||
/* BODY,H1,H2,H3,H4,H5,H6,P,CENTER,TD,TH,UL,DL,DIV { |
||||
font-family: Geneva, Arial, Helvetica, sans-serif; |
||||
}*/ |
||||
BODY, TD { |
||||
font-size: 12px; |
||||
} |
||||
H1 { |
||||
text-align: center; |
||||
font-size: 160%; |
||||
} |
||||
H2 { |
||||
font-size: 120%; |
||||
} |
||||
H3 { |
||||
font-size: 100%; |
||||
} |
||||
CAPTION { |
||||
font-weight: bold |
||||
} |
||||
DIV.qindex { |
||||
width: 100%; |
||||
background-color: #e8eef2; |
||||
border: 1px solid #84b0c7; |
||||
text-align: center; |
||||
margin: 2px; |
||||
padding: 2px; |
||||
line-height: 140%; |
||||
} |
||||
DIV.navpath { |
||||
width: 100%; |
||||
background-color: #e8eef2; |
||||
border: 1px solid #84b0c7; |
||||
text-align: center; |
||||
margin: 2px; |
||||
padding: 2px; |
||||
line-height: 140%; |
||||
} |
||||
DIV.navtab { |
||||
background-color: #e8eef2; |
||||
border: 1px solid #84b0c7; |
||||
text-align: center; |
||||
margin: 2px; |
||||
margin-right: 15px; |
||||
padding: 2px; |
||||
} |
||||
TD.navtab { |
||||
font-size: 70%; |
||||
} |
||||
A.qindex { |
||||
text-decoration: none; |
||||
font-weight: bold; |
||||
color: #1A419D; |
||||
} |
||||
A.qindex:visited { |
||||
text-decoration: none; |
||||
font-weight: bold; |
||||
color: #1A419D |
||||
} |
||||
A.qindex:hover { |
||||
text-decoration: none; |
||||
background-color: #ddddff; |
||||
} |
||||
A.qindexHL { |
||||
text-decoration: none; |
||||
font-weight: bold; |
||||
background-color: #6666cc; |
||||
color: #ffffff; |
||||
border: 1px double #9295C2; |
||||
} |
||||
A.qindexHL:hover { |
||||
text-decoration: none; |
||||
background-color: #6666cc; |
||||
color: #ffffff; |
||||
} |
||||
A.qindexHL:visited { |
||||
text-decoration: none; |
||||
background-color: #6666cc; |
||||
color: #ffffff |
||||
} |
||||
A.el { |
||||
text-decoration: none; |
||||
font-weight: bold |
||||
} |
||||
A.elRef { |
||||
font-weight: bold |
||||
} |
||||
A.code:link { |
||||
text-decoration: none; |
||||
font-weight: normal; |
||||
color: #0000FF |
||||
} |
||||
A.code:visited { |
||||
text-decoration: none; |
||||
font-weight: normal; |
||||
color: #0000FF |
||||
} |
||||
A.codeRef:link { |
||||
font-weight: normal; |
||||
color: #0000FF |
||||
} |
||||
A.codeRef:visited { |
||||
font-weight: normal; |
||||
color: #0000FF |
||||
} |
||||
A:hover, A:visited:hover { |
||||
text-decoration: none; |
||||
/* background-color: #f2f2ff; */ |
||||
color: #000055; |
||||
} |
||||
A.anchor { |
||||
color: #000; |
||||
} |
||||
DL.el { |
||||
margin-left: -1cm |
||||
} |
||||
.fragment { |
||||
font-family: monospace, fixed; |
||||
font-size: 95%; |
||||
} |
||||
PRE.fragment { |
||||
border: 1px solid #CCCCCC; |
||||
background-color: #f5f5f5; |
||||
margin-top: 4px; |
||||
margin-bottom: 4px; |
||||
margin-left: 2px; |
||||
margin-right: 8px; |
||||
padding-left: 6px; |
||||
padding-right: 6px; |
||||
padding-top: 4px; |
||||
padding-bottom: 4px; |
||||
} |
||||
DIV.ah { |
||||
background-color: black; |
||||
font-weight: bold; |
||||
color: #ffffff; |
||||
margin-bottom: 3px; |
||||
margin-top: 3px |
||||
} |
||||
|
||||
DIV.groupHeader { |
||||
margin-left: 16px; |
||||
margin-top: 12px; |
||||
margin-bottom: 6px; |
||||
font-weight: bold; |
||||
} |
||||
DIV.groupText { |
||||
margin-left: 16px; |
||||
font-style: italic; |
||||
font-size: 90% |
||||
} |
||||
/*BODY { |
||||
background: white; |
||||
color: black; |
||||
margin-right: 20px; |
||||
margin-left: 20px; |
||||
}*/ |
||||
TD.indexkey { |
||||
background-color: #e8eef2; |
||||
font-weight: bold; |
||||
padding-right : 10px; |
||||
padding-top : 2px; |
||||
padding-left : 10px; |
||||
padding-bottom : 2px; |
||||
margin-left : 0px; |
||||
margin-right : 0px; |
||||
margin-top : 2px; |
||||
margin-bottom : 2px; |
||||
border: 1px solid #CCCCCC; |
||||
} |
||||
TD.indexvalue { |
||||
background-color: #e8eef2; |
||||
font-style: italic; |
||||
padding-right : 10px; |
||||
padding-top : 2px; |
||||
padding-left : 10px; |
||||
padding-bottom : 2px; |
||||
margin-left : 0px; |
||||
margin-right : 0px; |
||||
margin-top : 2px; |
||||
margin-bottom : 2px; |
||||
border: 1px solid #CCCCCC; |
||||
} |
||||
TR.memlist { |
||||
background-color: #f0f0f0; |
||||
} |
||||
P.formulaDsp { |
||||
text-align: center; |
||||
} |
||||
IMG.formulaDsp { |
||||
} |
||||
IMG.formulaInl { |
||||
vertical-align: middle; |
||||
} |
||||
SPAN.keyword { color: #008000 } |
||||
SPAN.keywordtype { color: #604020 } |
||||
SPAN.keywordflow { color: #e08000 } |
||||
SPAN.comment { color: #800000 } |
||||
SPAN.preprocessor { color: #806020 } |
||||
SPAN.stringliteral { color: #002080 } |
||||
SPAN.charliteral { color: #008080 } |
||||
SPAN.vhdldigit { color: #ff00ff } |
||||
SPAN.vhdlchar { color: #000000 } |
||||
SPAN.vhdlkeyword { color: #700070 } |
||||
SPAN.vhdllogic { color: #ff0000 } |
||||
|
||||
.mdescLeft { |
||||
padding: 0px 8px 4px 8px; |
||||
font-size: 80%; |
||||
font-style: italic; |
||||
background-color: #FAFAFA; |
||||
border-top: 1px none #E0E0E0; |
||||
border-right: 1px none #E0E0E0; |
||||
border-bottom: 1px none #E0E0E0; |
||||
border-left: 1px none #E0E0E0; |
||||
margin: 0px; |
||||
} |
||||
.mdescRight { |
||||
padding: 0px 8px 4px 8px; |
||||
font-size: 80%; |
||||
font-style: italic; |
||||
background-color: #FAFAFA; |
||||
border-top: 1px none #E0E0E0; |
||||
border-right: 1px none #E0E0E0; |
||||
border-bottom: 1px none #E0E0E0; |
||||
border-left: 1px none #E0E0E0; |
||||
margin: 0px; |
||||
} |
||||
.memItemLeft { |
||||
padding: 1px 0px 0px 8px; |
||||
margin: 4px; |
||||
border-top-width: 1px; |
||||
border-right-width: 1px; |
||||
border-bottom-width: 1px; |
||||
border-left-width: 1px; |
||||
border-top-color: #E0E0E0; |
||||
border-right-color: #E0E0E0; |
||||
border-bottom-color: #E0E0E0; |
||||
border-left-color: #E0E0E0; |
||||
border-top-style: solid; |
||||
border-right-style: none; |
||||
border-bottom-style: none; |
||||
border-left-style: none; |
||||
background-color: #FAFAFA; |
||||
font-size: 80%; |
||||
} |
||||
.memItemRight { |
||||
padding: 1px 8px 0px 8px; |
||||
margin: 4px; |
||||
border-top-width: 1px; |
||||
border-right-width: 1px; |
||||
border-bottom-width: 1px; |
||||
border-left-width: 1px; |
||||
border-top-color: #E0E0E0; |
||||
border-right-color: #E0E0E0; |
||||
border-bottom-color: #E0E0E0; |
||||
border-left-color: #E0E0E0; |
||||
border-top-style: solid; |
||||
border-right-style: none; |
||||
border-bottom-style: none; |
||||
border-left-style: none; |
||||
background-color: #FAFAFA; |
||||
font-size: 80%; |
||||
} |
||||
.memTemplItemLeft { |
||||
padding: 1px 0px 0px 8px; |
||||
margin: 4px; |
||||
border-top-width: 1px; |
||||
border-right-width: 1px; |
||||
border-bottom-width: 1px; |
||||
border-left-width: 1px; |
||||
border-top-color: #E0E0E0; |
||||
border-right-color: #E0E0E0; |
||||
border-bottom-color: #E0E0E0; |
||||
border-left-color: #E0E0E0; |
||||
border-top-style: none; |
||||
border-right-style: none; |
||||
border-bottom-style: none; |
||||
border-left-style: none; |
||||
background-color: #FAFAFA; |
||||
font-size: 80%; |
||||
} |
||||
.memTemplItemRight { |
||||
padding: 1px 8px 0px 8px; |
||||
margin: 4px; |
||||
border-top-width: 1px; |
||||
border-right-width: 1px; |
||||
border-bottom-width: 1px; |
||||
border-left-width: 1px; |
||||
border-top-color: #E0E0E0; |
||||
border-right-color: #E0E0E0; |
||||
border-bottom-color: #E0E0E0; |
||||
border-left-color: #E0E0E0; |
||||
border-top-style: none; |
||||
border-right-style: none; |
||||
border-bottom-style: none; |
||||
border-left-style: none; |
||||
background-color: #FAFAFA; |
||||
font-size: 80%; |
||||
} |
||||
.memTemplParams { |
||||
padding: 1px 0px 0px 8px; |
||||
margin: 4px; |
||||
border-top-width: 1px; |
||||
border-right-width: 1px; |
||||
border-bottom-width: 1px; |
||||
border-left-width: 1px; |
||||
border-top-color: #E0E0E0; |
||||
border-right-color: #E0E0E0; |
||||
border-bottom-color: #E0E0E0; |
||||
border-left-color: #E0E0E0; |
||||
border-top-style: solid; |
||||
border-right-style: none; |
||||
border-bottom-style: none; |
||||
border-left-style: none; |
||||
color: #606060; |
||||
background-color: #FAFAFA; |
||||
font-size: 80%; |
||||
} |
||||
.search { |
||||
color: #003399; |
||||
font-weight: bold; |
||||
} |
||||
FORM.search { |
||||
margin-bottom: 0px; |
||||
margin-top: 0px; |
||||
} |
||||
INPUT.search { |
||||
font-size: 75%; |
||||
color: #000080; |
||||
font-weight: normal; |
||||
background-color: #e8eef2; |
||||
} |
||||
TD.tiny { |
||||
font-size: 75%; |
||||
} |
||||
a { |
||||
color: #1A41A8; |
||||
} |
||||
a:visited { |
||||
color: #2A3798; |
||||
} |
||||
.dirtab { |
||||
padding: 4px; |
||||
border-collapse: collapse; |
||||
border: 1px solid #84b0c7; |
||||
} |
||||
TH.dirtab { |
||||
background: #e8eef2; |
||||
font-weight: bold; |
||||
} |
||||
HR { |
||||
height: 1px; |
||||
border: none; |
||||
border-top: 1px solid black; |
||||
} |
||||
|
||||
/* Style for detailed member documentation */ |
||||
.memtemplate { |
||||
font-size: 80%; |
||||
color: #606060; |
||||
font-weight: normal; |
||||
margin-left: 3px; |
||||
} |
||||
.memnav { |
||||
background-color: #eeeeee; |
||||
border: 1px solid #dddddd; |
||||
text-align: center; |
||||
margin: 2px; |
||||
margin-right: 15px; |
||||
padding: 2px; |
||||
} |
||||
.memitem { |
||||
padding: 4px; |
||||
background-color: #eeeeee; |
||||
border-width: 1px; |
||||
border-style: solid; |
||||
border-color: #dddddd; |
||||
-moz-border-radius: 4px 4px 4px 4px; |
||||
} |
||||
.memname { |
||||
white-space: nowrap; |
||||
font-weight: bold; |
||||
color: #ffffff; |
||||
} |
||||
.memdoc{ |
||||
padding-left: 10px; |
||||
} |
||||
.memproto { |
||||
background-color: #111111; |
||||
width: 100%; |
||||
border-width: 1px; |
||||
border-style: solid; |
||||
border-color: #000000; |
||||
font-weight: bold; |
||||
-moz-border-radius: 4px 4px 4px 4px; |
||||
} |
||||
.paramkey { |
||||
text-align: right; |
||||
color: #ffffff; |
||||
} |
||||
.paramtype { |
||||
white-space: nowrap; |
||||
color: #aaaaaa; |
||||
} |
||||
.paramname { |
||||
color: #ff0000; |
||||
font-style: italic; |
||||
white-space: nowrap; |
||||
} |
||||
/* End Styling for detailed member documentation */ |
||||
|
||||
/* for the tree view */ |
||||
.ftvtree { |
||||
font-family: sans-serif; |
||||
margin:0.5em; |
||||
} |
||||
/* these are for tree view when used as main index */ |
||||
.directory { |
||||
font-size: 9pt; |
||||
font-weight: bold; |
||||
} |
||||
.directory h3 { |
||||
margin: 0px; |
||||
margin-top: 1em; |
||||
font-size: 11pt; |
||||
} |
||||
|
||||
/* The following two styles can be used to replace the root node title */ |
||||
/* with an image of your choice. Simply uncomment the next two styles, */ |
||||
/* specify the name of your image and be sure to set 'height' to the */ |
||||
/* proper pixel height of your image. */ |
||||
|
||||
/* .directory h3.swap { */ |
||||
/* height: 61px; */ |
||||
/* background-repeat: no-repeat; */ |
||||
/* background-image: url("yourimage.gif"); */ |
||||
/* } */ |
||||
/* .directory h3.swap span { */ |
||||
/* display: none; */ |
||||
/* } */ |
||||
|
||||
.directory > h3 { |
||||
margin-top: 0; |
||||
} |
||||
.directory p { |
||||
margin: 0px; |
||||
white-space: nowrap; |
||||
} |
||||
.directory div { |
||||
display: none; |
||||
margin: 0px; |
||||
} |
||||
.directory img { |
||||
vertical-align: -30%; |
||||
} |
||||
/* these are for tree view when not used as main index */ |
||||
.directory-alt { |
||||
font-size: 100%; |
||||
font-weight: bold; |
||||
} |
||||
.directory-alt h3 { |
||||
< |