mirror of https://github.com/kivy/kivy.git
64 lines
2.2 KiB
Python
64 lines
2.2 KiB
Python
from kivy.adapters.dictadapter import DictAdapter
|
|
from kivy.adapters.mixins.selection import SelectableView
|
|
from kivy.uix.listview import ListView, ListItemButton
|
|
from kivy.uix.gridlayout import GridLayout
|
|
from kivy.uix.boxlayout import BoxLayout
|
|
from kivy.lang import Builder
|
|
from kivy.factory import Factory
|
|
|
|
from fixtures import integers_dict
|
|
|
|
Factory.register('SelectableView', cls=SelectableView)
|
|
Factory.register('ListItemButton', cls=ListItemButton)
|
|
|
|
# [TODO] SelectableView is subclassed here, yet, it is necessary to add the
|
|
# index property in the template. Same TODO in list_cascade_images.py.
|
|
|
|
Builder.load_string('''
|
|
[CustomListItem@SelectableView+BoxLayout]:
|
|
index: ctx.index
|
|
size_hint_y: ctx.size_hint_y
|
|
height: ctx.height
|
|
is_selected: ctx.is_selected
|
|
ListItemButton:
|
|
index: ctx.index
|
|
text: ctx.text
|
|
is_selected: ctx.is_selected
|
|
''')
|
|
|
|
|
|
class MainView(GridLayout):
|
|
'''Implementation of a list view with a kv template used for the list
|
|
item class.
|
|
'''
|
|
|
|
def __init__(self, **kwargs):
|
|
kwargs['cols'] = 1
|
|
kwargs['size_hint'] = (1.0, 1.0)
|
|
super(MainView, self).__init__(**kwargs)
|
|
|
|
list_item_args_converter = \
|
|
lambda rec: {'text': rec['text'],
|
|
'is_selected': rec['is_selected'],
|
|
'size_hint_y': None,
|
|
'height': 25}
|
|
|
|
# Here we create a dict adapter with 1..100 integer strings as
|
|
# sorted_keys, and integers_dict from fixtures as data, passing our
|
|
# CompositeListItem kv template for the list item view. Then we
|
|
# create a list view using this adapter. args_converter above converts
|
|
# dict attributes to ctx attributes.
|
|
dict_adapter = DictAdapter(sorted_keys=[str(i) for i in xrange(100)],
|
|
data=integers_dict,
|
|
args_converter=list_item_args_converter,
|
|
template='CustomListItem')
|
|
|
|
list_view = ListView(adapter=dict_adapter)
|
|
|
|
self.add_widget(list_view)
|
|
|
|
|
|
if __name__ == '__main__':
|
|
from kivy.base import runTouchApp
|
|
runTouchApp(MainView(width=800))
|