mirror of
https://github.com/Quill-OS/quill.git
synced 2024-10-31 21:33:22 -07:00
37 lines
689 B
C++
37 lines
689 B
C++
#ifndef LOCALLIBRARYWIDGET_H
|
|
#define LOCALLIBRARYWIDGET_H
|
|
|
|
#include <QWidget>
|
|
#include <QLabel>
|
|
|
|
#include "functions.h"
|
|
#include "qclickablelabel.h"
|
|
|
|
namespace Ui {
|
|
class localLibraryWidget;
|
|
}
|
|
|
|
class localLibraryWidget : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
QString className = this->metaObject()->className();
|
|
explicit localLibraryWidget(QWidget *parent = nullptr);
|
|
~localLibraryWidget();
|
|
int buttonsNumber;
|
|
int sW;
|
|
int sH;
|
|
int stdIconWidth;
|
|
int stdIconHeight;
|
|
|
|
private slots:
|
|
void setupBooksList();
|
|
|
|
private:
|
|
Ui::localLibraryWidget * ui;
|
|
QLabel * bookIconArray[10];
|
|
QClickableLabel * bookBtnArray[10];
|
|
};
|
|
|
|
#endif // LOCALLIBRARYWIDGET_H
|