notifyController -> specialWB

This commit is contained in:
2025-11-26 11:19:11 +03:00
parent f6e96e002c
commit 44b6299e59
12 changed files with 53 additions and 43 deletions

View File

@@ -0,0 +1,20 @@
#ifndef NOTIFYCONTROLLER_H
#define NOTIFYCONTROLLER_H
#include <QObject>
#include <QWidget>
class NotifyController : public QObject
{
Q_OBJECT
public:
explicit NotifyController(QWidget *parentWidget = nullptr, QObject *parent = nullptr);
void showWarning(QString text, QWidget *parentWidget = nullptr);
private:
QWidget *parentWidget;
};
#endif // NOTIFYCONTROLLER_H