genlist: implement list position signals.
authorGustavo Sverzut Barbieri <barbieri@profusion.mobi>
Thu, 22 Aug 2013 20:00:26 +0000 (17:00 -0300)
committerGustavo Sverzut Barbieri <barbieri@profusion.mobi>
Thu, 22 Aug 2013 20:02:49 +0000 (17:02 -0300)
commit19b55ddc65cf235146322a5cae32ad9cb4dfadb7
tree073d2c5827455ac43cd1cec6f5e3e6ab04e26b62
parent1bba4c94d395a48c7d081e2c555789fb29b94773
genlist: implement list position signals.

Genlist will now emit the following signals to item view related to
their position in the whole list:
      - elm,state,list,first: first item of the whole list
      - elm,state,list,last: last item of the whole list
      - elm,state,list,middle: any item that is not first or last.
      - elm,state,list,single: when the item is the only element of list.
And the following related to a group (considering its given 'parent'):
      - elm,state,group,first: first item of the group
      - elm,state,group,last: last item of the group
      - elm,state,group,middle: any item that is not first or last.
      - elm,state,group,single: when the item is the only element of group.

Unlike odd/even the signals have an extra namespace "list" or "group"
to avoid conflicts with applications that may have declared these
signals themselves for other purposes.

With this patch one can implement easily something like this:

         https://developer.apple.com/library/ios/documentation/userexperience/conceptual/tableview_iphone/Art/tv_grouped_style.jpg
legacy/elementary/src/lib/elm_genlist.c