~abentley/bzrtools/bzrtools.dev

« back to all changes in this revision

Viewing changes to terminal.py

  • Committer: Aaron Bentley
  • Date: 2008-11-05 00:11:09 UTC
  • mto: This revision was merged to the branch mainline in revision 678.
  • Revision ID: aaron@aaronbentley.com-20081105001109-yt2dp0h5h3ssb7xt
Restore runtime ignore for .shelf

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
# Copyright (C) 2004 Aaron Bentley
2
 
# <aaron.bentley@utoronto.ca>
 
2
# <aaron@aaronbentley.com>
3
3
#
4
4
#    This program is free software; you can redistribute it and/or modify
5
5
#    it under the terms of the GNU General Public License as published by
16
16
#    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
17
17
 
18
18
import os
 
19
import sys
19
20
 
20
21
__docformat__ = "restructuredtext"
21
22
__doc__ = "Terminal control functionality"
24
25
    # XXX The whole color handling should be rewritten to use terminfo
25
26
    # XXX before we get there, checking for setaf capability should do.
26
27
    # XXX See terminfo(5) for all the gory details.
 
28
    if sys.platform == "win32":
 
29
        return False
27
30
    import curses
28
 
    curses.setupterm()
 
31
    try:
 
32
        curses.setupterm()
 
33
    except curses.error:
 
34
        return False
29
35
    return bool(curses.tigetstr('setaf'))
30
36
 
31
37
colors = {
39
45
"white": "7"
40
46
}
41
47
 
42
 
def colorstring(text, fgcolor=None, bright=False, bgcolor=None):
 
48
def colorstring(text, fgcolor=None, bgcolor=None):
43
49
    """
44
50
    Returns a string using ANSI control codes to set the text color.
45
51
 
47
53
    :type text: string
48
54
    :param fgcolor: The foreground color to use
49
55
    :type fgcolor: string
50
 
    :param bright: If true, make the foreground color bright
51
 
    :type bright: bool
52
56
    :param bgcolor: The background color to use
53
57
    :type bgcolor: string
54
58
    """
55
59
    code = []
56
 
    if (bright): 
57
 
        code.append("1")
58
 
    if (fgcolor): 
59
 
        code.append('3'+colors[fgcolor])
60
 
    if (bgcolor): 
61
 
        code.append("4"+colors[bgcolor])
 
60
 
 
61
    if fgcolor:
 
62
        if fgcolor.startswith('dark'):
 
63
            code.append('0')
 
64
            fgcolor = fgcolor[4:]
 
65
        else:
 
66
            code.append('1')
 
67
 
 
68
        code.append('3' + colors[fgcolor])
 
69
 
 
70
    if bgcolor:
 
71
        code.append('4' + colors[bgcolor])
 
72
 
62
73
    return "".join(("\033[", ';'.join(code), "m", text, "\033[0m"))
63
74
 
 
75
 
64
76
def term_title(title):
65
77
    term = os.environ.get('TERM', '')
66
78
    if term.startswith('xterm') or term == 'dtterm':