summary refs log tree commit diff stats
path: root/ranger/gui/context.py
blob: be118655b17d0fa3f13ac318ee3abf3a345d4614 (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
37
38
39
40
41
# This file is part of ranger, the console file manager.
# License: GNU GPL version 3, see the file "AUTHORS" for details.

CONTEXT_KEYS = ['reset', 'error', 'badinfo',
                'in_browser', 'in_statusbar', 'in_titlebar', 'in_console',
                'in_pager', 'in_taskview',
                'active_pane', 'inactive_pane',
                'directory', 'file', 'hostname',
                'executable', 'media', 'link', 'fifo', 'socket', 'device',
                'video', 'audio', 'image', 'media', 'document', 'container',
                'selected', 'empty', 'main_column', 'message', 'background',
                'good', 'bad',
                'space', 'permissions', 'owner', 'group', 'mtime', 'nlink',
                'scroll', 'all', 'bot', 'top', 'percentage', 'filter',
                'flat', 'marked', 'tagged', 'tag_marker', 'cut', 'copied',
                'help_markup',  # COMPAT
                'seperator', 'key', 'special', 'border',  # COMPAT
                'title', 'text', 'highlight', 'bars', 'quotes', 'tab', 'loaded',
                'keybuffer',
                'infostring',
                'vcsfile', 'vcsremote', 'vcsinfo', 'vcscommit', 'vcsdate',
                'vcsconflict', 'vcschanged', 'vcsunknown', 'vcsignored',
                'vcsstaged', 'vcssync', 'vcsnone', 'vcsbehind', 'vcsahead', 'vcsdiverged']


class Context(object):  # pylint: disable=too-few-public-methods

    def __init__(self, keys):
        # set all given keys to True
        dictionary = self.__dict__
        for key in keys:
            dictionary[key] = True


def _context_init():
    # set all keys to False
    for key in CONTEXT_KEYS:
        setattr(Context, key, False)


_context_init()