QTfrontend/pagegamestats.h
author Zorg <zorgiepoo@gmail.com>
Wed, 08 Jun 2011 03:36:54 -0400
changeset 5229 148d581b17ab
parent 5205 78138ae93820
child 5734 d710db47a1ef
permissions -rw-r--r--
Attempt to fix issue #125. The password pop-up doesn't appear every time when going into the official server anymore, now it only does it when the password is blank. If a user enters an invalid password, the password is set blank to avoid the user going back to the official server just to be rejected. When entering an invalid password, the unknown error dialog doesn't show up anymore, but the connection lost to server one still does. This fixes the bug where the user would be spammed with error messages. The user can also now change his password in the settings page.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1621
d1ded2532d3f - svn maintenance
unc0rr
parents:
diff changeset
     1
/*
d1ded2532d3f - svn maintenance
unc0rr
parents:
diff changeset
     2
 * Hedgewars, a free turn based strategy game
4976
088d40d8aba2 Happy 2011 :)
koda
parents: 3788
diff changeset
     3
 * Copyright (c) 2010-2011 Andrey Korotaev <unC0Rr@gmail.com>
1621
d1ded2532d3f - svn maintenance
unc0rr
parents:
diff changeset
     4
 *
d1ded2532d3f - svn maintenance
unc0rr
parents:
diff changeset
     5
 * This program is free software; you can redistribute it and/or modify
d1ded2532d3f - svn maintenance
unc0rr
parents:
diff changeset
     6
 * it under the terms of the GNU General Public License as published by
d1ded2532d3f - svn maintenance
unc0rr
parents:
diff changeset
     7
 * the Free Software Foundation; version 2 of the License
d1ded2532d3f - svn maintenance
unc0rr
parents:
diff changeset
     8
 *
d1ded2532d3f - svn maintenance
unc0rr
parents:
diff changeset
     9
 * This program is distributed in the hope that it will be useful,
d1ded2532d3f - svn maintenance
unc0rr
parents:
diff changeset
    10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
d1ded2532d3f - svn maintenance
unc0rr
parents:
diff changeset
    11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
d1ded2532d3f - svn maintenance
unc0rr
parents:
diff changeset
    12
 * GNU General Public License for more details.
d1ded2532d3f - svn maintenance
unc0rr
parents:
diff changeset
    13
 *
d1ded2532d3f - svn maintenance
unc0rr
parents:
diff changeset
    14
 * You should have received a copy of the GNU General Public License
d1ded2532d3f - svn maintenance
unc0rr
parents:
diff changeset
    15
 * along with this program; if not, write to the Free Software
d1ded2532d3f - svn maintenance
unc0rr
parents:
diff changeset
    16
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
d1ded2532d3f - svn maintenance
unc0rr
parents:
diff changeset
    17
 */
d1ded2532d3f - svn maintenance
unc0rr
parents:
diff changeset
    18
d1ded2532d3f - svn maintenance
unc0rr
parents:
diff changeset
    19
#ifndef STATSPAGE_H
d1ded2532d3f - svn maintenance
unc0rr
parents:
diff changeset
    20
#define STATSPAGE_H
d1ded2532d3f - svn maintenance
unc0rr
parents:
diff changeset
    21
1625
37aae47943ce Initial health graphic implementation
unc0rr
parents: 1622
diff changeset
    22
#include <QVector>
37aae47943ce Initial health graphic implementation
unc0rr
parents: 1622
diff changeset
    23
#include <QMap>
1636
e528696f2177 Resize health graphic when form is resized
unc0rr
parents: 1625
diff changeset
    24
#include <QGraphicsView>
5205
78138ae93820 some headers cleanup and rename of stats and playrecord pages for consistency
koda
parents: 4976
diff changeset
    25
78138ae93820 some headers cleanup and rename of stats and playrecord pages for consistency
koda
parents: 4976
diff changeset
    26
#include "AbstractPage.h"
1621
d1ded2532d3f - svn maintenance
unc0rr
parents:
diff changeset
    27
1636
e528696f2177 Resize health graphic when form is resized
unc0rr
parents: 1625
diff changeset
    28
class FitGraphicsView : public QGraphicsView
e528696f2177 Resize health graphic when form is resized
unc0rr
parents: 1625
diff changeset
    29
{
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2377
diff changeset
    30
    Q_OBJECT
1636
e528696f2177 Resize health graphic when form is resized
unc0rr
parents: 1625
diff changeset
    31
e528696f2177 Resize health graphic when form is resized
unc0rr
parents: 1625
diff changeset
    32
public:
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2377
diff changeset
    33
    FitGraphicsView(QWidget* parent = 0);
1636
e528696f2177 Resize health graphic when form is resized
unc0rr
parents: 1625
diff changeset
    34
e528696f2177 Resize health graphic when form is resized
unc0rr
parents: 1625
diff changeset
    35
protected:
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2377
diff changeset
    36
    void resizeEvent(QResizeEvent * event);
1636
e528696f2177 Resize health graphic when form is resized
unc0rr
parents: 1625
diff changeset
    37
};
1625
37aae47943ce Initial health graphic implementation
unc0rr
parents: 1622
diff changeset
    38
1621
d1ded2532d3f - svn maintenance
unc0rr
parents:
diff changeset
    39
class PageGameStats : public AbstractPage
d1ded2532d3f - svn maintenance
unc0rr
parents:
diff changeset
    40
{
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2377
diff changeset
    41
    Q_OBJECT
1621
d1ded2532d3f - svn maintenance
unc0rr
parents:
diff changeset
    42
d1ded2532d3f - svn maintenance
unc0rr
parents:
diff changeset
    43
public:
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2377
diff changeset
    44
    PageGameStats(QWidget* parent = 0);
1621
d1ded2532d3f - svn maintenance
unc0rr
parents:
diff changeset
    45
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2377
diff changeset
    46
    QPushButton *BtnBack;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2377
diff changeset
    47
    QLabel *labelGameStats;
3788
9aa8a832e296 adds prettier after-game statistics page with more stats
TheXception
parents: 3236
diff changeset
    48
    QLabel *labelGameWin;
9aa8a832e296 adds prettier after-game statistics page with more stats
TheXception
parents: 3236
diff changeset
    49
    QLabel *labelGameRank;
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2377
diff changeset
    50
    FitGraphicsView * graphic;
1622
8e0d62727f01 Fully separate statistics code from main form code
unc0rr
parents: 1621
diff changeset
    51
8e0d62727f01 Fully separate statistics code from main form code
unc0rr
parents: 1621
diff changeset
    52
public slots:
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2377
diff changeset
    53
    void GameStats(char type, const QString & info);
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2377
diff changeset
    54
    void clear();
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2377
diff changeset
    55
    void renderStats();
2377
f3fab2b09e0c And in frontend
nemo
parents: 1636
diff changeset
    56
1622
8e0d62727f01 Fully separate statistics code from main form code
unc0rr
parents: 1621
diff changeset
    57
private:
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2377
diff changeset
    58
    void AddStatText(const QString & msg);
1625
37aae47943ce Initial health graphic implementation
unc0rr
parents: 1622
diff changeset
    59
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2377
diff changeset
    60
    QMap<quint32, QVector<quint32> > healthPoints;
3788
9aa8a832e296 adds prettier after-game statistics page with more stats
TheXception
parents: 3236
diff changeset
    61
    unsigned int playerPosition;
9aa8a832e296 adds prettier after-game statistics page with more stats
TheXception
parents: 3236
diff changeset
    62
    quint32 lastColor;
1621
d1ded2532d3f - svn maintenance
unc0rr
parents:
diff changeset
    63
};
d1ded2532d3f - svn maintenance
unc0rr
parents:
diff changeset
    64
d1ded2532d3f - svn maintenance
unc0rr
parents:
diff changeset
    65
#endif // STATSPAGE_H