mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-26 22:38:34 +00:00
QtUtils: Add ModalMessageBox
This commit is contained in:
parent
a59010fa29
commit
d1cb79f644
4 changed files with 82 additions and 1 deletions
54
Source/Core/DolphinQt/QtUtils/ModalMessageBox.cpp
Normal file
54
Source/Core/DolphinQt/QtUtils/ModalMessageBox.cpp
Normal file
|
@ -0,0 +1,54 @@
|
|||
// Copyright 2019 Dolphin Emulator Project
|
||||
// Licensed under GPLv2+
|
||||
// Refer to the license.txt file included.
|
||||
|
||||
#include "DolphinQt/QtUtils/ModalMessageBox.h"
|
||||
|
||||
#include <QApplication>
|
||||
|
||||
ModalMessageBox::ModalMessageBox(QWidget* parent) : QMessageBox(parent)
|
||||
{
|
||||
setWindowModality(Qt::WindowModal);
|
||||
|
||||
// No parent is still preferable to showing a hidden parent here.
|
||||
if (parent != nullptr && !parent->isVisible())
|
||||
setParent(nullptr);
|
||||
}
|
||||
|
||||
static inline int ExecMessageBox(ModalMessageBox::Icon icon, QWidget* parent, const QString& title,
|
||||
const QString& text, ModalMessageBox::StandardButtons buttons,
|
||||
ModalMessageBox::StandardButton default_button)
|
||||
{
|
||||
ModalMessageBox msg(parent);
|
||||
msg.setIcon(icon);
|
||||
msg.setWindowTitle(title);
|
||||
msg.setText(text);
|
||||
msg.setStandardButtons(buttons);
|
||||
msg.setDefaultButton(default_button);
|
||||
|
||||
return msg.exec();
|
||||
}
|
||||
|
||||
int ModalMessageBox::critical(QWidget* parent, const QString& title, const QString& text,
|
||||
StandardButtons buttons, StandardButton default_button)
|
||||
{
|
||||
return ExecMessageBox(QMessageBox::Critical, parent, title, text, buttons, default_button);
|
||||
}
|
||||
|
||||
int ModalMessageBox::information(QWidget* parent, const QString& title, const QString& text,
|
||||
StandardButtons buttons, StandardButton default_button)
|
||||
{
|
||||
return ExecMessageBox(QMessageBox::Information, parent, title, text, buttons, default_button);
|
||||
}
|
||||
|
||||
int ModalMessageBox::question(QWidget* parent, const QString& title, const QString& text,
|
||||
StandardButtons buttons, StandardButton default_button)
|
||||
{
|
||||
return ExecMessageBox(QMessageBox::Critical, parent, title, text, buttons, default_button);
|
||||
}
|
||||
|
||||
int ModalMessageBox::warning(QWidget* parent, const QString& title, const QString& text,
|
||||
StandardButtons buttons, StandardButton default_button)
|
||||
{
|
||||
return ExecMessageBox(QMessageBox::Warning, parent, title, text, buttons, default_button);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue