Elementary: Adding screenshots to examples.

SVN revision: 60534
This commit is contained in:
Jonas M. Gastal 2011-06-20 19:45:32 +00:00
parent 110c2a49fa
commit 03c7068c6d
13 changed files with 26745 additions and 3 deletions

View File

@ -12,6 +12,7 @@ doc-clean:
doc: all doc-clean
$(efl_doxygen)
cp -r $(srcdir)/img/* html/
cp -r $(srcdir)/img/* latex/
rm -rf $(PACKAGE_DOCNAME).tar*
mkdir -p $(PACKAGE_DOCNAME)/doc
cp -R html/ latex/ man/ $(PACKAGE_DOCNAME)/doc

File diff suppressed because it is too large Load Diff

Binary file not shown.

After

Width:  |  Height:  |  Size: 26 KiB

File diff suppressed because it is too large Load Diff

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

File diff suppressed because it is too large Load Diff

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

File diff suppressed because it is too large Load Diff

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

File diff suppressed because it is too large Load Diff

Binary file not shown.

After

Width:  |  Height:  |  Size: 23 KiB

View File

@ -20,7 +20,8 @@ LDADD = \
SRCS = \
actionslider_example_01.c \
anchorblock_example_01.c \
anchorblock_example_01.c \
animator_example_01.c \
bg_example_01.c \
bg_example_02.c \
bg_example_03.c
@ -35,7 +36,8 @@ endif
if EFL_BUILD_EXAMPLES
pkglib_PROGRAMS += \
actionslider_example_01 \
anchorblock_example_01 \
anchorblock_example_01 \
animator_example_01 \
bg_example_01 \
bg_example_02 \
bg_example_03
@ -45,7 +47,10 @@ pkglib_PROGRAMS += \
# <example executable>:<screenshot filename>:<delay in seconds>
SCREENSHOTS = \
actionslider_example_01:actionslider_01.png:0.0 \
bg_example_02:bg_01.png:0.0
bg_example_02:bg_01.png:0.0 \
animator_example_01:animator_example_01.png:0.2 \
animator_example_01:animator_example_02.png:0.5 \
animator_example_01:animator_example_03.png:0.9
screenshots: all
@mkdir -p $(top_srcdir)/doc/img/screenshots
@ -55,6 +60,7 @@ screenshots: all
SS_FILE=$${SS_ENTRY[1]} ; \
SS_DELAY=$${SS_ENTRY[2]} ; \
ELM_ENGINE="shot:delay=$${SS_DELAY}:file=$(top_srcdir)/doc/img/screenshots/$${SS_FILE}" ./$${EXAMPLE} ; \
convert $(top_srcdir)/doc/img/screenshots/$${SS_FILE} $(top_srcdir)/doc/img/screenshots/$${SS_FILE/.png/.eps} ; \
done
else

View File

@ -729,6 +729,7 @@ extern "C" {
* @until }
*
* And here we finish our very simple background object usage example.
*
*/
/**
@ -791,6 +792,10 @@ extern "C" {
* @until }
*
* And this is the end of this example.
*
* This example will look like this:
* @image html screenshots/bg_01.png
* @image latex screenshots/bg_01.eps
*/
/**
@ -2860,6 +2865,10 @@ extern "C" {
* @skipline indicator_pos_set
* @until object_show
*
* The example will look like this:
* @image html screenshots/actionslider_01.png
* @image latex screenshots/actionslider_01.eps
*
* See the full source code @ref actionslider_example_01 "here"
*/
/**
@ -3877,6 +3886,16 @@ EAPI Elm_Genlist_Item *elm_genlist_item_sorted_insert(Evas_Object *obj, const El
* @note Because we created our animator with no parent we need to delete it
* ourselves.
*
* The example should look like this:
* @image html screenshots/animator_example_01.png
* @image latex screenshots/animator_example_01.eps
* @n
* @image html screenshots/animator_example_02.png
* @image latex screenshots/animator_example_02.eps
* @n
* @image html screenshots/animator_example_03.png
* @image latex screenshots/animator_example_03.eps
*
* The full source code for this example can be found @ref
* animator_example_01_c "here"
*/