当前位置: 首页>>代码示例>>Python>>正文


Python StringView.to_HTML_string方法代码示例

本文整理汇总了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())
开发者ID:test30,项目名称:amsn2,代码行数:28,代码来源:contact_list.py


注:本文中的amsn2.core.views.StringView.to_HTML_string方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。