diff --git a/data/extra/examples/examples.edc b/data/extra/examples/examples.edc index 2dcdb22..aff064b 100644 --- a/data/extra/examples/examples.edc +++ b/data/extra/examples/examples.edc @@ -1,8 +1,18 @@ data { item: "hellogui.title" "C EFL Beta Hello World"; - item: "hellogui.directory" "tutorials/c/hellogui/"; + item: "hellogui.directory" "tutorials/c/hellogui/"; item: "hellogui.description" "Hello World using the EFL Beta APIs"; + + item: "life.title" "C EFL Beta Game of Life"; + item: "life.directory" "apps/c/life/"; + item: "life.description" + "Game of Life using the EFL Beta APIs"; + + item: "texteditor.title" "C EFL Beta Basic Text Editor"; + item: "texteditor.directory" "apps/c/texteditor/"; + item: "texteditor.description" + "A basic text editor app using the EFL Beta APIs"; } collections { @@ -20,4 +30,34 @@ collections { } } } + + group { + name: "life"; + max: 128 128; + + parts { + part { name: "icon"; + description { state: "default" 0.0; + max: 128 128; + images.image: "life.png" COMP; + image.normal: "life.png"; + } + } + } + } + + group { + name: "texteditor"; + max: 128 128; + + parts { + part { name: "icon"; + description { state: "default" 0.0; + max: 128 128; + images.image: "texteditor.png" COMP; + image.normal: "texteditor.png"; + } + } + } + } } diff --git a/data/extra/examples/images/life.png b/data/extra/examples/images/life.png new file mode 100644 index 0000000..27f848a Binary files /dev/null and b/data/extra/examples/images/life.png differ diff --git a/data/extra/examples/images/texteditor.png b/data/extra/examples/images/texteditor.png new file mode 100644 index 0000000..abed5ab Binary files /dev/null and b/data/extra/examples/images/texteditor.png differ