QTfrontend/util/MessageDialog.h
author nemo
Sun, 04 Jan 2015 00:44:14 -0500
branch0.9.21
changeset 10743 1d16c5414fee
parent 10108 c68cf030eded
child 11046 47a8c19ecb60
permissions -rw-r--r--
Intent is to allow filtering by arbitrary flag combinations. This isn't actually working yet. No idea why. It seems it should. Tired though, so will look at it tomorrow.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
8383
b557c73a7593 GCI2012: Abstract Hedgewars Dialogs
dag10
parents:
diff changeset
     1
/*
b557c73a7593 GCI2012: Abstract Hedgewars Dialogs
dag10
parents:
diff changeset
     2
 * Hedgewars, a free turn based strategy game
9998
736015b847e3 update copyright to 2014
sheepluva
parents: 9080
diff changeset
     3
 * Copyright (c) 2004-2014 Andrey Korotaev <unC0Rr@gmail.com>
8383
b557c73a7593 GCI2012: Abstract Hedgewars Dialogs
dag10
parents:
diff changeset
     4
 *
b557c73a7593 GCI2012: Abstract Hedgewars Dialogs
dag10
parents:
diff changeset
     5
 * This program is free software; you can redistribute it and/or modify
b557c73a7593 GCI2012: Abstract Hedgewars Dialogs
dag10
parents:
diff changeset
     6
 * it under the terms of the GNU General Public License as published by
b557c73a7593 GCI2012: Abstract Hedgewars Dialogs
dag10
parents:
diff changeset
     7
 * the Free Software Foundation; version 2 of the License
b557c73a7593 GCI2012: Abstract Hedgewars Dialogs
dag10
parents:
diff changeset
     8
 *
b557c73a7593 GCI2012: Abstract Hedgewars Dialogs
dag10
parents:
diff changeset
     9
 * This program is distributed in the hope that it will be useful,
b557c73a7593 GCI2012: Abstract Hedgewars Dialogs
dag10
parents:
diff changeset
    10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
b557c73a7593 GCI2012: Abstract Hedgewars Dialogs
dag10
parents:
diff changeset
    11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
b557c73a7593 GCI2012: Abstract Hedgewars Dialogs
dag10
parents:
diff changeset
    12
 * GNU General Public License for more details.
b557c73a7593 GCI2012: Abstract Hedgewars Dialogs
dag10
parents:
diff changeset
    13
 *
b557c73a7593 GCI2012: Abstract Hedgewars Dialogs
dag10
parents:
diff changeset
    14
 * You should have received a copy of the GNU General Public License
b557c73a7593 GCI2012: Abstract Hedgewars Dialogs
dag10
parents:
diff changeset
    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
b557c73a7593 GCI2012: Abstract Hedgewars Dialogs
dag10
parents:
diff changeset
    17
 */
b557c73a7593 GCI2012: Abstract Hedgewars Dialogs
dag10
parents:
diff changeset
    18
b557c73a7593 GCI2012: Abstract Hedgewars Dialogs
dag10
parents:
diff changeset
    19
#ifndef MESSAGEDIALOG_H
b557c73a7593 GCI2012: Abstract Hedgewars Dialogs
dag10
parents:
diff changeset
    20
#define MESSAGEDIALOG_H
b557c73a7593 GCI2012: Abstract Hedgewars Dialogs
dag10
parents:
diff changeset
    21
b557c73a7593 GCI2012: Abstract Hedgewars Dialogs
dag10
parents:
diff changeset
    22
#include <QMessageBox>
b557c73a7593 GCI2012: Abstract Hedgewars Dialogs
dag10
parents:
diff changeset
    23
b557c73a7593 GCI2012: Abstract Hedgewars Dialogs
dag10
parents:
diff changeset
    24
class QWidget;
b557c73a7593 GCI2012: Abstract Hedgewars Dialogs
dag10
parents:
diff changeset
    25
b557c73a7593 GCI2012: Abstract Hedgewars Dialogs
dag10
parents:
diff changeset
    26
class MessageDialog
b557c73a7593 GCI2012: Abstract Hedgewars Dialogs
dag10
parents:
diff changeset
    27
{
8434
4821897a0f10 big indentation/whitespaces cleanup
sheepluva
parents: 8385
diff changeset
    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
4821897a0f10 big indentation/whitespaces cleanup
sheepluva
parents: 8385
diff changeset
    30
        static int ShowErrorMessage(const QString & msg, QWidget * parent = 0);
4821897a0f10 big indentation/whitespaces cleanup
sheepluva
parents: 8385
diff changeset
    31
        static int ShowInfoMessage(const QString & msg, QWidget * parent = 0);
8807
509d812ca219 fix build
sheepluva
parents: 8805
diff changeset
    32
        /**
509d812ca219 fix build
sheepluva
parents: 8805
diff changeset
    33
         * @brief Displays a message.
509d812ca219 fix build
sheepluva
parents: 8805
diff changeset
    34
         * @param title message title or <code>NULL</code> if no/default title
509d812ca219 fix build
sheepluva
parents: 8805
diff changeset
    35
         * @param msg message to display
509d812ca219 fix build
sheepluva
parents: 8805
diff changeset
    36
         * @param icon (optional) icon to be displayed next to the message
509d812ca219 fix build
sheepluva
parents: 8805
diff changeset
    37
         * @param parent parent Widget
509d812ca219 fix build
sheepluva
parents: 8805
diff changeset
    38
         * @return a QMessageBox::StandardButton value indicating which button was clicked
509d812ca219 fix build
sheepluva
parents: 8805
diff changeset
    39
         */
509d812ca219 fix build
sheepluva
parents: 8805
diff changeset
    40
        static int ShowMessage(const QString & title, const QString & msg, QMessageBox::Icon icon = QMessageBox::NoIcon, QWidget * parent = 0);
8383
b557c73a7593 GCI2012: Abstract Hedgewars Dialogs
dag10
parents:
diff changeset
    41
};
b557c73a7593 GCI2012: Abstract Hedgewars Dialogs
dag10
parents:
diff changeset
    42
8385
9e8924ff9813 Convert feedback page to dialog (+some fixes from unC0Rr)
dag10
parents: 8383
diff changeset
    43
#endif