aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/python/prompt-toolkit/py2/prompt_toolkit/search_state.py
blob: 3d4292153151afb7417306d68e953786b0b0863b (plain) (blame)
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
26
27
28
29
30
31
32
33
34
35
36
from .enums import IncrementalSearchDirection 
from .filters import to_simple_filter 
 
__all__ = ( 
    'SearchState', 
) 
 
 
class SearchState(object): 
    """ 
    A search 'query'. 
    """ 
    __slots__ = ('text', 'direction', 'ignore_case') 
 
    def __init__(self, text='', direction=IncrementalSearchDirection.FORWARD, ignore_case=False): 
        ignore_case = to_simple_filter(ignore_case) 
 
        self.text = text 
        self.direction = direction 
        self.ignore_case = ignore_case 
 
    def __repr__(self): 
        return '%s(%r, direction=%r, ignore_case=%r)' % ( 
            self.__class__.__name__, self.text, self.direction, self.ignore_case) 
 
    def __invert__(self): 
        """ 
        Create a new SearchState where backwards becomes forwards and the other 
        way around. 
        """ 
        if self.direction == IncrementalSearchDirection.BACKWARD: 
            direction = IncrementalSearchDirection.FORWARD 
        else: 
            direction = IncrementalSearchDirection.BACKWARD 
 
        return SearchState(text=self.text, direction=direction, ignore_case=self.ignore_case)