diff -r 6b0af3860192 -r 94db15de0392 QTfrontend/playrecordpage.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/QTfrontend/playrecordpage.cpp Mon Aug 20 17:49:39 2007 +0000 @@ -0,0 +1,59 @@ +/* + * Hedgewars, a worms-like game + * Copyright (c) 2006, 2007 Andrey Korotaev + * + * 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 +#include +#include +#include + +#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")); + +} +