Initial implementation of theming

This commit is contained in:
luisangelsm
2026-02-19 17:39:22 +01:00
parent ed28c94f66
commit 044176d6b7
303 changed files with 4634 additions and 2119 deletions

View File

@ -3,12 +3,17 @@
#include <QtWidgets>
class ImportWidget : public QWidget
#include "themable.h"
class ImportWidget : public QWidget, protected Themable
{
Q_OBJECT
public:
explicit ImportWidget(QWidget *parent = 0);
protected:
void applyTheme(const Theme &theme) override;
signals:
void stop();
public slots:
@ -41,8 +46,11 @@ private:
quint64 i;
QToolButton *hideButton;
QLabel *topDecorator;
QLabel *bottomDecorator;
void resizeEvent(QResizeEvent *event) override;
void updateTextColors();
};
#endif // IMPORT_WIDGET_H