gpt4 book ai didi

c++ - QListWidget 中的项目在重新排序后变得不可见

转载 作者:塔克拉玛干 更新时间:2023-11-03 07:20:17 24 4
gpt4 key购买 nike

我有一个 QListWidget使用 setItemWidget 由自定义小部件填充.

这些自定义列表项是完全静态的,它们只是有一堆带有各种文本和图像的标签。我的 QListWidget 显示正确。我允许拖放重新排序,当我将一个项目移动到不同的位置后,它就变得不可见了。它并没有消失,因为它占用了显示器的空间,我什至可以点击它,它只是完全不可见,好像里面的所有标签突然变成空白。有趣的是,如果我为这些小部件设置背景颜色,自定义背景颜色不会被清除,只会清除内容。

如果我插入通用 QListWidgetItem进入QListQidget ,即使在移动后它们仍然可见。

是什么导致自定义小部件变为空白,我该如何阻止这种情况发生?

例子。

QListWidgetItem *item;
MyCustomWidget *custom;

item = new QListWidgetItem();
item->setText("This will remain visible");
listWidget->addItem(item);

item = new QListWidgetItem();
custom = new MyCustomWidget ();
custom->setName(QString("This will vanish")); // this will add text to one of the labels inside it.
listWidget->addItem(item);
item->setSizeHint(QSize(50,65));
listWidget->setItemWidget(item, custom);

用鼠标移动项目后,通过“普通”QListWidgetItems 添加的项目保留其内容,而那些通过 setItemWidget 添加的项目让他们的内容消失。

编辑

即使我的自定义小部件只是一个 QLabel ,移动后里面的内容就没有了。

QLabel *label;
item = new QListWidgetItem();
label = new QLabel();
label->setText("This label will vanish");
listWidget->addItem(item);
listWidget->setItemWidget(item, label);

与自定义小部件一样,它的大小和背景颜色(如果已设置)保持不变,因此该项目不会被删除。只有标签的内容被清除。如果我为标签本身设置背景(通过 setStyleSheet),它就会被清除。如果我为项目本身设置背景,它仍然存在。

编辑2

Widget 好像设置在setItemWidget运动后会解耦。

我创建了一个按钮,它显示 qDebug() << listWidget->itemWidget(listWidget->item(0));按下时。如果我有自定义小部件,或者为了简单起见,QLabel作为我的元素,在移动它们之前会显示 QLabel(0x8b41fd8) , 移动后显示 QObject(0x0) .附加到该项目的小部件似乎已删除。

manual对于 setItemWidget声明“此函数应该只用于显示静态内容而不是列表小部件项目。”我认为这意味着我们不应该在其中放置可按下的按钮、动态更改的小部件等,但现在看来“静态内容”意味着整个 QListWidget 本身必须保持静态?

最佳答案

in them, but now it seems that "static content" means that the whole QListWidget itself must remain static?

是的,continue reading the next sentence .这将使您清楚地了解所有这一切需要什么。t

This function should only be used to display static content in the place of a list widget item. If you want to display custom dynamic content or implement a custom editor widget, use QListView and subclass QItemDelegate instead.

关于c++ - QListWidget 中的项目在重新排序后变得不可见,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27332310/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com