QTfrontend/statsPage.h
author nemo
Sun, 20 Jun 2010 22:35:10 -0400
changeset 3526 a1d2180fef42
parent 3236 4ab3917d7d44
child 3788 9aa8a832e296
permissions -rw-r--r--
Replace SHA1 with adler32. For simple purposes of checking to see if players are playing the same map, this should be quite adequate and runs 15 times faster.
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
3236
4ab3917d7d44 Update (c) lines to 2010 as unc0rr requested - they all had varying values so I just took the first year mentioned, then tacked on -2010
nemo
parents: 2948
diff changeset
     3
 * Copyright (c) 2010 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>
1621
d1ded2532d3f - svn maintenance
unc0rr
parents:
diff changeset
    25
#include "pages.h"
d1ded2532d3f - svn maintenance
unc0rr
parents:
diff changeset
    26
1636
e528696f2177 Resize health graphic when form is resized
unc0rr
parents: 1625
diff changeset
    27
class FitGraphicsView : public QGraphicsView
e528696f2177 Resize health graphic when form is resized
unc0rr
parents: 1625
diff changeset
    28
{
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2377
diff changeset
    29
    Q_OBJECT
1636
e528696f2177 Resize health graphic when form is resized
unc0rr
parents: 1625
diff changeset
    30
e528696f2177 Resize health graphic when form is resized
unc0rr
parents: 1625
diff changeset
    31
public:
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2377
diff changeset
    32
    FitGraphicsView(QWidget* parent = 0);
1636
e528696f2177 Resize health graphic when form is resized
unc0rr
parents: 1625
diff changeset
    33
e528696f2177 Resize health graphic when form is resized
unc0rr
parents: 1625
diff changeset
    34
protected:
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2377
diff changeset
    35
    void resizeEvent(QResizeEvent * event);
1636
e528696f2177 Resize health graphic when form is resized
unc0rr
parents: 1625
diff changeset
    36
};
1625
37aae47943ce Initial health graphic implementation
unc0rr
parents: 1622
diff changeset
    37
1621
d1ded2532d3f - svn maintenance
unc0rr
parents:
diff changeset
    38
class PageGameStats : public AbstractPage
d1ded2532d3f - svn maintenance
unc0rr
parents:
diff changeset
    39
{
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2377
diff changeset
    40
    Q_OBJECT
1621
d1ded2532d3f - svn maintenance
unc0rr
parents:
diff changeset
    41
d1ded2532d3f - svn maintenance
unc0rr
parents:
diff changeset
    42
public:
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2377
diff changeset
    43
    PageGameStats(QWidget* parent = 0);
1621
d1ded2532d3f - svn maintenance
unc0rr
parents:
diff changeset
    44
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2377
diff changeset
    45
    QPushButton *BtnBack;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2377
diff changeset
    46
    QLabel *labelGameStats;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2377
diff changeset
    47
    FitGraphicsView * graphic;
1622
8e0d62727f01 Fully separate statistics code from main form code
unc0rr
parents: 1621
diff changeset
    48
8e0d62727f01 Fully separate statistics code from main form code
unc0rr
parents: 1621
diff changeset
    49
public slots:
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2377
diff changeset
    50
    void GameStats(char type, const QString & info);
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2377
diff changeset
    51
    void clear();
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2377
diff changeset
    52
    void renderStats();
2377
f3fab2b09e0c And in frontend
nemo
parents: 1636
diff changeset
    53
1622
8e0d62727f01 Fully separate statistics code from main form code
unc0rr
parents: 1621
diff changeset
    54
private:
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2377
diff changeset
    55
    void AddStatText(const QString & msg);
1625
37aae47943ce Initial health graphic implementation
unc0rr
parents: 1622
diff changeset
    56
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2377
diff changeset
    57
    QMap<quint32, QVector<quint32> > healthPoints;
1621
d1ded2532d3f - svn maintenance
unc0rr
parents:
diff changeset
    58
};
d1ded2532d3f - svn maintenance
unc0rr
parents:
diff changeset
    59
d1ded2532d3f - svn maintenance
unc0rr
parents:
diff changeset
    60
#endif // STATSPAGE_H