mirror of
https://github.com/Quill-OS/quill.git
synced 2024-10-31 21:33:22 -07:00
33 lines
603 B
C++
33 lines
603 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();
|
|
|
|
signals:
|
|
void openLocalBookInfoDialog();
|
|
|
|
private:
|
|
Ui::bookOptionsDialog *ui;
|
|
};
|
|
|
|
#endif // BOOKOPTIONSDIALOG_H
|