--- a/QTfrontend/pages.cpp Tue Dec 19 17:20:14 2006 +0000
+++ b/QTfrontend/pages.cpp Thu Jan 04 16:27:45 2007 +0000
@@ -480,3 +480,21 @@
about = new About(this);
pageLayout->addWidget(about, 0, 0, 1, 3);
}
+
+PageGameStats::PageGameStats(QWidget* parent) : QWidget(parent)
+{
+ QFont * font14 = new QFont("MS Shell Dlg", 14);
+ QGridLayout * pageLayout = new QGridLayout(this);
+ pageLayout->setColumnStretch(0, 1);
+ pageLayout->setColumnStretch(1, 1);
+ pageLayout->setColumnStretch(2, 1);
+
+ BtnBack = new QPushButton(this);
+ BtnBack->setFont(*font14);
+ BtnBack->setText(QPushButton::tr("Back"));
+ pageLayout->addWidget(BtnBack, 1, 0);
+
+ labelGameResult = new QLabel(this);
+ labelGameResult->setFont(*font14);
+ pageLayout->addWidget(labelGameResult, 0, 1);
+}