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

@ -1,12 +1,14 @@
#ifndef EXPORT_COMICS_INFO_DIALOG_H
#define EXPORT_COMICS_INFO_DIALOG_H
#include "themable.h"
#include <QDialog>
#include <QLabel>
#include <QLineEdit>
#include <QPushButton>
class ExportComicsInfoDialog : public QDialog
class ExportComicsInfoDialog : public QDialog, protected Themable
{
Q_OBJECT
@ -15,12 +17,16 @@ public:
~ExportComicsInfoDialog() override;
QString source;
protected:
void applyTheme(const Theme &theme) override;
public slots:
void findPath();
void exportComicsInfo();
void close();
private:
QLabel *imgLabel;
QLabel *progress;
QLabel *textLabel;
QLineEdit *path;