mirror of
https://github.com/Quill-OS/quill.git
synced 2024-12-28 08:37:22 -08:00
30 lines
446 B
C
30 lines
446 B
C
|
#ifndef BOOKINFODIALOG_H
|
||
|
#define BOOKINFODIALOG_H
|
||
|
|
||
|
#include <QDialog>
|
||
|
|
||
|
namespace Ui {
|
||
|
class bookInfoDialog;
|
||
|
}
|
||
|
|
||
|
class bookInfoDialog : public QDialog
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
explicit bookInfoDialog(QWidget *parent = nullptr);
|
||
|
~bookInfoDialog();
|
||
|
float sH;
|
||
|
float sW;
|
||
|
float stdIconHeight;
|
||
|
float stdIconWidth;
|
||
|
|
||
|
private slots:
|
||
|
void on_closeBtn_clicked();
|
||
|
|
||
|
private:
|
||
|
Ui::bookInfoDialog *ui;
|
||
|
};
|
||
|
|
||
|
#endif // BOOKINFODIALOG_H
|