QTfrontend/playrecordpage.h
author nemo
Fri, 05 Nov 2010 18:56:12 -0400
changeset 4140 1563b216f243
parent 3236 4ab3917d7d44
child 4976 088d40d8aba2
permissions -rw-r--r--
revert attempts to block switching weapon while targetting in infinite attack mode. just getting too messy. probably best to allow any weapon to be targetted, and store the target in the gear and draw it there instead of uworld, but I'm leaving this alone
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
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) 2006-2010 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
1153
825931b81ad4 Iconed "Back" button everywhere
unc0rr
parents: 1066
diff changeset
    24
#include "pages.h"
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);
579
94db15de0392 - Some changes to make build process clear
unc0rr
parents:
diff changeset
    42
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 1153
diff changeset
    43
    QPushButton *BtnBack;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 1153
diff changeset
    44
    QPushButton *BtnPlayDemo;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 1153
diff changeset
    45
    QPushButton *BtnRenameRecord;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 1153
diff changeset
    46
    QPushButton *BtnRemoveRecord;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 1153
diff changeset
    47
    QListWidget *DemosList;
627
92e136c3eb46 Button for renaming demo and save files
unc0rr
parents: 581
diff changeset
    48
92e136c3eb46 Button for renaming demo and save files
unc0rr
parents: 581
diff changeset
    49
private:
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 1153
diff changeset
    50
    RecordType recType;
627
92e136c3eb46 Button for renaming demo and save files
unc0rr
parents: 581
diff changeset
    51
92e136c3eb46 Button for renaming demo and save files
unc0rr
parents: 581
diff changeset
    52
private slots:
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 1153
diff changeset
    53
    void renameRecord();
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 1153
diff changeset
    54
    void removeRecord();
579
94db15de0392 - Some changes to make build process clear
unc0rr
parents:
diff changeset
    55
};
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
#endif // PLAYRECORDPAGE_H