hints: Show uppercase hint chars #73

This commit is contained in:
Peter Vilim 2014-10-26 02:44:47 -05:00
parent c79c1f950a
commit ee875ba895
2 changed files with 13 additions and 1 deletions

View File

@ -110,6 +110,7 @@ class HintManager(QObject):
display: {display};
color: {config[colors][hints.fg]};
background: {config[colors][hints.bg]};
text-transform: {texttransform};
font: {config[fonts][hints]};
border: {config[hints][border]};
opacity: {config[hints][opacity]};
@ -271,6 +272,12 @@ class HintManager(QObject):
display = 'inline'
else:
display = 'none'
# Make text uppercase if set in config
if config.get("hints","uppercase") and config.get("hints","mode") == "letter":
texttransform = 'uppercase'
else:
texttransform = 'none'
rect = elem.geometry()
left = rect.x()
top = rect.y()
@ -279,7 +286,8 @@ class HintManager(QObject):
left /= zoom
top /= zoom
return self.HINT_CSS.format(
left=left, top=top, config=objreg.get('config'), display=display)
left=left, top=top, config=objreg.get('config'), display=display,
texttransform=texttransform)
def _draw_label(self, elem, string):
"""Draw a hint label over an element.

View File

@ -512,6 +512,10 @@ DATA = collections.OrderedDict([
SettingValue(typ.String(minlen=2), 'asdfghjkl'),
"Chars used for hint strings."),
('uppercase',
SettingValue(typ.Bool(), 'false'),
"Make chars in hint strings uppercase."),
('auto-follow',
SettingValue(typ.Bool(), 'true'),
"Whether to auto-follow a hint if there's only one left."),