gpt4 book ai didi

c++ - 模仿基于 QApplication::palette() 的颜色样式行为

转载 作者:行者123 更新时间:2023-11-30 04:48:57 34 4
gpt4 key购买 nike

这很简单:我想在不禁用项目的情况下模仿被禁用的项目的颜色变化。

QTableWidgetItemQStandardItem 项目,我正在使用这样的代码

item->setForeground( enabled ? QApplication::palette().color( QPalette::Text ) : QApplication::palette().color( QPalette::Disabled, QPalette::Text ) );

现在。但是,如果用户使用新调色板调用 QApplication::setPalette( ... ),则必须手动刷新该项目。我宁愿设置一个 ColorGroupRole,这样 Qt 就知道如何刷新。有可能吗?

最佳答案

要实现自动化,您必须重写 QStyledItemDelegate 的 initStyleOption() 方法并将假启用与新角色相关联:

#include <QtWidgets>

enum FakeRoles {
FakeEnableRole = Qt::UserRole + 1000
};

class ForegroundDelegate: public QStyledItemDelegate
{
public:
using QStyledItemDelegate::QStyledItemDelegate;
protected:
void initStyleOption(QStyleOptionViewItem *option, const QModelIndex &index) const override{
QStyledItemDelegate::initStyleOption(option, index);
QVariant val = index.data(FakeRoles::FakeEnableRole);
if(val.canConvert<bool>()){
bool enabled = val.value<bool>();
option->palette.setBrush(QPalette::Text,
QApplication::palette().color(enabled ? QPalette::Active:
QPalette::Disabled, QPalette::Text));
}
}
};

int main(int argc, char *argv[])
{
QApplication a(argc, argv);
QTableWidget w(4, 4);
ForegroundDelegate *delegate = new ForegroundDelegate(&w);
w.setItemDelegate(delegate);
for(int i=0; i< w.rowCount(); ++i)
for (int j=0; j< w.columnCount(); ++j) {
QTableWidgetItem *it = new QTableWidgetItem(QString("%1-%2").arg(i).arg(j));
w.setItem(i, j, it);
bool enabled = QRandomGenerator::global()->bounded(0, 2) == 0;
it->setData(FakeRoles::FakeEnableRole, enabled);
}
w.show();
QTimer::singleShot(1000, [](){
QPalette pal = QApplication::palette();
pal.setColor(QPalette::Active, QPalette::Text, QColor("salmon"));
pal.setColor(QPalette::Disabled, QPalette::Text, QColor("cyan"));
QApplication::setPalette(pal);
});
return a.exec();
}

关于c++ - 模仿基于 QApplication::palette() 的颜色样式行为,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55617335/

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