equal
deleted
inserted
replaced
22 #include <QStackedLayout> |
22 #include <QStackedLayout> |
23 |
23 |
24 #include "ui_hwform.h" |
24 #include "ui_hwform.h" |
25 #include "pages.h" |
25 #include "pages.h" |
26 #include "playrecordpage.h" |
26 #include "playrecordpage.h" |
|
27 #include "hwconsts.h" |
27 |
28 |
28 void Ui_HWForm::setupUi(QMainWindow *HWForm) |
29 void Ui_HWForm::setupUi(QMainWindow *HWForm) |
29 { |
30 { |
30 SetupFonts(); |
31 SetupFonts(); |
31 |
32 |
32 HWForm->setObjectName(QString::fromUtf8("HWForm")); |
33 HWForm->setObjectName(QString::fromUtf8("HWForm")); |
33 HWForm->resize(QSize(640, 480).expandedTo(HWForm->minimumSizeHint())); |
34 HWForm->resize(QSize(640, 480).expandedTo(HWForm->minimumSizeHint())); |
34 HWForm->setMinimumSize(QSize(720, 430)); |
35 HWForm->setMinimumSize(QSize(720, 430)); |
35 HWForm->setWindowTitle(QMainWindow::tr("Hedgewars")); |
36 HWForm->setWindowTitle(QMainWindow::tr("Hedgewars %1").arg(*cVersionString)); |
36 centralWidget = new QWidget(HWForm); |
37 centralWidget = new QWidget(HWForm); |
37 centralWidget->setObjectName(QString::fromUtf8("centralWidget")); |
38 centralWidget->setObjectName(QString::fromUtf8("centralWidget")); |
38 |
39 |
39 SetupPages(centralWidget); |
40 SetupPages(centralWidget); |
40 |
41 |