summaryrefslogtreecommitdiffstats
path: root/gui/CustomMessageBox.h
blob: 145651ece54b3fb28ef01291e88c995e595f01ee (plain)
1
2
3
4
5
6
7
8
9
10
11
#pragma once

#include <QMessageBox>

namespace CustomMessageBox
{
	QMessageBox *selectable(QWidget *parent, const QString &title, const QString &text,
							QMessageBox::Icon icon = QMessageBox::NoIcon,
							QMessageBox::StandardButtons buttons = QMessageBox::Ok,
							QMessageBox::StandardButton defaultButton = QMessageBox::NoButton);
}