about summary refs log tree commit diff stats
path: root/tools/treeshake_all
Commit message (Expand)AuthorAgeFilesLines
* 5899Kartik Agaram2020-01-191-3/+10
* 5796 - move treeshake to a new tools/ directoryKartik Agaram2019-12-071-0/+44
n30' href='#n30'>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
# Copyright (C) 2009, 2010, 2011  Roman Zimbelmann <romanz@lavabit.com>
# Copyright (C) 2010 David Barnett <davidbarnett2@gmail.com>
# This software is distributed under the terms of the GNU GPL version 3.

import curses
import _curses

from ranger.gui.color import get_color
from ranger.core.shared import SettingsAware

def _fix_surrogates(args):
	return [isinstance(arg, str) and arg.encode('utf-8', 'surrogateescape')
			.decode('utf-8', 'replace') or arg for arg in args]

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:
			try:
				self.win.addstr(*_fix_surrogates(args))
			except:
				pass

	def addnstr(self, *args):
		try:
			self.win.addnstr(*args)
		except:
			try:
				self.win.addnstr(*_fix_surrogates(args))
			except:
				pass

	def addch(self, *args):
		try:
			self.win.addch(*args)
		except:
			pass

	def color(self, *keys):
		"""Change the colors from now on."""
		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"""
		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')