本文整理汇总了Python中cloudinstall.ui.utils.Color.frame_subheader方法的典型用法代码示例。如果您正苦于以下问题:Python Color.frame_subheader方法的具体用法?Python Color.frame_subheader怎么用?Python Color.frame_subheader使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类cloudinstall.ui.utils.Color
的用法示例。
在下文中一共展示了Color.frame_subheader方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: __init__
# 需要导入模块: from cloudinstall.ui.utils import Color [as 别名]
# 或者: from cloudinstall.ui.utils.Color import frame_subheader [as 别名]
def __init__(self):
w = []
w.append(Color.frame_header(
Text("Ubuntu Openstack Installer - Software Installation")))
w.append(Color.frame_subheader(Text(
'(Q)uit', align='center')))
w = Pile(w)
super().__init__(w)
示例2: update
# 需要导入模块: from cloudinstall.ui.utils import Color [as 别名]
# 或者: from cloudinstall.ui.utils.Color import frame_subheader [as 别名]
def update(self):
if self.show_add_units:
add_unit_string = "(A)dd Services \N{BULLET}"
else:
add_unit_string = ""
tw = Color.frame_subheader(
Text(add_unit_string + " (H)elp \N{BULLET} " "(R)efresh \N{BULLET} (Q)uit", align="center")
)
self.pile.contents[1] = (tw, self.pile.options())
示例3: update
# 需要导入模块: from cloudinstall.ui.utils import Color [as 别名]
# 或者: from cloudinstall.ui.utils.Color import frame_subheader [as 别名]
def update(self):
if self.show_add_units:
add_unit_string = '(A)dd Services \N{BULLET}'
else:
add_unit_string = ''
tw = Color.frame_subheader(Text(add_unit_string + ' (H)elp \N{BULLET} '
'(R)efresh \N{BULLET} (Q)uit',
align='center'))
self.pile.contents[1] = (tw, self.pile.options())
示例4: __init__
# 需要导入模块: from cloudinstall.ui.utils import Color [as 别名]
# 或者: from cloudinstall.ui.utils.Color import frame_subheader [as 别名]
def __init__(self):
self.text = Text(self.TITLE_TEXT)
self.widget = Color.frame_header(self.text)
w = [
Color.frame_header(self.widget),
Color.frame_subheader(Text(
'(Q)uit', align='center'))
]
super().__init__(Pile(w))