OMG! This is a long waited feature. How can I use this? Is there any sample?
Daniel Juyung Seo (SeoZ) On Tue, Oct 16, 2012 at 4:33 PM, Enlightenment SVN <[email protected]> wrote: > Log: > edje: add edje_pick. > > Patch by Aharon Hillel <[email protected]>. > > The purpose of edje_pick is to let people build their own theme > by picking interesting group from other theme. > > There is still many fixme left in the code, so consider this alpha. > Expect Aharon to send patch to remove them very soon. > > > Author: cedric > Date: 2012-10-16 00:33:54 -0700 (Tue, 16 Oct 2012) > New Revision: 78038 > Trac: http://trac.enlightenment.org/e/changeset/78038 > > Added: > trunk/edje/src/bin/edje_pick.c > Modified: > trunk/edje/configure.ac trunk/edje/src/bin/ trunk/edje/src/bin/Makefile.am > > Modified: trunk/edje/configure.ac > =================================================================== > --- trunk/edje/configure.ac 2012-10-16 06:36:20 UTC (rev 78037) > +++ trunk/edje/configure.ac 2012-10-16 07:33:54 UTC (rev 78038) > @@ -107,6 +107,7 @@ > EFL_ENABLE_BIN([edje-external-inspector]) > EFL_ENABLE_BIN([edje-watch]) > EFL_ENABLE_BIN([edje-codegen]) > +EFL_ENABLE_BIN([edje-pick]) > > # Optional EDJE_PROGRAM_CACHE (use much more ram, but increase speed in some > cases) > want_edje_program_cache="no" > > > Property changes on: trunk/edje/src/bin > ___________________________________________________________________ > Modified: svn:ignore > - .deps > .libs > Makefile > Makefile.in > edje_cc_parse.c > edje > edje_ls > edje_cc > edje_decc > edje_player > edje_convert > edje_inspector > edje_external_inspector > edje_watch > edje_codegen > *.exe > *.gcno > > + .deps > .libs > Makefile > Makefile.in > edje_cc_parse.c > edje > edje_ls > edje_cc > edje_decc > edje_player > edje_convert > edje_inspector > edje_external_inspector > edje_watch > edje_codegen > edje_pick > *.exe > *.gcno > > > Modified: trunk/edje/src/bin/Makefile.am > =================================================================== > --- trunk/edje/src/bin/Makefile.am 2012-10-16 06:36:20 UTC (rev 78037) > +++ trunk/edje/src/bin/Makefile.am 2012-10-16 07:33:54 UTC (rev 78038) > @@ -6,13 +6,13 @@ > > bin_SCRIPTS = @EDJE_RECC_PRG@ > > -bin_PROGRAMS = @EDJE_CC_PRG@ @EDJE_DECC_PRG@ @EDJE_PLAYER_PRG@ > @EDJE_INSPECTOR_PRG@ @EDJE_EXTERNAL_INSPECTOR_PRG@ @EDJE_CODEGEN_PRG@ > +bin_PROGRAMS = @EDJE_CC_PRG@ @EDJE_DECC_PRG@ @EDJE_PLAYER_PRG@ > @EDJE_INSPECTOR_PRG@ @EDJE_EXTERNAL_INSPECTOR_PRG@ @EDJE_CODEGEN_PRG@ > @EDJE_PICK_PRG@ > > if BUILD_EDJE_WATCH > bin_PROGRAMS += @EDJE_WATCH_PRG@ > endif > > -EXTRA_PROGRAMS = edje_cc edje_decc edje_player edje_inspector > edje_external_inspector edje_codegen > +EXTRA_PROGRAMS = edje_cc edje_decc edje_player edje_inspector > edje_external_inspector edje_codegen edje_pick > > if BUILD_EDJE_WATCH > EXTRA_PROGRAMS += edje_watch > @@ -49,6 +49,17 @@ > edje_watch_LDADD = $(top_builddir)/src/lib/libedje.la @EDJE_WATCH_LIBS@ > @EDJE_LIBS@ > edje_watch_LDFLAGS = @lt_enable_auto_import@ > > +edje_pick_SOURCES = \ > +edje_pick.c > + > +edje_pick_CPPFLAGS = \ > +-I$(top_srcdir)/src/bin \ > +-I$(top_srcdir)/src/lib \ > +-DPACKAGE_BIN_DIR=\"$(bindir)\" \ > +@EDJE_CFLAGS@ @EDJE_CC_CFLAGS@ @EIO_CFLAGS@ @EVIL_CFLAGS@ > +edje_pick_LDADD = $(top_builddir)/src/lib/libedje.la @EDJE_LIBS@ > +edje_pick_LDFLAGS = @lt_enable_auto_import@ > + > edje_decc_SOURCES = \ > edje_decc.c \ > edje_decc.h \ > > > ------------------------------------------------------------------------------ > Don't let slow site performance ruin your business. Deploy New Relic APM > Deploy New Relic app performance management and know exactly > what is happening inside your Ruby, Python, PHP, Java, and .NET app > Try New Relic at no cost today and get our sweet Data Nerd shirt too! > http://p.sf.net/sfu/newrelic-dev2dev > _______________________________________________ > enlightenment-svn mailing list > [email protected] > https://lists.sourceforge.net/lists/listinfo/enlightenment-svn ------------------------------------------------------------------------------ Don't let slow site performance ruin your business. Deploy New Relic APM Deploy New Relic app performance management and know exactly what is happening inside your Ruby, Python, PHP, Java, and .NET app Try New Relic at no cost today and get our sweet Data Nerd shirt too! http://p.sf.net/sfu/newrelic-dev2dev _______________________________________________ enlightenment-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
