mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-29 20:28:56 +00:00
QtUtils: Add ModalMessageBox
This commit is contained in:
parent
a59010fa29
commit
d1cb79f644
4 changed files with 82 additions and 1 deletions
23
Source/Core/DolphinQt/QtUtils/ModalMessageBox.h
Normal file
23
Source/Core/DolphinQt/QtUtils/ModalMessageBox.h
Normal file
|
@ -0,0 +1,23 @@
|
|||
// Copyright 2019 Dolphin Emulator Project
|
||||
// Licensed under GPLv2+
|
||||
// Refer to the license.txt file included.
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <QMessageBox>
|
||||
|
||||
// Helper for making message boxes modal by default
|
||||
class ModalMessageBox : public QMessageBox
|
||||
{
|
||||
public:
|
||||
explicit ModalMessageBox(QWidget* parent);
|
||||
|
||||
static int critical(QWidget* parent, const QString& title, const QString& text,
|
||||
StandardButtons buttons = Ok, StandardButton default_button = NoButton);
|
||||
static int information(QWidget* parent, const QString& title, const QString& text,
|
||||
StandardButtons buttons = Ok, StandardButton default_button = NoButton);
|
||||
static int question(QWidget* parent, const QString& title, const QString& text,
|
||||
StandardButtons buttons = Yes | No, StandardButton default_button = NoButton);
|
||||
static int warning(QWidget* parent, const QString& title, const QString& text,
|
||||
StandardButtons buttons = Ok, StandardButton default_button = NoButton);
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue