本文整理汇总了Python中PySide.QtGui.QTextEdit.setWindowTitle方法的典型用法代码示例。如果您正苦于以下问题:Python QTextEdit.setWindowTitle方法的具体用法?Python QTextEdit.setWindowTitle怎么用?Python QTextEdit.setWindowTitle使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类PySide.QtGui.QTextEdit
的用法示例。
在下文中一共展示了QTextEdit.setWindowTitle方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: license_
# 需要导入模块: from PySide.QtGui import QTextEdit [as 别名]
# 或者: from PySide.QtGui.QTextEdit import setWindowTitle [as 别名]
def license_(self):
lic = QTextEdit(self)
lic.setWindowFlags(Qt.Window)
lic.setWindowTitle("QReduce FreeBSD License")
font = lic.font()
font.setFamily('')
font.setFixedPitch(True)
font.setKerning(0)
font.setWeight(QFont.Normal)
font.setItalic(False)
lic.setFont(font)
lic.setText(
'Copyright (c) 2009-2014 T. Sturm, 2010 C. Zengler'
'<p>'
'All rights reserved.'
'<p>'
'Redistribution and use in source and binary forms, with '
'or without modification, are permitted provided that the '
'following conditions are met:'
'<ol>'
'<li>Redistributions of source code must retain the relevant '
'copyright notice, this list of conditions and the following '
'disclaimer. '
'<p>'
'<li>Redistributions in binary form must reproduce the above '
'copyright notice, this list of conditions and the following '
'disclaimer in the documentation and/or other materials '
'provided with the distribution. '
'</ol>'
'<p>'
'THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND '
'CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, '
'INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF '
'MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE '
'DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNERS OR '
'CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, '
'SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT '
'NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; '
'LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) '
'HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN '
'CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR '
'OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS '
'SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.'
'</span>')
lic.setReadOnly(True)
w = 66 * lic.fontMetrics().width('m')
h = 36 * lic.fontMetrics().height()
lic.resize(w,h)
lic.show()
lic.raise_()