blob: 00f6d6dea06339b4d4d91e743d29c3648bfc150e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
#:import resource_find kivy.resources.resource_find
<Search>:
source: resource_find('atlas://search/search')
tooltip: 'Apply the current search filter'
<ShowSelected>:
source: resource_find('atlas://search/exclusive_filter')
tooltip: 'Show only selected items'
<RemoveSelected>:
source: resource_find('atlas://search/exclude_filter')
tooltip: 'Exclude selected items'
<SortKey>:
source: resource_find('atlas://search/sort_key')
tooltip: 'Specify the sort key'
<SortOrder>:
source_up: resource_find('atlas://search/sort_order_up')
source_down: resource_find('atlas://search/sort_order_down')
source: self.source_up
tooltip: 'Sort order'
## EOF ##
|