about summary refs log tree commit diff stats
path: root/config.default.h
Commit message (Expand)AuthorAgeFilesLines
* s/tag2/two/garg@10ksloc.org2006-08-031-2/+2
* stylistic chnagearg@10ksloc.org2006-08-031-2/+2
* removed TLast tag enum, now tags is simple defined as char *[] array, the res...arg@10ksloc.org2006-08-031-27/+21
* changed Client->tags and Rule->tags to be Bool (I'll also try to remove the T...arg@10ksloc.org2006-08-031-2/+2
* changing MASTERW value from 52 to 60 (in both, default and arg), I feel this ...arg@10ksloc.org2006-08-021-1/+1
* removed the CONFIG variable from config.mk, renamed config.h into config.defa...arg@10ksloc.org2006-08-021-0/+62
fa'>^
b4c2c703 ^
656b444d ^







































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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
                                                                 
 



                                                                      
 






                                                                       
 







































                                                                            
# Copyright (C) 2009, 2010  Roman Zimbelmann <romanz@lavabit.com>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program.  If not, see <http://www.gnu.org/licenses/>.

DEFAULT = 0
COMMAND = 1
COMMAND_QUICK = 2
OPEN = 3
OPEN_QUICK = 4
SEARCH = 5

def is_valid_mode(mode):
	"""
	Returns True or False depending on whether the mode is valid or not.
	"""
	return isinstance(mode, int) and mode >= 0 and mode <= 5

def all_modes(mode):
	"""
	Returns a generator containing all valid modes.
	"""
	return range(6)

def mode_to_class(mode):
	"""
	Associates modes with the actual classes
	from ranger.gui.widgets.console.
	"""
	from .console import Console, CommandConsole, OpenConsole, \
			QuickOpenConsole, QuickCommandConsole, SearchConsole

	if mode == DEFAULT:
		return Console
	if mode == COMMAND:
		return CommandConsole
	if mode == OPEN:
		return OpenConsole
	if mode == OPEN_QUICK:
		return QuickOpenConsole
	if mode == COMMAND_QUICK:
		return QuickCommandConsole
	if mode == SEARCH:
		return SearchConsole
	raise ValueError