1 | // SPDX-FileCopyrightText: 2023 UnionTech Software Technology Co., Ltd. |
---|---|
2 | // |
3 | // SPDX-License-Identifier: GPL-3.0-or-later |
4 | |
5 | #ifndef MESSAGEBOX_H |
6 | #define MESSAGEBOX_H |
7 | |
8 | #include <qglobal.h> |
9 | |
10 | QT_BEGIN_NAMESPACE |
11 | class QString; |
12 | class QWidget; |
13 | QT_END_NAMESPACE |
14 | |
15 | namespace Internal { |
16 | |
17 | QWidget *warning(const QString &title, const QString &desciption); |
18 | QWidget *information(const QString &title, const QString &desciption); |
19 | QWidget *critical(const QString &title, const QString &desciption); |
20 | |
21 | } |
22 | |
23 | #endif // MESSAGEBOX_H |
24 |