本文整理汇总了Python中ubuntui.utils.Color.frame_subheader方法的典型用法代码示例。如果您正苦于以下问题:Python Color.frame_subheader方法的具体用法?Python Color.frame_subheader怎么用?Python Color.frame_subheader使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ubuntui.utils.Color
的用法示例。
在下文中一共展示了Color.frame_subheader方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: refresh_nodes
# 需要导入模块: from ubuntui.utils import Color [as 别名]
# 或者: from ubuntui.utils.Color import frame_subheader [as 别名]
def refresh_nodes(self, nodes):
""" Adds services to the view if they don't already exist
"""
for node in nodes:
services_list = []
charm_class, service = node
if len(service.units) > 0:
for u in sorted(service.units, key=attrgetter('unit_name')):
# Refresh any state changes
try:
unit_w = self.deployed[u.unit_name]
except:
hwinfo = self._get_hardware_info(u)
self.deployed[u.unit_name] = UnitInfoWidget(
u,
charm_class,
hwinfo)
unit_w = self.deployed[u.unit_name]
for k, label, width in self.view_columns:
if width == 0:
services_list.append(getattr(unit_w, k))
else:
services_list.append(('fixed', width,
getattr(unit_w, k)))
self.table.addColumns(u.unit_name, services_list)
self.table.addColumns(
u.unit_name,
[
('fixed', 5, Text("")),
Color.frame_subheader(unit_w.workload_info)
],
force=True)
self.update_ui_state(charm_class, u,
unit_w)