- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我想在 QListWidgetItem 中以粗体显示单个单词。根据这个related post ,应该可以使用 QtCore.Qt.UserRole
来达到这个目的。但是,提供的示例代码对我不起作用。 (因为我是初学者,我很可能忘记了一个定义,但我不知道是哪个。)
这是我目前所拥有的:
main.ui
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>Dialog</class>
<widget class="QDialog" name="Dialog">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>341</width>
<height>244</height>
</rect>
</property>
<property name="windowTitle">
<string>Dialog</string>
</property>
<widget class="QWidget" name="verticalLayoutWidget">
<property name="geometry">
<rect>
<x>10</x>
<y>10</y>
<width>321</width>
<height>231</height>
</rect>
</property>
<layout class="QVBoxLayout" name="verticalLayout">
<item>
<widget class="QListWidget" name="lwOptions"/>
</item>
</layout>
</widget>
</widget>
<resources/>
<connections/>
</ui>
测试.py
import os
import sys
from PyQt5 import QtCore, uic
from PyQt5.Qt import QApplication, QDialog, QListWidgetItem
class GUI(QDialog):
def __init__(self):
super(GUI, self).__init__()
dirname = os.path.dirname(os.path.abspath(__file__))
uic.loadUi(os.path.join(dirname,'main.ui'), self)
# this doesn't work
for ordinal in ['first', 'second', 'third']:
item = QListWidgetItem()
item.setData(QtCore.Qt.UserRole, 'This is the <b>{}</b> word.'.format(ordinal))
self.lwOptions.addItem(item)
for ordinal in ['fourth', 'fifth', 'sixth']:
item = QListWidgetItem('This is the <b>{}</b> word.'.format(ordinal))
self.lwOptions.addItem(item)
if __name__ == '__main__':
app = QApplication(sys.argv)
window = GUI()
window.show()
sys.exit(app.exec_())
当我运行代码时,它会添加三个空行和三行逐字消息。
什么是正确的 QtCore.Qt.UserRole
语法?
最佳答案
角色 >= Qt::UserRole
默认情况下不被 Qt 使用,因此它可以用于任何目的,例如保存附加信息,在这种情况下它不是解决方案。一种可能的解决方案是使用委托(delegate)来呈现 HTML。
import os
import html
from PyQt5 import QtCore, QtGui, QtWidgets, uic
class HTMLDelegate(QtWidgets.QStyledItemDelegate):
def __init__(self, parent=None):
super(HTMLDelegate, self).__init__(parent)
self.doc = QtGui.QTextDocument(self)
def paint(self, painter, option, index):
painter.save()
options = QtWidgets.QStyleOptionViewItem(option)
self.initStyleOption(options, index)
self.doc.setHtml(options.text)
options.text = ""
style = QtWidgets.QApplication.style() if options.widget is None \
else options.widget.style()
style.drawControl(QtWidgets.QStyle.CE_ItemViewItem, options, painter)
ctx = QtGui.QAbstractTextDocumentLayout.PaintContext()
if option.state & QtWidgets.QStyle.State_Selected:
ctx.palette.setColor(QtGui.QPalette.Text, option.palette.color(
QtGui.QPalette.Active, QtGui.QPalette.HighlightedText))
else:
ctx.palette.setColor(QtGui.QPalette.Text, option.palette.color(
QtGui.QPalette.Active, QtGui.QPalette.Text))
textRect = style.subElementRect(QtWidgets.QStyle.SE_ItemViewItemText, options, None)
if index.column() != 0:
textRect.adjust(5, 0, 0, 0)
constant = 4
margin = (option.rect.height() - options.fontMetrics.height()) // 2
margin = margin - constant
textRect.setTop(textRect.top() + margin)
painter.translate(textRect.topLeft())
painter.setClipRect(textRect.translated(-textRect.topLeft()))
self.doc.documentLayout().draw(painter, ctx)
painter.restore()
def sizeHint(self, option, index):
return QtCore.QSize(self.doc.idealWidth(), self.doc.size().height())
class GUI(QtWidgets.QDialog):
def __init__(self):
super(GUI, self).__init__()
dirname = os.path.dirname(os.path.abspath(__file__))
uic.loadUi(os.path.join(dirname,'main.ui'), self)
delegate = HTMLDelegate(self.lwOptions)
self.lwOptions.setItemDelegate(delegate)
for ordinal in ['first', 'second', 'third', 'fourth', 'fifth', 'sixth']:
item = QtWidgets.QListWidgetItem('This is the <b>{}</b> word.'.format(ordinal))
self.lwOptions.addItem(item)
if __name__ == '__main__':
import sys
app = QtWidgets.QApplication(sys.argv)
window = GUI()
window.show()
sys.exit(app.exec_())
关于python - 如何使用 QtCore.Qt.UserRole 在 QListWidgetItem 中显示部分粗体文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53569768/
我在这些实体类中遇到此错误。我看过this question ,但我没有 persistence.xml,所以我不确定如何解决这个问题。如果有帮助的话,我正在使用 Dropwizard 构建这些实体。
如何在springSecurity中的userRole这样的域类中使用审计日志? class SecUserSecRole implements Serializable { static
我收到此错误:[SqlException (0x80131904): Invalid object name 'dbo.UserRoles'.],但我无法捕捉到错误所在。我可以从其他表中检索其他数据,
我的项目使用 Microsoft ASP.NET Identity Framework,直到最近才使用 2.0 版并且工作正常。那时我注意到 UserRole 表有 4 列,包含基本相同的数据: 自从
这是我的实体类。 @NamedQueries({ @NamedQuery(name = UsersEntity.NAMED_QUERY_SELECT_ALL_BY_MANAGER_ROLE,
我正在尝试学习 Spring 安全性。 经过一些教程后,我发现其中一些使用 UserRole(s),而另一些则使用实现身份验证的 UserAuthentication 类。我尝试实现(并且有效)的是创
我有一个新的 asp.net (core 1.0) mvc6 web 应用程序,带有最新版本的 identity 3.x。 我想弄清楚我自己必须做什么,以及 Identity 3.x 已经为我提供的即
我对 QCombo Box 中的自定义数据有疑问,这里是一个最小的示例,只是一个空项目,在 ui 中有一个名为 combobox 的 QComboBox。这是c'tor代码: ui->setupUi(
在我的项目中,我有一个 QTreeView 显示来自 QStandardItemModel 的项目。每个项目都有存储在多个用户角色中的数据。 QStandardItem* item = new QSt
我有处理数据的 QSqlQueryModel,我正在尝试将 Qt::UserRole 设置为列但我想不出一种方法来实现我已经实现了数据方法:基本上我想要的是隐藏 ndex.column() 4 的 Q
我想在 QListWidgetItem 中以粗体显示单个单词。根据这个related post ,应该可以使用 QtCore.Qt.UserRole 来达到这个目的。但是,提供的示例代码对我不起作用。
我在使用我指定的字段中的值对 QListView 中的项目进行排序时遇到一些问题。 基本上我想做的是: 检测照片集中的人脸并将其显示在 QListView 中 对人脸(图像)进行聚类 通过将列表中属于
当我尝试使用QtCore.Qt.UserRole和setData存储数据时,它崩溃了:item.setData(QtCore. Qt.UserRole,数据) 有趣的是,非常相似的方法在 PyQt4
我将 Spring-security 与 Spring-boot 结合使用。我的应用程序是一个 POC,目前不需要角色。 我想知道是否可以有一个自定义 UserDetailsService,它在
我是 C++ Qt 的新手。我正在尝试使用与需要使用的值不同的值填充 QComboBox。例如,QComboBox 显示设备名称,但在选择时发送该设备的 mac 地址。我有数据。 我尝试使用 Qt::
我已经安装了 PostgreSQL 并创建了一个具有 super 用户权限的用户“userrole”。也可以通过 python 代码连接。 import psycopg2 conn = psycopg
在 Grails 中,Spring 安全核心插件有助于创建用户和角色域。由于其中的多对多关系,创建了第三个域 UserRole。 UserRole.groovy import org.apache.c
我是 MVC 5 asp.net Identity 模型的新手,正在寻找自定义标准 Asp.net Identity 以满足我的需求的方法。通过博客 TypeCast Exception和一个在 St
我是一名优秀的程序员,十分优秀!