mirror of
https://github.com/Quill-OS/quill.git
synced 2024-10-31 21:33:22 -07:00
31 lines
557 B
C
31 lines
557 B
C
|
#ifndef BOOKOPTIONSDIALOG_H
|
||
|
#define BOOKOPTIONSDIALOG_H
|
||
|
|
||
|
#include <QDialog>
|
||
|
#include <QJsonObject>
|
||
|
|
||
|
namespace Ui {
|
||
|
class bookOptionsDialog;
|
||
|
}
|
||
|
|
||
|
class bookOptionsDialog : public QDialog
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
QString className = this->metaObject()->className();
|
||
|
explicit bookOptionsDialog(QWidget *parent = nullptr);
|
||
|
~bookOptionsDialog();
|
||
|
QString bookPath;
|
||
|
|
||
|
private slots:
|
||
|
void on_pinBtn_clicked();
|
||
|
void on_deleteBtn_clicked();
|
||
|
void on_infoBtn_clicked();
|
||
|
|
||
|
private:
|
||
|
Ui::bookOptionsDialog *ui;
|
||
|
};
|
||
|
|
||
|
#endif // BOOKOPTIONSDIALOG_H
|