Added some more icons.

This commit is contained in:
2025-12-24 14:44:54 +01:00
parent e948c9103c
commit 19aa6518c2
38 changed files with 277 additions and 16 deletions

View File

@@ -1,4 +1,4 @@
// BCItemDelegate.h
#ifndef BCITEMDELEGATE_H
#define BCITEMDELEGATE_H
@@ -6,7 +6,7 @@
class QPropertyAnimation;
class QVariantAnimation;
class QListView;
class QTableView;
class BCItemDelegate : public QStyledItemDelegate
{
@@ -15,7 +15,7 @@ class BCItemDelegate : public QStyledItemDelegate
public:
explicit BCItemDelegate(QListView *view );
explicit BCItemDelegate(QTableView* view );
QString displayText(const QVariant& dataValue, const QLocale& locale) const override;
@@ -60,7 +60,7 @@ private:
int _highlightedRow{-1};
qreal _opacity{1.0};
QListView* _view{};
QTableView* _view{};
QPropertyAnimation *_animation{};
private: