#ifndef HOMEPAGEWIDGET_H #define HOMEPAGEWIDGET_H #include #include #include "qclickablelabel.h" #include "qtooltiplabel.h" #include "locallibrarywidget.h" #include "toast.h" namespace Ui { class homePageWidget; } class homePageWidget : public QWidget { Q_OBJECT public: QString className = this->metaObject()->className(); explicit homePageWidget(QWidget *parent = nullptr); ~homePageWidget(); int sW; int sH; int stdIconWidth; int stdIconHeight; float stdIconWidthDivider; float stdIconHeightDivider; int bookTitleTruncateThreshold; signals: void openBookSignal(QString bookPath, bool relativePath); void refreshScreen(); private slots: void openBook(QString bookPath); void refreshScreenNative(); void setupDisplay(bool databaseGenerated); void setupDisplaySlot(); void setupDisplayWithDatabase(); void showToast(QString messageToDisplay); private: Ui::homePageWidget *ui; localLibraryWidget * localLibraryWidgetWindow; toast * toastWindow; QVector bookTitleArray; QVector horizontalLayoutArray; QVector verticalLayoutArray; QVector bookBtnArray; }; #endif // HOMEPAGEWIDGET_H