gpt4 book ai didi

c++ - 如何在 QComboBox 中显示与列表文本不同的选定文本?

转载 作者:行者123 更新时间:2023-12-02 09:48:06 28 4
gpt4 key购买 nike

我有一个 QComboBox带有显示不同项目(QAbstractItemView s)的弹出列表(QStandardItem)。现在,我希望列表中的项目显示与选择项目不同的文本。
背景:
I am creating a word-processor like style chooser where one can choose, say, "1.1 Heading 2"from the list, indicating the numbering and the style name, but when an item is chosen the combobox should only show the style name, say “标题 2”。
我认为以下问题正是我所要求的,但显然选择了一个不起作用的答案(显然甚至根据提问的人):Can a QComboBox display a different value than whats in it's list?

最佳答案

解决方案
由于QComboBox使用 ListView 来显示值,可能是“Qt'iest”达到预期效果的方式,是使用自定义委托(delegate)并修改其 paint 中的文本方法,使用哈希映射 ( QHash ) 来获取相应的字符串。
例子
这是我为您准备的一个简单示例,用于演示如何实现建议的解决方案:
代表.h 这就是魔法发生的地方

#include <QStyledItemDelegate>
#include <QApplication>

class Delegate : public QStyledItemDelegate
{
Q_OBJECT
public:
explicit Delegate(QObject *parent = nullptr) :
QStyledItemDelegate(parent) {}

void setHash(const QHash<int, QString> &hash) {
m_hash = hash;
}

void paint(QPainter *painter, const QStyleOptionViewItem &option, const QModelIndex &index) const override {
if (!index.isValid())
return;

QStyleOptionViewItem opt = option;

initStyleOption(&opt, index);

opt.text = m_hash.value(index.row());

QApplication::style()->drawControl(QStyle::CE_ItemViewItem, &opt, painter);
}

private:
QHash<int, QString> m_hash;
};
主窗口.h 仅用于演示目的
#include <QWidget>
#include <QBoxLayout>
#include <QComboBox>
#include <QStandardItemModel>
#include "Delegate.h"

class MainWindow : public QWidget
{
Q_OBJECT
public:
MainWindow(QWidget *parent = nullptr)
: QWidget(parent)
{
auto *l = new QVBoxLayout(this);
auto *cmbBox = new QComboBox(this);
auto *model = new QStandardItemModel(this);
auto *delegate = new Delegate(this);
QHash<int, QString> hash;

for (int n = 0; n < 5; n++) {
// For demo purposes I am using "it#" and "item #"
// Feel free to set those strings to whatever you need
model->appendRow(new QStandardItem(tr("it%1").arg(QString::number(n))));
hash.insert(n, tr("item %1").arg(QString::number(n)));
}

delegate->setHash(hash);

cmbBox->setModel(model);
cmbBox->setItemDelegate(delegate);

l->addWidget(cmbBox);
resize(600, 480);
}
};
结果
该示例产生以下结果:
enter image description here

关于c++ - 如何在 QComboBox 中显示与列表文本不同的选定文本?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63323959/

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