author | nemo |
Mon, 18 Feb 2013 14:06:16 -0500 | |
changeset 8516 | e422cbf9aa33 |
parent 8434 | 4821897a0f10 |
child 8799 | 44e520374cfc |
permissions | -rw-r--r-- |
8383 | 1 |
/* |
2 |
* Hedgewars, a free turn based strategy game |
|
3 |
* Copyright (c) 2004-2012 Andrey Korotaev <unC0Rr@gmail.com> |
|
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 |
|
16 |
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA |
|
17 |
*/ |
|
18 |
||
19 |
#ifndef MESSAGEDIALOG_H |
|
20 |
#define MESSAGEDIALOG_H |
|
21 |
||
22 |
#include <QString> |
|
23 |
#include <QMessageBox> |
|
24 |
||
25 |
class QWidget; |
|
26 |
||
27 |
class MessageDialog |
|
28 |
{ |
|
8434 | 29 |
public: |
30 |
static int ShowErrorMessage(const QString & msg, QWidget * parent = 0); |
|
31 |
static int ShowInfoMessage(const QString & msg, QWidget * parent = 0); |
|
32 |
static int ShowMessage(const QString & msg, const QString & title = QString(), QMessageBox::Icon icon = QMessageBox::NoIcon, QWidget * parent = 0); |
|
8383 | 33 |
}; |
34 |
||
8385
9e8924ff9813
Convert feedback page to dialog (+some fixes from unC0Rr)
dag10
parents:
8383
diff
changeset
|
35 |
#endif |