當前位置: 首頁>>代碼示例>>Python>>正文


Python AttrSpec.get_rgb_values方法代碼示例

本文整理匯總了Python中urwid.display_common.AttrSpec.get_rgb_values方法的典型用法代碼示例。如果您正苦於以下問題:Python AttrSpec.get_rgb_values方法的具體用法?Python AttrSpec.get_rgb_values怎麽用?Python AttrSpec.get_rgb_values使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在urwid.display_common.AttrSpec的用法示例。


在下文中一共展示了AttrSpec.get_rgb_values方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: get_input

# 需要導入模塊: from urwid.display_common import AttrSpec [as 別名]
# 或者: from urwid.display_common.AttrSpec import get_rgb_values [as 別名]
        """Return the next screen size in HtmlGenerator.sizes."""
        if not self.sizes:
            raise HtmlGeneratorSimulationError, "Ran out of screen sizes to return!"
        return self.sizes.pop(0)

    def get_input(self, raw_keys=False):
        """Return the next list of keypresses in HtmlGenerator.keys."""
        if not self.keys:
            raise ExitMainLoop()
        if raw_keys:
            return (self.keys.pop(0), [])
        return self.keys.pop(0)

_default_aspec = AttrSpec(_default_foreground, _default_background)
(_d_fg_r, _d_fg_g, _d_fg_b, _d_bg_r, _d_bg_g, _d_bg_b) = (
    _default_aspec.get_rgb_values())

def html_span(s, aspec, cursor = -1):
    fg_r, fg_g, fg_b, bg_r, bg_g, bg_b = aspec.get_rgb_values()
    # use real colours instead of default fg/bg
    if fg_r is None:
        fg_r, fg_g, fg_b = _d_fg_r, _d_fg_g, _d_fg_b
    if bg_r is None:
        bg_r, bg_g, bg_b = _d_bg_r, _d_bg_g, _d_bg_b
    html_fg = "#%02x%02x%02x" % (fg_r, fg_g, fg_b)
    html_bg = "#%02x%02x%02x" % (bg_r, bg_g, bg_b)
    if aspec.standout:
        html_fg, html_bg = html_bg, html_fg
    extra = (";text-decoration:underline" * aspec.underline +
        ";font-weight:bold" * aspec.bold)
    def html_span(fg, bg, s):
開發者ID:KennethNielsen,項目名稱:urwid,代碼行數:33,代碼來源:html_fragment.py

示例2: rgb_values

# 需要導入模塊: from urwid.display_common import AttrSpec [as 別名]
# 或者: from urwid.display_common.AttrSpec import get_rgb_values [as 別名]
 def rgb_values(n):
     if self.colors == 16:
         aspec = AttrSpec("h%d"%n, "", 256)
     else:
         aspec = AttrSpec("h%d"%n, "", self.colors)
     return aspec.get_rgb_values()[:3]
開發者ID:AnyMesh,項目名稱:anyMesh-Python,代碼行數:8,代碼來源:raw_display.py


注:本文中的urwid.display_common.AttrSpec.get_rgb_values方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。