- Some changes to make build process clear
- There could be 1-8 hedgehogs (was 3-8) in team
- Start implementing 'Load' page
/*
* Hedgewars, a worms-like game
* Copyright (c) 2006, 2007 Andrey Korotaev <unC0Rr@gmail.com>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; version 2 of the License
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*/
#include <QFont>
#include <QGridLayout>
#include <QPushButton>
#include <QListWidget>
#include "hwconsts.h"
#include "playrecordpage.h"
PagePlayDemo::PagePlayDemo(QWidget* parent) : QWidget(parent)
{
QFont * font14 = new QFont("MS Shell Dlg", 14);
QGridLayout * pageLayout = new QGridLayout(this);
pageLayout->setColumnStretch(0, 1);
pageLayout->setColumnStretch(1, 2);
pageLayout->setColumnStretch(2, 1);
BtnBack = new QPushButton(this);
BtnBack->setFont(*font14);
BtnBack->setText(QPushButton::tr("Back"));
pageLayout->addWidget(BtnBack, 1, 0);
BtnPlayDemo = new QPushButton(this);
BtnPlayDemo->setGeometry(QRect(240, 330, 161, 41));
BtnPlayDemo->setFont(*font14);
BtnPlayDemo->setText(QPushButton::tr("Play demo"));
pageLayout->addWidget(BtnPlayDemo, 1, 2);
DemosList = new QListWidget(this);
DemosList->setGeometry(QRect(170, 10, 311, 311));
pageLayout->addWidget(DemosList, 0, 1);
}
void PagePlayDemo::FillFromDir(QDir dir)
{
dir.setFilter(QDir::Files);
DemosList->clear();
DemosList->addItems(dir.entryList(QStringList("*.hwd_" + *cProtoVer))
.replaceInStrings(QRegExp("^(.*).hwd_" + *cProtoVer + "$"), "\\1"));
}