mirror of
https://github.com/Quill-OS/quill.git
synced 2024-11-01 05:43:21 -07:00
34 lines
461 B
C
34 lines
461 B
C
|
#ifndef TOAST_H
|
||
|
#define TOAST_H
|
||
|
|
||
|
#include <QDialog>
|
||
|
|
||
|
#include "wifidialog.h"
|
||
|
|
||
|
namespace Ui {
|
||
|
class toast;
|
||
|
}
|
||
|
|
||
|
class toast : public QDialog
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
explicit toast(QWidget *parent = nullptr);
|
||
|
~toast();
|
||
|
void centerToast();
|
||
|
|
||
|
private:
|
||
|
Ui::toast *ui;
|
||
|
wifiDialog *wifiDialogWindow;
|
||
|
|
||
|
private slots:
|
||
|
void showWifiDialog(int networksFound);
|
||
|
void exitSlot();
|
||
|
|
||
|
signals:
|
||
|
void updateWifiIconSig(int mode);
|
||
|
};
|
||
|
|
||
|
#endif // TOAST_H
|