quill/bookinfodialog.h

40 lines
712 B
C
Raw Permalink Normal View History

2021-12-27 12:04:39 -08:00
#ifndef BOOKINFODIALOG_H
#define BOOKINFODIALOG_H
#include <QDialog>
2022-07-12 09:34:36 -07:00
#include "textwidget.h"
2021-12-27 12:04:39 -08:00
namespace Ui {
class bookInfoDialog;
}
class bookInfoDialog : public QDialog
{
Q_OBJECT
public:
QString className = this->metaObject()->className();
2021-12-27 12:04:39 -08:00
explicit bookInfoDialog(QWidget *parent = nullptr);
~bookInfoDialog();
float sH;
float sW;
float stdIconHeight;
float stdIconWidth;
private slots:
void on_closeBtn_clicked();
void on_getBtn_clicked();
void waitForBookFetch();
signals:
void showToast(QString messageToDisplay);
void closeIndefiniteToast();
2021-12-27 12:04:39 -08:00
private:
2022-07-12 09:34:36 -07:00
Ui::bookInfoDialog * ui;
textwidget * textwidgetWindow;
2021-12-27 12:04:39 -08:00
};
#endif // BOOKINFODIALOG_H