urwid在飞行中更改调色板颜色

时间:2015-12-09 12:34:57

标签: python colors urwid

在urwid中,如何动态更改调色板的颜色?例如,假设当我按下“C”按钮时我想要改变:

import urwid

def changeColor(key):
    if key in ('c', 'C'):
        c = "light gray"

c = 'black'

palette = [("text", "black", c)]

text = urwid.Text(("text", u'Hello humans'), align='center')
fill = urwid.Filler(text)
urwid.MainLoop(fill, palette, unhandled_input=changeColor).run()

1 个答案:

答案 0 :(得分:2)

您可以使用register_palette_entry。这是Screen中的一种方法,可以作为MainLoop的公共成员使用。

使用选择的参数调用此方法后,请务必重新绘制屏幕 - 例如,使用screen.clear()

下面是一个工作示例 - 点击c在浅红色和浅灰色背景之间翻转。

import urwid

class Main(object):
    def __init__(self):
        self.flip = False
        palette = [('text', 'black', 'light red')]
        text = urwid.Text(('text', u'Hello humans'), align='center')
        self.fill = urwid.Filler(text)
        self.loop = urwid.MainLoop(self.fill, palette, unhandled_input=self.key_press)
        self.loop.run()

    def key_press(self, key):
        if key in ('c', 'C'):
            self.flip = not self.flip
            self.loop.screen.register_palette_entry('text', 'black', ['light red', 'light gray'][self.flip])
            self.loop.screen.clear()
        if key in ('q', 'Q'):
            raise urwid.ExitMainLoop()

Main()