QTfrontend/pageplayrecord.h
author Xeli
Fri, 16 Sep 2011 20:39:14 +0200
branchhedgeroid
changeset 5938 c186c454779d
parent 5865 35387d27f73a
child 6009 14f6fc9869f2
permissions -rw-r--r--
isOnCurrentHog and isOnCrosshair now look at the distance relative to the screen rather than world coords, this means that zooming out doesn't make it harder to touch the hog or crosshair
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
579
94db15de0392 - Some changes to make build process clear
unc0rr
parents:
diff changeset
     1
/*
1066
1f1b3686a2b0 Update copyright headers a bit
unc0rr
parents: 720
diff changeset
     2
 * Hedgewars, a free turn based strategy game
4976
088d40d8aba2 Happy 2011 :)
koda
parents: 3236
diff changeset
     3
 * Copyright (c) 2006-2011 Andrey Korotaev <unC0Rr@gmail.com>
579
94db15de0392 - Some changes to make build process clear
unc0rr
parents:
diff changeset
     4
 *
94db15de0392 - Some changes to make build process clear
unc0rr
parents:
diff changeset
     5
 * This program is free software; you can redistribute it and/or modify
94db15de0392 - Some changes to make build process clear
unc0rr
parents:
diff changeset
     6
 * it under the terms of the GNU General Public License as published by
94db15de0392 - Some changes to make build process clear
unc0rr
parents:
diff changeset
     7
 * the Free Software Foundation; version 2 of the License
94db15de0392 - Some changes to make build process clear
unc0rr
parents:
diff changeset
     8
 *
94db15de0392 - Some changes to make build process clear
unc0rr
parents:
diff changeset
     9
 * This program is distributed in the hope that it will be useful,
94db15de0392 - Some changes to make build process clear
unc0rr
parents:
diff changeset
    10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
94db15de0392 - Some changes to make build process clear
unc0rr
parents:
diff changeset
    11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
94db15de0392 - Some changes to make build process clear
unc0rr
parents:
diff changeset
    12
 * GNU General Public License for more details.
94db15de0392 - Some changes to make build process clear
unc0rr
parents:
diff changeset
    13
 *
94db15de0392 - Some changes to make build process clear
unc0rr
parents:
diff changeset
    14
 * You should have received a copy of the GNU General Public License
94db15de0392 - Some changes to make build process clear
unc0rr
parents:
diff changeset
    15
 * along with this program; if not, write to the Free Software
94db15de0392 - Some changes to make build process clear
unc0rr
parents:
diff changeset
    16
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
94db15de0392 - Some changes to make build process clear
unc0rr
parents:
diff changeset
    17
 */
94db15de0392 - Some changes to make build process clear
unc0rr
parents:
diff changeset
    18
94db15de0392 - Some changes to make build process clear
unc0rr
parents:
diff changeset
    19
#ifndef PLAYRECORDPAGE_H
94db15de0392 - Some changes to make build process clear
unc0rr
parents:
diff changeset
    20
#define PLAYRECORDPAGE_H
94db15de0392 - Some changes to make build process clear
unc0rr
parents:
diff changeset
    21
94db15de0392 - Some changes to make build process clear
unc0rr
parents:
diff changeset
    22
#include <QDir>
94db15de0392 - Some changes to make build process clear
unc0rr
parents:
diff changeset
    23
5205
78138ae93820 some headers cleanup and rename of stats and playrecord pages for consistency
koda
parents: 4976
diff changeset
    24
#include "AbstractPage.h"
1153
825931b81ad4 Iconed "Back" button everywhere
unc0rr
parents: 1066
diff changeset
    25
579
94db15de0392 - Some changes to make build process clear
unc0rr
parents:
diff changeset
    26
class QPushButton;
94db15de0392 - Some changes to make build process clear
unc0rr
parents:
diff changeset
    27
class QListWidget;
94db15de0392 - Some changes to make build process clear
unc0rr
parents:
diff changeset
    28
1153
825931b81ad4 Iconed "Back" button everywhere
unc0rr
parents: 1066
diff changeset
    29
class PagePlayDemo : public AbstractPage
579
94db15de0392 - Some changes to make build process clear
unc0rr
parents:
diff changeset
    30
{
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 1153
diff changeset
    31
    Q_OBJECT
579
94db15de0392 - Some changes to make build process clear
unc0rr
parents:
diff changeset
    32
94db15de0392 - Some changes to make build process clear
unc0rr
parents:
diff changeset
    33
public:
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 1153
diff changeset
    34
    enum RecordType {
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 1153
diff changeset
    35
        RT_Demo,
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 1153
diff changeset
    36
        RT_Save
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 1153
diff changeset
    37
    };
581
909141b17f68 Better 'Load' page
unc0rr
parents: 580
diff changeset
    38
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 1153
diff changeset
    39
    PagePlayDemo(QWidget* parent = 0);
579
94db15de0392 - Some changes to make build process clear
unc0rr
parents:
diff changeset
    40
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 1153
diff changeset
    41
    void FillFromDir(RecordType rectype);
5865
35387d27f73a Save demo when loaded from save game finishes
unc0rr
parents: 5205
diff changeset
    42
    bool isSave();
579
94db15de0392 - Some changes to make build process clear
unc0rr
parents:
diff changeset
    43
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 1153
diff changeset
    44
    QPushButton *BtnBack;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 1153
diff changeset
    45
    QPushButton *BtnPlayDemo;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 1153
diff changeset
    46
    QPushButton *BtnRenameRecord;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 1153
diff changeset
    47
    QPushButton *BtnRemoveRecord;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 1153
diff changeset
    48
    QListWidget *DemosList;
627
92e136c3eb46 Button for renaming demo and save files
unc0rr
parents: 581
diff changeset
    49
92e136c3eb46 Button for renaming demo and save files
unc0rr
parents: 581
diff changeset
    50
private:
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 1153
diff changeset
    51
    RecordType recType;
627
92e136c3eb46 Button for renaming demo and save files
unc0rr
parents: 581
diff changeset
    52
92e136c3eb46 Button for renaming demo and save files
unc0rr
parents: 581
diff changeset
    53
private slots:
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 1153
diff changeset
    54
    void renameRecord();
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 1153
diff changeset
    55
    void removeRecord();
579
94db15de0392 - Some changes to make build process clear
unc0rr
parents:
diff changeset
    56
};
94db15de0392 - Some changes to make build process clear
unc0rr
parents:
diff changeset
    57
94db15de0392 - Some changes to make build process clear
unc0rr
parents:
diff changeset
    58
94db15de0392 - Some changes to make build process clear
unc0rr
parents:
diff changeset
    59
#endif // PLAYRECORDPAGE_H