本文整理汇总了Python中amsn2.core.views.StringView.to_HTML_string方法的典型用法代码示例。如果您正苦于以下问题:Python StringView.to_HTML_string方法的具体用法?Python StringView.to_HTML_string怎么用?Python StringView.to_HTML_string使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类amsn2.core.views.StringView
的用法示例。
在下文中一共展示了StringView.to_HTML_string方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: group_updated
# 需要导入模块: from amsn2.core.views import StringView [as 别名]
# 或者: from amsn2.core.views.StringView import to_HTML_string [as 别名]
def group_updated(self, group):
if (group.uid == 0): group.uid = '0'
if group.uid not in self.groups: return
gitem = self.__search_by_id(group.uid)
self._model.item(self._model.indexFromItem(gitem).row(), 3).setData(QVariant(group), Qt.DisplayRole)
gname = StringView()
gname = group.name
self._model.item((self._model.indexFromItem(gitem)).row(), 0).setText('<b>'+QString.fromUtf8(gname.to_HTML_string())+'</b>')
try:
cuids = self.contacts[group.uid]
except:
cuids = []
self.contacts[group.uid] = group.contact_ids.copy()
for cid in group.contact_ids:
if cid not in cuids:
gitem = self.__search_by_id(group.uid)
gitem.appendRow([QStandardItem(cid), QStandardItem(cid), QStandardItem("contact"), QStandardItem()])
# Remove unused contacts
for cid in cuids:
if cid not in self.contacts[group.uid]:
citem = self.__search_by_id(cid)
self._model.removeRow((self._model.indexFromItem(citem)).row())