gpt4 book ai didi

qt - 禁用 QComboBox 中的特定项目

转载 作者:行者123 更新时间:2023-12-04 05:11:51 26 4
gpt4 key购买 nike

在我的应用程序中,我想在满足某些条件时禁用 QComboBox 中的某些项目(即不可选,鼠标悬停在上方时没有高亮显示,文本呈灰色)。

我确实发现有人在这里问过同样的问题:Disable Item in Qt Combobox
但是答案中的这些解决方案似乎都没有实际工作(包括技巧)。

有没有一种体面和“正确”的方法来实现这一点?

编辑:

我发现了为什么设置标志不会禁用我的应用程序中的项目:由于某些原因,我不得不设置样式 QStyle::SH_ComboBox_UseNativePopup (见 https://codereview.qt-project.org/#/c/82718/)。而这个设置由于某些原因阻止了标志设置。有谁知道为什么,以及如何解决?包含一个最小测试示例(根据@Mike 的答案修改):

#include <QApplication>
#include <QComboBox>
#include <QStandardItemModel>
#include <QProxyStyle>

class ComboBoxStyle : public QProxyStyle
{
public:
int styleHint ( StyleHint hint, const QStyleOption * option = 0, const QWidget * widget = 0, QStyleHintReturn * returnData = 0 ) const override
{
if ( hint == QStyle::SH_ComboBox_UseNativePopup )
{
return 1;
}
return QProxyStyle::styleHint( hint, option, widget, returnData );
}
};

int main(int argc, char *argv[])
{
QApplication a(argc, argv);
QComboBox comboBox;

// Setting this style would block the flag settings later on.
comboBox.setStyle( new ComboBoxStyle() );

comboBox.insertItem(0, QObject::tr("item1"));
comboBox.insertItem(1, QObject::tr("item2"));

QStandardItemModel* model = qobject_cast<QStandardItemModel*>(comboBox.model());
QStandardItem* item= model->item(1);
item->setFlags(item->flags() & ~Qt::ItemIsEnabled);

comboBox.show();
return a.exec();
}

最佳答案

我上面评论中链接的答案似乎是在谈论旧版本的 Qt。我已经在 Qt5.4 和 Qt5.6 上测试过了,这里不需要自己设置颜色,你只需要设置和/或清除 Qt::ItemIsEnabled标志,这是一个例子:

#include <QtWidgets>

int main(int argc, char *argv[]) {
QApplication a(argc, argv);
QComboBox comboBox;
comboBox.addItem(QObject::tr("item1"));
comboBox.addItem(QObject::tr("item2"));
comboBox.addItem(QObject::tr("item3"));
QStandardItemModel *model =
qobject_cast<QStandardItemModel *>(comboBox.model());
Q_ASSERT(model != nullptr);
bool disabled = true;
QStandardItem *item = model->item(2);
item->setFlags(disabled ? item->flags() & ~Qt::ItemIsEnabled
: item->flags() | Qt::ItemIsEnabled);
comboBox.show();
return a.exec();
}

关于qt - 禁用 QComboBox 中的特定项目,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38915001/

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