Ich möchte Hintergrundfarbe für ausgewählte Zeile aus meinem Listview-Modell.Nach Auswahl einer anderen Zeile, die Farbe der vorherigen Zeile machen transparent.Thanks!Qt, QListView Modell
QVariant data(const QModelIndex& index, int role = Qt::DisplayRole) const override {
if (role == Qt::DisplayRole) {
qDebug() << "get row:" << index.row();
//auto sp = pets[index.row()].getSpecies();
//return QString::fromStdString(sp);
string tara = v[index.row()].getTara();
int pct = v[index.row()].getPct();
QString linie;
linie.append(QString::fromStdString(tara));
linie.append(" ");
linie.append(QString::number(pct));
return linie;
}
if (role == Qt::BackgroundColorRole)
{
QBrush redBackground(Qt::red);//here ,i don't now to put a condition when row is selected
return redBackground;
}
return QVariant{};
}
//here i try to brush the selected row
QObject::connect(lst->selectionModel(), &QItemSelectionModel::selectionChanged, this, &Console::onSelectionChanged);
void Console::onSelectionChanged() {
auto sel = lst->selectionModel()->selectedIndexes();
QModelIndex firstSel = sel.at(0);
Mymodel->setData(firstSel, QBrush(Qt::yellow), Qt::BackgroundColorRole);
//Console is a class which inherits QWidget,here is a QListView* lst
Möglich, müssen Sie auf Delegaten schauen: http: //doc.qt.io/qt-5/qitemdelegate.html#paint. Es ist schwer etwas ohne genaue Frage und einige SSCCE/Screenshots zu sagen. –
Ihre endgültige 'data'- und' setData' -Implementierung wird immer noch nicht angezeigt. –
Ich habe keine Implementierung für Daten und setData – paulc