EFL Model Form View for MVC design
authorLarry Jr <larry.olj@gmail.com>
Wed, 1 Jul 2015 22:55:40 +0000 (19:55 -0300)
committerCedric BAIL <cedric@osg.samsung.com>
Sat, 4 Jul 2015 01:04:03 +0000 (03:04 +0200)
commit0f62bf7d2accba310e0ecf3fa30422f20ac6cc4a
tree98139c6fc48d5fd8ed444fe81aa599e710eed551
parentc829913fcf26f413774ee0017f0243dc0c842399
EFL Model Form View for MVC design

Elementary view that show an EFL.model and keep them synchronized
asynchronously.

The elm_view_form connects properties of a data model to different
widgets.

There is an example defined in src/examples/filemvc.c that also uses
a list view.

You can add widgets connected to properties using:

eo_do(formview, elm_view_form_widget_add("filename", _label_init(win, bxr, "File Name")));

@feature
src/examples/.gitignore
src/examples/Makefile.am
src/examples/filemvc.c [new file with mode: 0644]
src/lib/Elementary.h.in
src/lib/Makefile.am
src/lib/elm_view_form.c [new file with mode: 0644]
src/lib/elm_view_form.eo [new file with mode: 0644]
src/lib/elm_view_form.h [new file with mode: 0644]