quill/locallibrarywidget.h
2022-06-23 15:34:40 -04:00

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