summary refs log tree commit diff stats
path: root/tests/concat
diff options
context:
space:
mode:
authorflywind <xzsflywind@gmail.com>2022-01-13 21:43:35 +0800
committerGitHub <noreply@github.com>2022-01-13 14:43:35 +0100
commit40a9c33eff099a37be236826f84eb2064d0ec247 (patch)
tree8624d815fff107f34bf2b96c96b1577494d8af82 /tests/concat
parenta9135095f02587430b179a33ae03910d0d4201cd (diff)
downloadNim-40a9c33eff099a37be236826f84eb2064d0ec247.tar.gz
update copyright year (#19381)
Diffstat (limited to 'tests/concat')
0 files changed, 0 insertions, 0 deletions
ss='oid'>b4c2c703 ^
43e0f44a ^
ba3f04ea ^

b6d4e3e5 ^
43e0f44a ^
a4570538 ^
ba3f04ea ^
ce421875 ^















0cfc59d6 ^
ba3f04ea ^








ba3f04ea ^


111fd526 ^
ba3f04ea ^
ce421875 ^




ba3f04ea ^
4f51adb3 ^


111fd526 ^
4f51adb3 ^
ce421875 ^




4f51adb3 ^
a23a3649 ^










e99d6857 ^
ba3f04ea ^
e99d6857 ^
ba3f04ea ^





e99d6857 ^
ba3f04ea ^
e99d6857 ^
ba3f04ea ^




ea87d005 ^
43e0f44a ^





ba3f04ea ^


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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
                                                                 
                                                            
 



                                                                      
 






                                                                       
 
             

              
                                         
                                      
                                            
 















                                                                               
                                     








                                                                          


                                              
                                                  
                            




                                                                                   
 


                                               
                                                  
                            




                                                                                    
 










                                                                                  
                               
                                                    
                                    





                                                                
                                             
                                                                 
                                    




                                                                
 





                                                                                     


                                                             
# Copyright (C) 2009, 2010  Roman Zimbelmann <romanz@lavabit.com>
# Copyright (C) 2010 David Barnett <davidbarnett2@gmail.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/>.

import curses
import _curses

from ranger.ext.iter_tools import flatten
from ranger.gui.color import get_color
from ranger.core.shared import SettingsAware

def ascii_only(string):
	# Some python versions have problems with invalid unicode strings.
	# I think this exception is rare enough that this naive hack is enough.
	# It simply removes all non-ascii chars from a string.
	def validate_char(char):
		try:
			if ord(char) > 127:
				return '?'
		except:
			return '?'
		return char
	if isinstance(string, str):
		return ''.join(validate_char(c) for c in string)
	return string


class CursesShortcuts(SettingsAware):
	"""
	This class defines shortcuts to faciliate operations with curses.
	color(*keys) -- sets the color associated with the keys from
		the current colorscheme.
	color_at(y, x, wid, *keys) -- sets the color at the given position
	color_reset() -- resets the color to the default
	addstr(*args) -- failsafe version of self.win.addstr(*args)
	"""

	def addstr(self, *args):
		try:
			self.win.addstr(*args)
		except (_curses.error, TypeError):
			pass
		except UnicodeEncodeError:
			try:
				self.win.addstr(*(ascii_only(obj) for obj in args))
			except (_curses.error, TypeError):
				pass

	def addnstr(self, *args):
		try:
			self.win.addnstr(*args)
		except (_curses.error, TypeError):
			pass
		except UnicodeEncodeError:
			try:
				self.win.addnstr(*(ascii_only(obj) for obj in args))
			except (_curses.error, TypeError):
				pass

	def addch(self, *args):
		try:
			self.win.addch(*args)
		except (_curses.error, TypeError):
			pass
		except UnicodeEncodeError:
			try:
				self.win.addch(*(ascii_only(obj) for obj in args))
			except (_curses.error, TypeError):
				pass

	def color(self, *keys):
		"""Change the colors from now on."""
		keys = flatten(keys)
		attr = self.settings.colorscheme.get_attr(*keys)
		try:
			self.win.attrset(attr)
		except _curses.error:
			pass

	def color_at(self, y, x, wid, *keys):
		"""Change the colors at the specified position"""
		keys = flatten(keys)
		attr = self.settings.colorscheme.get_attr(*keys)
		try:
			self.win.chgat(y, x, wid, attr)
		except _curses.error:
			pass

	def set_fg_bg_attr(self, fg, bg, attr):
		try:
			self.win.attrset(curses.color_pair(get_color(fg, bg)) | attr)
		except _curses.error:
			pass

	def color_reset(self):
		"""Change the colors to the default colors"""
		CursesShortcuts.color(self, 'reset')