Background and buttons and styles.

This commit is contained in:
Lukas Brübach 2025-06-18 22:33:55 +02:00
parent aa5a6222fd
commit 7bed1dc908
5 changed files with 173 additions and 33 deletions

View file

@ -17,6 +17,7 @@ public:
QGroupBox *createUpdatesButtonGroup(const QString &title);
QGroupBox *createNavigationButtonGroup(const QString &title);
QGroupBox *createPlayButtonGroup(const QString &title);
QPair<QColor, QColor> extractDominantColors(const QPixmap &pixmap);
public slots:
void paintEvent(QPaintEvent *event) override;
@ -26,6 +27,7 @@ private:
TabSupervisor *tabSupervisor;
QPixmap background;
QPixmap overlay;
QPair<QColor, QColor> gradientColors;
};
#endif // HOME_WIDGET_H