mirror of
https://github.com/Quill-OS/quill.git
synced 2024-10-31 21:33:22 -07:00
29 lines
443 B
C++
29 lines
443 B
C++
#ifndef LIBRARYWIDGET_H
|
|
#define LIBRARYWIDGET_H
|
|
|
|
#include <QWidget>
|
|
#include <toast.h>
|
|
|
|
namespace Ui {
|
|
class libraryWidget;
|
|
}
|
|
|
|
class libraryWidget : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit libraryWidget(QWidget *parent = nullptr);
|
|
~libraryWidget();
|
|
|
|
private:
|
|
Ui::libraryWidget * ui;
|
|
toast * toastWindow;
|
|
|
|
private slots:
|
|
void setupView();
|
|
void showToast(QString messageToDisplay);
|
|
|
|
};
|
|
|
|
#endif // LIBRARYWIDGET_H
|