2022-08-19 15:59:36 +02:00
|
|
|
// Copyright (C) 2016 Digia Plc and/or its subsidiary(-ies).
|
2022-12-21 10:12:09 +01:00
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
2014-11-19 11:48:40 +01:00
|
|
|
|
2016-03-18 07:55:01 +01:00
|
|
|
#pragma once
|
2014-11-19 11:48:40 +01:00
|
|
|
|
2014-11-25 11:26:56 +01:00
|
|
|
#include "core_global.h"
|
2014-11-19 11:48:40 +01:00
|
|
|
|
|
|
|
|
QT_BEGIN_NAMESPACE
|
|
|
|
|
class QString;
|
2016-12-14 09:04:29 +01:00
|
|
|
class QWidget;
|
2014-11-19 11:48:40 +01:00
|
|
|
QT_END_NAMESPACE
|
|
|
|
|
|
2014-11-25 11:26:56 +01:00
|
|
|
namespace Core {
|
2014-11-19 11:48:40 +01:00
|
|
|
namespace AsynchronousMessageBox {
|
|
|
|
|
|
2016-12-14 09:04:29 +01:00
|
|
|
CORE_EXPORT QWidget *warning(const QString &title, const QString &desciption);
|
|
|
|
|
CORE_EXPORT QWidget *information(const QString &title, const QString &desciption);
|
|
|
|
|
CORE_EXPORT QWidget *critical(const QString &title, const QString &desciption);
|
|
|
|
|
|
2014-11-19 11:48:40 +01:00
|
|
|
}
|
|
|
|
|
}
|