- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个QListView
,我想在其中显示一个带有进度条和一些其他字段的简单小部件(也许还有一些上下文菜单,但目前我只想显示小部件) .该列表下面有一个模型,该模型成功地将一个字符串传递给列表,并且在没有委托(delegate)的情况下一切正常。
现在有了委托(delegate),createEditor()
方法从不被调用。我不明白为什么。我不需要绘画,但我只是覆盖 paint()
和 sizeHint()
以查看它们是否被调用,它们是否被调用。
我在QListView
上看到的基本上是简单的文本项。小部件永远不会出现(当然,因为永远不会调用 createEditor()
)。
以下是我的委托(delegate)...非常基本!
class FileQueueItemDelegate : public QStyledItemDelegate
{
Q_OBJECT
public:
FileQueueItemDelegate(QObject *parent = 0);
QWidget* createEditor(QWidget *parent, const QStyleOptionViewItem &option, const QModelIndex &index) const override;
void setEditorData(QWidget *editor, const QModelIndex &index) const override;
void setModelData(QWidget *editor, QAbstractItemModel *model, const QModelIndex &index) const override;
void updateEditorGeometry(QWidget *editor,
const QStyleOptionViewItem &option,
const QModelIndex &index) const override;
void paint(QPainter *painter, const QStyleOptionViewItem &option, const QModelIndex &index) const;
QSize sizeHint(const QStyleOptionViewItem &option,
const QModelIndex &index) const override;
};
和源代码(也是非常基本和最小的):
#include "FileQueueItemDelegate.h"
FileQueueItemDelegate::FileQueueItemDelegate(QObject *parent) : QStyledItemDelegate(parent)
{
}
QWidget *FileQueueItemDelegate::createEditor(QWidget *parent, const QStyleOptionViewItem &option, const QModelIndex &index) const
{
std::cout<<"Creating editor..."<<std::endl;
FileQueueListItem* item = new FileQueueListItem(parent);
return item;
}
void FileQueueItemDelegate::setEditorData(QWidget *editor, const QModelIndex &index) const
{
std::cout<<"Setting editor data..."<<std::endl;
FileQueueListItem* editorPtr = dynamic_cast<FileQueueListItem*>(editor);
QVariant dataResult = index.model()->data(index, Qt::DisplayRole);
editorPtr->setFilename(dataResult.toString());
}
void FileQueueItemDelegate::setModelData(QWidget *editor, QAbstractItemModel *model, const QModelIndex &index) const
{
std::cout<<"Setting model data..."<<std::endl;
}
void FileQueueItemDelegate::updateEditorGeometry(QWidget *editor, const QStyleOptionViewItem &option, const QModelIndex &index) const
{
std::cout<<"Updating editor geometry..."<<std::endl;
editor->setGeometry(option.rect);
}
void FileQueueItemDelegate::paint(QPainter *painter, const QStyleOptionViewItem &option, const QModelIndex &index) const
{
std::cout<<"Painting..."<<std::endl;
QStyledItemDelegate::paint(painter, option, index);
}
QSize FileQueueItemDelegate::sizeHint(const QStyleOptionViewItem &option, const QModelIndex &index) const
{
std::cout<<"Size hint..."<<std::endl;
return QStyledItemDelegate::sizeHint(option, index);
}
我可以看到 paint()
和 sizeHint()
的打印,但看不到其他(永远)。
下面是我的QListView
类的构造函数(我继承自它):
FilesQueueQList::FilesQueueQList(FilesQueue* queueObjectPtr)
{
this->internal_queue = queueObjectPtr;
this->setModel(internal_queue);
itemDelegate = new FileQueueItemDelegate(this);
this->setItemDelegate(itemDelegate);
}
下面是它的定义:
class FilesQueueQList : public QListView
{
Q_OBJECT
FilesQueue* internal_queue; //this inherits from QAbstractListModel
FileQueueItemDelegate* itemDelegate;
//...
}
最后,这是模型中的 data()
方法:
QVariant FilesQueue::data(const QModelIndex &index, int role) const
{
std::cout<<"Loading data of "<<index.row()<< " "<<index.column()<<std::endl;
if ( role == Qt::DisplayRole ) {
return filesQueue[index.row()]->getFilename();
}
if(role == Qt::EditRole) {
return filesQueue[index.row()]->getFilename(); //QString this is
}
return QVariant();
}
请协助。如果您需要更多信息,请告诉我。我一直在尝试一整天,但没有成功。我只想让该小部件 (FileQueueListItem
) 显示在列表中。
最佳答案
您还没有实现 FilesQueue::flags(const QModelIndex &index) const
。默认实现使单元格仅启用和可选择。
参见文档:QAbstractItemModel::flags
Qt::ItemFlags QAbstractItemModel::flags(const QModelIndex &index) const
Returns the item flags for the given index.
The base class implementation returns a combination of flags that enables the item (
ItemIsEnabled
) and allows it to be selected (ItemIsSelectable
).
关于C++ Qt : QStyledItemDelegate's createEditor is never called, 尽管调用了 paint(),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44333915/
我正在使用Qt 4.7。 我有一个模型,该模型在两列的QTableView中显示,我的目标是在QTableView中提供对该模型的内联编辑。 +-----------------+----------
我有一个代表MyDelegate用于QListWidget .委托(delegate)派生自 QStyledItemDelegate . MyDelegate 的目标之一是在ListWidget 的每
我有一个 QTreeWidget,我想通过使用样式委托(delegate)来完全自定义项目的外观。 我的主要问题是我想在我的项目右侧创建一个自定义按钮,它允许我折叠和展开该项目的子项。经典的“+”按钮
我得到了以下代码,我稍作修改,作为 how to use HTML formatted text in a QListWidget 的答案. main.ui Dialog
我目前正在尝试研究模型 View 方法并编写缩略图查看器应用程序。 在此示例中,我只是尝试绘制 20 个框,但我得到的似乎是随机选择,该选择会随着鼠标移动而更新。滚动使事情变得更糟,并且绘制有时只有框
我是 Python 和 PyQt5 的新手。我正在使用 QStyledItemDelegate 制作仅包含 ComboBox 的 QTableView 列之一。我设法显示了 ComboBox,但我在处
我创建了一个 QStyledItemDelegate 类,我想在其中使一些项目可检查,一些项目带有两个小部件。但它不能正常工作。我错过了什么?这是它的样子: 请看第 1 行,看起来两个小部件在那里,但
在我的一个项目中,我使用 QTableWidget 来显示一些复杂的计算结果。为了提高表格的可读性,我需要在单个表格单元格内显示两个对齐的值。 稍后我想通过使用颜色或箭头等进一步自定义小部件。 为此,
我正在使用 PySide2,但我找不到任何关于如何在 QStyledItemDelegate 子类中使用 paint() 函数的文档。我对类(class)相当陌生,但到目前为止可以理解,但在 PySi
我正在使用双调度创建一个样式化的 QTreeView 来解析数据项的特定委托(delegate),这非常有效。我对 QStyledItemDelegate 的委托(delegate)进行了子类化,以利
我想绘制一个遵循当前样式的自定义项目委托(delegate)。但“WindowsVista/7”风格和“WindowsClassic”风格在文本颜色上存在差异。 我使用以下代码来绘制背景(工作): v
我正在尝试使 QStyledItemDelegate 的行为类似于我编写的自定义 QWidget,因此我可以将我的代码切换到模型/ View 方法。 自定义 QWidget 是一个复杂的按钮,鼠标悬停
在我的项目中,我继承了 QStyledItemDelegate 并从 createEditor 函数返回了一个自定义编辑器。 QWidget* TagEditDelegate::createEdito
我有一个 QTableView,我正在为其设置自定义 QStyledItemDelegate。 除了自定义项绘制之外,我还想为选择/悬停状态设置行的背景色样式。我想要的外观类似于此 KGet 屏幕截图
我有一个 QStyledItemDelegate 派生对象用于 QTableView 派生 View 。我根据模型索引数据类型进一步委托(delegate)绘画和编辑器创建。对于 bool,我想通过复
我想在 QTableWidget 中显示两列,显示两个字符串之间的差异(之前由一些 Levenshtein 距离算法计算)。这些部分存储在每个 QTableWidgetItem 的数据中,作为 QSt
当鼠标悬停在项目委托(delegate)中的文本上时,如何更改鼠标图标?我有这部分,但我找不到任何更改鼠标指针的示例。 我错过了什么? void ListItemDelegate::paint(
我正在尝试使用 Qt,并希望根据模型的值以自定义文本颜色显示模型。以颜色呈现它是一个可选设置,所以我想避免在我的模型中使用 Qt::ForegroundRole,而是在 QStyledItemDele
我应该如何使用委托(delegate)更改我的树项目的背景颜色? 如果不在文本顶部绘画,我一直无法弄清楚如何做到这一点。换句话说,当我使用下面的代码时,颜色绘制在文本之上。文本在背景下... def
我试图使当前代码显示的所有内容都不可编辑。 之前的搜索都建议要么修改模型的flags()函数,要么使用表的setEditTriggers。我在这段代码中同时执行了这两项操作,但它们都不起作用。 查看逐
我是一名优秀的程序员,十分优秀!