QTfrontend/statsPage.h
author sheepluva
Sun, 06 Feb 2011 11:39:11 +0100
changeset 4929 3dca560e6510
parent 3788 9aa8a832e296
child 4976 088d40d8aba2
permissions -rw-r--r--
I need this export in order to not have the wrapper.c fail to find Game() on linux From this point on compilation and usage of library should work on linux, at least does for me :P
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;
3788
9aa8a832e296 adds prettier after-game statistics page with more stats
TheXception
parents: 3236
diff changeset
    47
    QLabel *labelGameWin;
9aa8a832e296 adds prettier after-game statistics page with more stats
TheXception
parents: 3236
diff changeset
    48
    QLabel *labelGameRank;
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2377
diff changeset
    49
    FitGraphicsView * graphic;
1622
8e0d62727f01 Fully separate statistics code from main form code
unc0rr
parents: 1621
diff changeset
    50
8e0d62727f01 Fully separate statistics code from main form code
unc0rr
parents: 1621
diff changeset
    51
public slots:
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2377
diff changeset
    52
    void GameStats(char type, const QString & info);
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2377
diff changeset
    53
    void clear();
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2377
diff changeset
    54
    void renderStats();
2377
f3fab2b09e0c And in frontend
nemo
parents: 1636
diff changeset
    55
1622
8e0d62727f01 Fully separate statistics code from main form code
unc0rr
parents: 1621
diff changeset
    56
private:
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2377
diff changeset
    57
    void AddStatText(const QString & msg);
1625
37aae47943ce Initial health graphic implementation
unc0rr
parents: 1622
diff changeset
    58
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2377
diff changeset
    59
    QMap<quint32, QVector<quint32> > healthPoints;
3788
9aa8a832e296 adds prettier after-game statistics page with more stats
TheXception
parents: 3236
diff changeset
    60
    unsigned int playerPosition;
9aa8a832e296 adds prettier after-game statistics page with more stats
TheXception
parents: 3236
diff changeset
    61
    quint32 lastColor;
1621
d1ded2532d3f - svn maintenance
unc0rr
parents:
diff changeset
    62
};
d1ded2532d3f - svn maintenance
unc0rr
parents:
diff changeset
    63
d1ded2532d3f - svn maintenance
unc0rr
parents:
diff changeset
    64
#endif // STATSPAGE_H