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


Python QTextCharFormat.setFontPointSize方法代码示例

本文整理汇总了Python中PyQt4.Qt.QTextCharFormat.setFontPointSize方法的典型用法代码示例。如果您正苦于以下问题:Python QTextCharFormat.setFontPointSize方法的具体用法?Python QTextCharFormat.setFontPointSize怎么用?Python QTextCharFormat.setFontPointSize使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在PyQt4.Qt.QTextCharFormat的用法示例。


在下文中一共展示了QTextCharFormat.setFontPointSize方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: initializeFormats

# 需要导入模块: from PyQt4.Qt import QTextCharFormat [as 别名]
# 或者: from PyQt4.Qt.QTextCharFormat import setFontPointSize [as 别名]
    def initializeFormats(self):
        Config = self.Config
        Config["fontfamily"] = "monospace"
        for name, color, bold, italic in (
                ("normal", "#000000", False, False),
                ("keyword", "#000080", True, False),
                ("builtin", "#0000A0", False, False),
                ("comment", "#007F00", False, True),
                ("string", "#808000", False, False),
                ("number", "#924900", False, False),
                ("lparen", "#000000", True, True),
                ("rparen", "#000000", True, True)):
            Config["%sfontcolor" % name] = color
            Config["%sfontbold" % name] = bold
            Config["%sfontitalic" % name] = italic
        baseFormat = QTextCharFormat()
        baseFormat.setFontFamily(Config["fontfamily"])
        Config["fontsize"] = gprefs['gpm_template_editor_font_size']
        baseFormat.setFontPointSize(Config["fontsize"])

        for name in ("normal", "keyword", "builtin", "comment",
                     "string", "number", "lparen", "rparen"):
            format = QTextCharFormat(baseFormat)
            format.setForeground(QColor(Config["%sfontcolor" % name]))
            if Config["%sfontbold" % name]:
                format.setFontWeight(QFont.Bold)
            format.setFontItalic(Config["%sfontitalic" % name])
            self.Formats[name] = format
开发者ID:HaraldGustafsson,项目名称:calibre,代码行数:30,代码来源:template_dialog.py

示例2: initializeFormats

# 需要导入模块: from PyQt4.Qt import QTextCharFormat [as 别名]
# 或者: from PyQt4.Qt.QTextCharFormat import setFontPointSize [as 别名]
 def initializeFormats(cls):
     Config = cls.Config
     baseFormat = QTextCharFormat()
     baseFormat.setFontFamily(Config["fontfamily"])
     baseFormat.setFontPointSize(Config["fontsize"])
     for name in ("normal", "keyword", "builtin", "constant",
             "decorator", "comment", "string", "number", "error",
             "pyqt"):
         format = QTextCharFormat(baseFormat)
         format.setForeground(QColor(Config["%sfontcolor" % name]))
         if Config["%sfontbold" % name]:
             format.setFontWeight(QFont.Bold)
         format.setFontItalic(Config["%sfontitalic" % name])
         PythonHighlighter.Formats[name] = format
开发者ID:Hainish,项目名称:calibre,代码行数:16,代码来源:widgets.py


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