mirror of
https://github.com/YACReader/yacreader
synced 2026-03-01 18:33:09 -05:00
Initial implementation of theming
This commit is contained in:
@ -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;
|
||||
|
||||
Reference in New Issue
Block a user