author | unC0Rr |
Thu, 10 Sep 2020 09:30:41 +0200 | |
changeset 15739 | 94f4d0a96143 |
parent 11046 | 47a8c19ecb60 |
permissions | -rw-r--r-- |
8383 | 1 |
/* |
2 |
* Hedgewars, a free turn based strategy game |
|
11046 | 3 |
* Copyright (c) 2004-2015 Andrey Korotaev <unC0Rr@gmail.com> |
8383 | 4 |
* |
5 |
* This program is free software; you can redistribute it and/or modify |
|
6 |
* it under the terms of the GNU General Public License as published by |
|
7 |
* the Free Software Foundation; version 2 of the License |
|
8 |
* |
|
9 |
* This program is distributed in the hope that it will be useful, |
|
10 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
11 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
12 |
* GNU General Public License for more details. |
|
13 |
* |
|
14 |
* You should have received a copy of the GNU General Public License |
|
15 |
* along with this program; if not, write to the Free Software |
|
10108
c68cf030eded
update FSF address. note: two sdl include files (by Sam Lantinga) still have the old FSF address in their copyright - but I ain't gonna touch their copyright headers
sheepluva
parents:
9998
diff
changeset
|
16 |
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
8383 | 17 |
*/ |
18 |
||
19 |
#ifndef MESSAGEDIALOG_H |
|
20 |
#define MESSAGEDIALOG_H |
|
21 |
||
22 |
#include <QMessageBox> |
|
23 |
||
24 |
class QWidget; |
|
25 |
||
26 |
class MessageDialog |
|
27 |
{ |
|
8434 | 28 |
public: |
8799
44e520374cfc
drop QApplication in favor of HWApplication and minor refactor of MessageDialog
koda
parents:
8434
diff
changeset
|
29 |
static int ShowFatalMessage(const QString & msg, QWidget * parent = 0); |
8434 | 30 |
static int ShowErrorMessage(const QString & msg, QWidget * parent = 0); |
31 |
static int ShowInfoMessage(const QString & msg, QWidget * parent = 0); |
|
8807 | 32 |
/** |
33 |
* @brief Displays a message. |
|
34 |
* @param title message title or <code>NULL</code> if no/default title |
|
35 |
* @param msg message to display |
|
36 |
* @param icon (optional) icon to be displayed next to the message |
|
37 |
* @param parent parent Widget |
|
38 |
* @return a QMessageBox::StandardButton value indicating which button was clicked |
|
39 |
*/ |
|
40 |
static int ShowMessage(const QString & title, const QString & msg, QMessageBox::Icon icon = QMessageBox::NoIcon, QWidget * parent = 0); |
|
8383 | 41 |
}; |
42 |
||
8385
9e8924ff9813
Convert feedback page to dialog (+some fixes from unC0Rr)
dag10
parents:
8383
diff
changeset
|
43 |
#endif |