1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
// Copyright (C) 2016 Digia Plc and/or its subsidiary(-ies).
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
#include "messagebox.h"
#include <QMessageBox>
#include "icore.h"
namespace Core {
namespace AsynchronousMessageBox {
namespace {
QWidget *message(QMessageBox::Icon icon, const QString &title, const QString &desciption)
{
QMessageBox *messageBox = new QMessageBox(icon,
title,
desciption,
QMessageBox::Ok,
Core::ICore::dialogParent());
messageBox->setAttribute(Qt::WA_DeleteOnClose);
messageBox->setModal(true);
messageBox->show();
return messageBox;
}
}
QWidget *warning(const QString &title, const QString &desciption)
{
return message(QMessageBox::Warning, title, desciption);
}
QWidget *information(const QString &title, const QString &desciption)
{
return message(QMessageBox::Information, title, desciption);
}
QWidget *critical(const QString &title, const QString &desciption)
{
return message(QMessageBox::Critical, title, desciption);
}
}
}
|