author | Wuzzy <almikes@aol.com> |
Fri, 06 May 2016 18:35:33 +0200 | |
changeset 11821 | f73a299c7884 |
parent 11820 | 68bc5ebce319 |
child 11886 | 34ede05e4d4f |
permissions | -rw-r--r-- |
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
1 |
/* |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
2 |
* Hedgewars, a free turn based strategy game |
11046 | 3 |
* Copyright (c) 2004-2015 Andrey Korotaev <unC0Rr@gmail.com> |
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
4 |
* |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
5 |
* This program is free software; you can redistribute it and/or modify |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
6 |
* it under the terms of the GNU General Public License as published by |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
7 |
* the Free Software Foundation; version 2 of the License |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
8 |
* |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
9 |
* This program is distributed in the hope that it will be useful, |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
10 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
11 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
12 |
* GNU General Public License for more details. |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
13 |
* |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
14 |
* You should have received a copy of the GNU General Public License |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
15 |
* along with this program; if not, write to the Free Software |
10108
c68cf030eded
update FSF address. note: two sdl include files (by Sam Lantinga) still have the old FSF address in their copyright - but I ain't gonna touch their copyright headers
sheepluva
parents:
9998
diff
changeset
|
16 |
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
17 |
*/ |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
18 |
|
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
19 |
#include <QGridLayout> |
6042
8b5345758f62
some more cleanups/refactoring/blahblah, some button positions may are a bit off atm. also I added a new picture for one of the buttons
sheepluva
parents:
6009
diff
changeset
|
20 |
#include <QHBoxLayout> |
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
21 |
#include <QPushButton> |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
22 |
#include <QGroupBox> |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
23 |
#include <QComboBox> |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
24 |
#include <QLabel> |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
25 |
#include <QLineEdit> |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
26 |
#include <QMessageBox> |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
27 |
#include <QDataWidgetMapper> |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
28 |
#include <QSpinBox> |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
29 |
|
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
30 |
#include "ammoSchemeModel.h" |
5204 | 31 |
#include "pagescheme.h" |
6062
2827ded8a5ef
rename misc.{h,cpp} to the name of the class they contain (FreqSpinBox)
sheepluva
parents:
6060
diff
changeset
|
32 |
#include "FreqSpinBox.h" |
11820
68bc5ebce319
Fix mines time displaying "1 seconds" in frontend
Wuzzy <almikes@aol.com>
parents:
11818
diff
changeset
|
33 |
#include "MinesTimeSpinBox.h" |
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
34 |
|
6042
8b5345758f62
some more cleanups/refactoring/blahblah, some button positions may are a bit off atm. also I added a new picture for one of the buttons
sheepluva
parents:
6009
diff
changeset
|
35 |
|
8b5345758f62
some more cleanups/refactoring/blahblah, some button positions may are a bit off atm. also I added a new picture for one of the buttons
sheepluva
parents:
6009
diff
changeset
|
36 |
QLayout * PageScheme::bodyLayoutDefinition() |
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
37 |
{ |
6042
8b5345758f62
some more cleanups/refactoring/blahblah, some button positions may are a bit off atm. also I added a new picture for one of the buttons
sheepluva
parents:
6009
diff
changeset
|
38 |
QGridLayout * pageLayout = new QGridLayout(); |
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
39 |
QGroupBox * gb = new QGroupBox(this); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
40 |
|
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
41 |
QGridLayout * gl = new QGridLayout(); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
42 |
gb->setLayout(gl); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
43 |
QSizePolicy sp; |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
44 |
sp.setVerticalPolicy(QSizePolicy::MinimumExpanding); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
45 |
sp.setHorizontalPolicy(QSizePolicy::Expanding); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
46 |
|
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
47 |
pageLayout->addWidget(gb, 1,0,13,5); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
48 |
|
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
49 |
gbGameModes = new QGroupBox(QGroupBox::tr("Game Modifiers"), gb); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
50 |
gbBasicSettings = new QGroupBox(QGroupBox::tr("Basic Settings"), gb); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
51 |
|
6042
8b5345758f62
some more cleanups/refactoring/blahblah, some button positions may are a bit off atm. also I added a new picture for one of the buttons
sheepluva
parents:
6009
diff
changeset
|
52 |
// TODO name stuff and put CSS into main style sheet |
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
53 |
gbGameModes->setStyleSheet(".QGroupBox {" |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6089
diff
changeset
|
54 |
"background-color: #130f2c; background-image:url();" |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6089
diff
changeset
|
55 |
"}"); |
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
56 |
gbBasicSettings->setStyleSheet(".QGroupBox {" |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6089
diff
changeset
|
57 |
"background-color: #130f2c; background-image:url();" |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6089
diff
changeset
|
58 |
"}"); |
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
59 |
|
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
60 |
gbGameModes->setSizePolicy(sp); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
61 |
gbBasicSettings->setSizePolicy(sp); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
62 |
gl->addWidget(gbGameModes,0,0,1,3,Qt::AlignTop); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
63 |
gl->addWidget(gbBasicSettings,0,3,1,3,Qt::AlignTop); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
64 |
|
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
65 |
QGridLayout * glGMLayout = new QGridLayout(gbGameModes); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
66 |
QGridLayout * glBSLayout = new QGridLayout(gbBasicSettings); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
67 |
gbGameModes->setLayout(glGMLayout); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
68 |
gbBasicSettings->setLayout(glBSLayout); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
69 |
// Left |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
70 |
|
6089 | 71 |
TBW_mode_Forts = new ToggleButtonWidget(gbGameModes, ":/res/btnForts@2x.png"); |
6699
83dd3447a212
exploit the new setWhatsThis feature in our desktop frontend
koda
parents:
6616
diff
changeset
|
72 |
TBW_mode_Forts->setWhatsThis(tr("Defend your fort and destroy the opponents, two team colours max!")); |
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
73 |
glGMLayout->addWidget(TBW_mode_Forts,0,0,1,1); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
74 |
|
11695 | 75 |
TBW_disablegirders = new ToggleButtonWidget(gbGameModes, ":/res/btnDisableGirders@2x.png"); |
76 |
TBW_disablegirders->setWhatsThis(tr("Disable girders when generating random maps.")); |
|
77 |
glGMLayout->addWidget(TBW_disablegirders,0,1,1,1); |
|
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
78 |
|
11695 | 79 |
TBW_disablelandobjects = new ToggleButtonWidget(gbGameModes, ":/res/btnDisableLandObjects@2x.png"); |
80 |
TBW_disablelandobjects->setWhatsThis(tr("Disable land objects when generating random maps.")); |
|
81 |
glGMLayout->addWidget(TBW_disablelandobjects,0,2,1,1); |
|
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
82 |
|
6089 | 83 |
TBW_border = new ToggleButtonWidget(gbGameModes, ":/res/btnBorder@2x.png"); |
6699
83dd3447a212
exploit the new setWhatsThis feature in our desktop frontend
koda
parents:
6616
diff
changeset
|
84 |
TBW_border->setWhatsThis(tr("Add an indestructible border around the terrain")); |
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
85 |
glGMLayout->addWidget(TBW_border,0,3,1,1); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
86 |
|
11695 | 87 |
TBW_bottomborder = new ToggleButtonWidget(gbGameModes, ":/res/btnBottomBorder@2x.png"); |
88 |
TBW_bottomborder->setWhatsThis(tr("Add an indestructible border along the bottom")); |
|
89 |
glGMLayout->addWidget(TBW_bottomborder,0,4,1,1); |
|
90 |
||
91 |
TBW_solid = new ToggleButtonWidget(gbGameModes, ":/res/btnSolid@2x.png"); |
|
92 |
TBW_solid->setWhatsThis(tr("Land can not be destroyed!")); |
|
93 |
glGMLayout->addWidget(TBW_solid,1,0,1,1); |
|
94 |
||
6089 | 95 |
TBW_lowGravity = new ToggleButtonWidget(gbGameModes, ":/res/btnLowGravity@2x.png"); |
6699
83dd3447a212
exploit the new setWhatsThis feature in our desktop frontend
koda
parents:
6616
diff
changeset
|
96 |
TBW_lowGravity->setWhatsThis(tr("Lower gravity")); |
11695 | 97 |
glGMLayout->addWidget(TBW_lowGravity,1,1,1,1); |
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
98 |
|
11695 | 99 |
TBW_nowind = new ToggleButtonWidget(gbGameModes, ":/res/btnNoWind@2x.png"); |
100 |
TBW_nowind->setWhatsThis(tr("You will not have to worry about wind anymore.")); |
|
101 |
glGMLayout->addWidget(TBW_nowind,1,2,1,1); |
|
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
102 |
|
11695 | 103 |
TBW_morewind = new ToggleButtonWidget(gbGameModes, ":/res/btnMoreWind@2x.png"); |
104 |
TBW_morewind->setWhatsThis(tr("Wind will affect almost everything.")); |
|
105 |
glGMLayout->addWidget(TBW_morewind,1,3,1,1); |
|
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
106 |
|
6089 | 107 |
TBW_artillery = new ToggleButtonWidget(gbGameModes, ":/res/btnArtillery@2x.png"); |
6699
83dd3447a212
exploit the new setWhatsThis feature in our desktop frontend
koda
parents:
6616
diff
changeset
|
108 |
TBW_artillery->setWhatsThis(tr("Your hogs are unable to move, put your artillery skills to the test")); |
11695 | 109 |
glGMLayout->addWidget(TBW_artillery,1,4,1,1); |
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
110 |
|
11695 | 111 |
TBW_vampiric = new ToggleButtonWidget(gbGameModes, ":/res/btnVampiric@2x.png"); |
112 |
TBW_vampiric->setWhatsThis(tr("Gain 80% of the damage you do back in health")); |
|
113 |
glGMLayout->addWidget(TBW_vampiric,2,0,1,1); |
|
114 |
||
115 |
TBW_karma = new ToggleButtonWidget(gbGameModes, ":/res/btnKarma@2x.png"); |
|
116 |
TBW_karma->setWhatsThis(tr("Share your opponents pain, share their damage")); |
|
117 |
glGMLayout->addWidget(TBW_karma,2,1,1,1); |
|
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
118 |
|
11695 | 119 |
TBW_resethealth = new ToggleButtonWidget(gbGameModes, ":/res/btnResetHealth@2x.png"); |
120 |
TBW_resethealth->setWhatsThis(tr("All (living) hedgehogs are fully restored at the end of turn")); |
|
121 |
glGMLayout->addWidget(TBW_resethealth,2,2,1,1); |
|
122 |
||
123 |
TBW_aisurvival = new ToggleButtonWidget(gbGameModes, ":/res/btnAISurvival@2x.png"); |
|
124 |
TBW_aisurvival->setWhatsThis(tr("AI respawns on death.")); |
|
125 |
glGMLayout->addWidget(TBW_aisurvival,2,3,1,1); |
|
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
126 |
|
11695 | 127 |
TBW_invulnerable = new ToggleButtonWidget(gbGameModes, ":/res/btnInvulnerable@2x.png"); |
128 |
TBW_invulnerable->setWhatsThis(tr("All hogs have a personal forcefield")); |
|
129 |
glGMLayout->addWidget(TBW_invulnerable,2,4,1,1); |
|
130 |
||
131 |
TBW_perhogammo = new ToggleButtonWidget(gbGameModes, ":/res/btnPerHogAmmo@2x.png"); |
|
132 |
TBW_perhogammo->setWhatsThis(tr("Each hedgehog has its own ammo. It does not share with the team.")); |
|
133 |
glGMLayout->addWidget(TBW_perhogammo,3,0,1,1); |
|
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
134 |
|
6089 | 135 |
TBW_sharedammo = new ToggleButtonWidget(gbGameModes, ":/res/btnSharedAmmo@2x.png"); |
6699
83dd3447a212
exploit the new setWhatsThis feature in our desktop frontend
koda
parents:
6616
diff
changeset
|
136 |
TBW_sharedammo->setWhatsThis(tr("Ammo is shared between all teams that share a colour.")); |
11695 | 137 |
glGMLayout->addWidget(TBW_sharedammo,3,1,1,1); |
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
138 |
|
11695 | 139 |
TBW_resetweps = new ToggleButtonWidget(gbGameModes, ":/res/btnResetWeps@2x.png"); |
140 |
TBW_resetweps->setWhatsThis(tr("Weapons are reset to starting values each turn.")); |
|
141 |
glGMLayout->addWidget(TBW_resetweps,3,2,1,1); |
|
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
142 |
|
6089 | 143 |
TBW_infattack = new ToggleButtonWidget(gbGameModes, ":/res/btnInfAttack@2x.png"); |
6699
83dd3447a212
exploit the new setWhatsThis feature in our desktop frontend
koda
parents:
6616
diff
changeset
|
144 |
TBW_infattack->setWhatsThis(tr("Attacking does not end your turn.")); |
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
145 |
glGMLayout->addWidget(TBW_infattack,3,3,1,1); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
146 |
|
11695 | 147 |
TBW_laserSight = new ToggleButtonWidget(gbGameModes, ":/res/btnLaserSight@2x.png"); |
148 |
TBW_laserSight->setWhatsThis(tr("Assisted aiming with laser sight")); |
|
149 |
glGMLayout->addWidget(TBW_laserSight,3,4,1,1); |
|
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
150 |
|
11695 | 151 |
TBW_randomorder = new ToggleButtonWidget(gbGameModes, ":/res/btnRandomOrder@2x.png"); |
152 |
TBW_randomorder->setWhatsThis(tr("Order of play is random instead of in room order.")); |
|
153 |
glGMLayout->addWidget(TBW_randomorder,4,0,1,1); |
|
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
154 |
|
11695 | 155 |
TBW_placehog = new ToggleButtonWidget(gbGameModes, ":/res/btnPlaceHog@2x.png"); |
156 |
TBW_placehog->setWhatsThis(tr("Take turns placing your hedgehogs before the start of play.")); |
|
157 |
glGMLayout->addWidget(TBW_placehog,4,1,1,1); |
|
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
158 |
|
11695 | 159 |
TBW_teamsDivide = new ToggleButtonWidget(gbGameModes, ":/res/btnTeamsDivide@2x.png"); |
11760
ae881363fc64
fix for bug 117: Incorrect description of modifier “divide teams”
Wuzzy
parents:
11700
diff
changeset
|
160 |
TBW_teamsDivide->setWhatsThis(tr("Each clan starts in its own part of the terrain.")); |
11695 | 161 |
glGMLayout->addWidget(TBW_teamsDivide,4,2,1,1); |
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
162 |
|
6089 | 163 |
TBW_tagteam = new ToggleButtonWidget(gbGameModes, ":/res/btnTagTeam@2x.png"); |
6699
83dd3447a212
exploit the new setWhatsThis feature in our desktop frontend
koda
parents:
6616
diff
changeset
|
164 |
TBW_tagteam->setWhatsThis(tr("Teams in each clan take successive turns sharing their turn time.")); |
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
165 |
glGMLayout->addWidget(TBW_tagteam,4,3,1,1); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
166 |
|
11695 | 167 |
TBW_king = new ToggleButtonWidget(gbGameModes, ":/res/btnKing@2x.png"); |
168 |
TBW_king->setWhatsThis(tr("Play with a King. If he dies, your side dies.")); |
|
169 |
glGMLayout->addWidget(TBW_king,4,4,1,1); |
|
5717 | 170 |
|
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
171 |
// Right |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
172 |
QLabel * l; |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
173 |
|
11821 | 174 |
QString wtDamageModifier = tr("Overall damage and knockback in percent"); |
11818
5bda5af6a9c7
Add help texts for game scheme's basic settings (initial health, etc.)
Wuzzy <almikes@aol.com>
parents:
11760
diff
changeset
|
175 |
QString wtTurnTime = tr("Turn time in seconds"); |
5bda5af6a9c7
Add help texts for game scheme's basic settings (initial health, etc.)
Wuzzy <almikes@aol.com>
parents:
11760
diff
changeset
|
176 |
QString wtInitHealth = tr("Initial health of hedgehogs"); |
5bda5af6a9c7
Add help texts for game scheme's basic settings (initial health, etc.)
Wuzzy <almikes@aol.com>
parents:
11760
diff
changeset
|
177 |
QString wtSuddenDeath = tr("How many rounds have to be played before Sudden Death begins"); |
5bda5af6a9c7
Add help texts for game scheme's basic settings (initial health, etc.)
Wuzzy <almikes@aol.com>
parents:
11760
diff
changeset
|
178 |
QString wtWaterRise = tr("How much the water rises per turn while in Sudden Death. Set to 0 along with Sudden Death Health Decrease to disable Sudden Death."); |
5bda5af6a9c7
Add help texts for game scheme's basic settings (initial health, etc.)
Wuzzy <almikes@aol.com>
parents:
11760
diff
changeset
|
179 |
QString wtHealthDecrease = tr("How much health hedgehogs lose per turn while in Sudden Death, down to 1 health. Set to 0 along with Sudden Death Water Rise to disable Sudden Death."); |
5bda5af6a9c7
Add help texts for game scheme's basic settings (initial health, etc.)
Wuzzy <almikes@aol.com>
parents:
11760
diff
changeset
|
180 |
QString wtRopeModifier = tr("Maximum rope length in percent"); |
5bda5af6a9c7
Add help texts for game scheme's basic settings (initial health, etc.)
Wuzzy <almikes@aol.com>
parents:
11760
diff
changeset
|
181 |
QString wtHealthCrates = tr("Likelihood of a dropped crate being a health crate. All other crates will be weapon or utility crates."); |
5bda5af6a9c7
Add help texts for game scheme's basic settings (initial health, etc.)
Wuzzy <almikes@aol.com>
parents:
11760
diff
changeset
|
182 |
QString wtCaseProb = tr("Likelihood of a crate dropping before a turn"); |
5bda5af6a9c7
Add help texts for game scheme's basic settings (initial health, etc.)
Wuzzy <almikes@aol.com>
parents:
11760
diff
changeset
|
183 |
QString wtCrateHealth= tr("Health bonus for collecting a health crate"); |
5bda5af6a9c7
Add help texts for game scheme's basic settings (initial health, etc.)
Wuzzy <almikes@aol.com>
parents:
11760
diff
changeset
|
184 |
QString wtMinesTime = tr("Detonation timer of mines. The random timer lies between 0 and 5 seconds. The timer of air mines will be a quarter of the mines timer."); |
5bda5af6a9c7
Add help texts for game scheme's basic settings (initial health, etc.)
Wuzzy <almikes@aol.com>
parents:
11760
diff
changeset
|
185 |
QString wtMines = tr("Average number of mines to be placed a medium-sized island map. This number will be scaled for other maps."); |
5bda5af6a9c7
Add help texts for game scheme's basic settings (initial health, etc.)
Wuzzy <almikes@aol.com>
parents:
11760
diff
changeset
|
186 |
QString wtMineDuds = tr("Likelihood of a mine being a dud. Does not affect mines placed by hedgehogs."); |
5bda5af6a9c7
Add help texts for game scheme's basic settings (initial health, etc.)
Wuzzy <almikes@aol.com>
parents:
11760
diff
changeset
|
187 |
QString wtExplosives = tr("Average number of barrels to be placed a medium-sized island map. This number will be scaled for other maps."); |
5bda5af6a9c7
Add help texts for game scheme's basic settings (initial health, etc.)
Wuzzy <almikes@aol.com>
parents:
11760
diff
changeset
|
188 |
QString wtAirMines = tr("Average number of air mines to be placed a medium-sized island map. This number will be scaled for other maps."); |
5bda5af6a9c7
Add help texts for game scheme's basic settings (initial health, etc.)
Wuzzy <almikes@aol.com>
parents:
11760
diff
changeset
|
189 |
QString wtWorldEdge = tr("Affects the left and right boundaries of the map"); |
5bda5af6a9c7
Add help texts for game scheme's basic settings (initial health, etc.)
Wuzzy <almikes@aol.com>
parents:
11760
diff
changeset
|
190 |
QString wtGetAwayTime = tr("Time you get after an attack"); |
5bda5af6a9c7
Add help texts for game scheme's basic settings (initial health, etc.)
Wuzzy <almikes@aol.com>
parents:
11760
diff
changeset
|
191 |
QString wtScriptParam = tr("Additional parameter to configure game styles. The meaning depends on the used style, refer to the documentation. When in doubt, leave it empty."); |
5bda5af6a9c7
Add help texts for game scheme's basic settings (initial health, etc.)
Wuzzy <almikes@aol.com>
parents:
11760
diff
changeset
|
192 |
|
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
193 |
l = new QLabel(gbBasicSettings); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
194 |
l->setText(QLabel::tr("Damage Modifier")); |
11818
5bda5af6a9c7
Add help texts for game scheme's basic settings (initial health, etc.)
Wuzzy <almikes@aol.com>
parents:
11760
diff
changeset
|
195 |
l->setWhatsThis(wtDamageModifier); |
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
196 |
l->setWordWrap(true); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
197 |
glBSLayout->addWidget(l,0,0,1,1); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
198 |
l = new QLabel(gbBasicSettings); |
11818
5bda5af6a9c7
Add help texts for game scheme's basic settings (initial health, etc.)
Wuzzy <almikes@aol.com>
parents:
11760
diff
changeset
|
199 |
l->setWhatsThis(wtDamageModifier); |
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
200 |
l->setFixedSize(32,32); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
201 |
l->setPixmap(QPixmap(":/res/iconDamage.png")); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
202 |
glBSLayout->addWidget(l,0,1,1,1); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
203 |
SB_DamageModifier = new QSpinBox(gbBasicSettings); |
11818
5bda5af6a9c7
Add help texts for game scheme's basic settings (initial health, etc.)
Wuzzy <almikes@aol.com>
parents:
11760
diff
changeset
|
204 |
SB_DamageModifier->setWhatsThis(wtDamageModifier); |
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
205 |
SB_DamageModifier->setRange(10, 300); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
206 |
SB_DamageModifier->setValue(100); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
207 |
SB_DamageModifier->setSingleStep(25); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
208 |
glBSLayout->addWidget(SB_DamageModifier,0,2,1,1); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
209 |
|
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
210 |
l = new QLabel(gbBasicSettings); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
211 |
l->setText(QLabel::tr("Turn Time")); |
11818
5bda5af6a9c7
Add help texts for game scheme's basic settings (initial health, etc.)
Wuzzy <almikes@aol.com>
parents:
11760
diff
changeset
|
212 |
l->setWhatsThis(wtTurnTime); |
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
213 |
l->setWordWrap(true); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
214 |
glBSLayout->addWidget(l,1,0,1,1); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
215 |
l = new QLabel(gbBasicSettings); |
11818
5bda5af6a9c7
Add help texts for game scheme's basic settings (initial health, etc.)
Wuzzy <almikes@aol.com>
parents:
11760
diff
changeset
|
216 |
l->setWhatsThis(wtTurnTime); |
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
217 |
l->setFixedSize(32,32); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
218 |
l->setPixmap(QPixmap(":/res/iconTime.png")); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
219 |
glBSLayout->addWidget(l,1,1,1,1); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
220 |
SB_TurnTime = new QSpinBox(gbBasicSettings); |
11818
5bda5af6a9c7
Add help texts for game scheme's basic settings (initial health, etc.)
Wuzzy <almikes@aol.com>
parents:
11760
diff
changeset
|
221 |
SB_TurnTime->setWhatsThis(wtTurnTime); |
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
222 |
SB_TurnTime->setRange(1, 9999); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
223 |
SB_TurnTime->setValue(45); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
224 |
SB_TurnTime->setSingleStep(15); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
225 |
glBSLayout->addWidget(SB_TurnTime,1,2,1,1); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
226 |
|
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
227 |
l = new QLabel(gbBasicSettings); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
228 |
l->setText(QLabel::tr("Initial Health")); |
11818
5bda5af6a9c7
Add help texts for game scheme's basic settings (initial health, etc.)
Wuzzy <almikes@aol.com>
parents:
11760
diff
changeset
|
229 |
l->setWhatsThis(wtInitHealth); |
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
230 |
l->setWordWrap(true); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
231 |
glBSLayout->addWidget(l,2,0,1,1); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
232 |
l = new QLabel(gbBasicSettings); |
11818
5bda5af6a9c7
Add help texts for game scheme's basic settings (initial health, etc.)
Wuzzy <almikes@aol.com>
parents:
11760
diff
changeset
|
233 |
l->setWhatsThis(wtInitHealth); |
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
234 |
l->setFixedSize(32,32); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
235 |
l->setPixmap(QPixmap(":/res/iconHealth.png")); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
236 |
glBSLayout->addWidget(l,2,1,1,1); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
237 |
SB_InitHealth = new QSpinBox(gbBasicSettings); |
11818
5bda5af6a9c7
Add help texts for game scheme's basic settings (initial health, etc.)
Wuzzy <almikes@aol.com>
parents:
11760
diff
changeset
|
238 |
SB_InitHealth->setWhatsThis(wtInitHealth); |
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
239 |
SB_InitHealth->setRange(50, 200); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
240 |
SB_InitHealth->setValue(100); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
241 |
SB_InitHealth->setSingleStep(25); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
242 |
glBSLayout->addWidget(SB_InitHealth,2,2,1,1); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
243 |
|
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
244 |
l = new QLabel(gbBasicSettings); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
245 |
l->setText(QLabel::tr("Sudden Death Timeout")); |
11818
5bda5af6a9c7
Add help texts for game scheme's basic settings (initial health, etc.)
Wuzzy <almikes@aol.com>
parents:
11760
diff
changeset
|
246 |
l->setWhatsThis(wtSuddenDeath); |
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
247 |
l->setWordWrap(true); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
248 |
glBSLayout->addWidget(l,3,0,1,1); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
249 |
l = new QLabel(gbBasicSettings); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
250 |
l->setFixedSize(32,32); |
11818
5bda5af6a9c7
Add help texts for game scheme's basic settings (initial health, etc.)
Wuzzy <almikes@aol.com>
parents:
11760
diff
changeset
|
251 |
l->setWhatsThis(wtSuddenDeath); |
11699 | 252 |
l->setPixmap(QPixmap(":/res/iconSuddenDeathTime.png")); |
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
253 |
glBSLayout->addWidget(l,3,1,1,1); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
254 |
SB_SuddenDeath = new QSpinBox(gbBasicSettings); |
11818
5bda5af6a9c7
Add help texts for game scheme's basic settings (initial health, etc.)
Wuzzy <almikes@aol.com>
parents:
11760
diff
changeset
|
255 |
SB_SuddenDeath->setWhatsThis(wtSuddenDeath); |
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
256 |
SB_SuddenDeath->setRange(0, 50); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
257 |
SB_SuddenDeath->setValue(15); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
258 |
SB_SuddenDeath->setSingleStep(3); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
259 |
glBSLayout->addWidget(SB_SuddenDeath,3,2,1,1); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
260 |
|
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
261 |
l = new QLabel(gbBasicSettings); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
262 |
l->setText(QLabel::tr("Sudden Death Water Rise")); |
11818
5bda5af6a9c7
Add help texts for game scheme's basic settings (initial health, etc.)
Wuzzy <almikes@aol.com>
parents:
11760
diff
changeset
|
263 |
l->setWhatsThis(wtWaterRise); |
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
264 |
l->setWordWrap(true); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
265 |
glBSLayout->addWidget(l,4,0,1,1); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
266 |
l = new QLabel(gbBasicSettings); |
11818
5bda5af6a9c7
Add help texts for game scheme's basic settings (initial health, etc.)
Wuzzy <almikes@aol.com>
parents:
11760
diff
changeset
|
267 |
l->setWhatsThis(wtWaterRise); |
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
268 |
l->setFixedSize(32,32); |
11699 | 269 |
l->setPixmap(QPixmap(":/res/iconSuddenDeathWater.png")); |
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
270 |
glBSLayout->addWidget(l,4,1,1,1); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
271 |
SB_WaterRise = new QSpinBox(gbBasicSettings); |
11818
5bda5af6a9c7
Add help texts for game scheme's basic settings (initial health, etc.)
Wuzzy <almikes@aol.com>
parents:
11760
diff
changeset
|
272 |
SB_WaterRise->setWhatsThis(wtWaterRise); |
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
273 |
SB_WaterRise->setRange(0, 100); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
274 |
SB_WaterRise->setValue(47); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
275 |
SB_WaterRise->setSingleStep(5); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
276 |
glBSLayout->addWidget(SB_WaterRise,4,2,1,1); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
277 |
|
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
278 |
l = new QLabel(gbBasicSettings); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
279 |
l->setText(QLabel::tr("Sudden Death Health Decrease")); |
11818
5bda5af6a9c7
Add help texts for game scheme's basic settings (initial health, etc.)
Wuzzy <almikes@aol.com>
parents:
11760
diff
changeset
|
280 |
l->setWhatsThis(wtHealthDecrease); |
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
281 |
l->setWordWrap(true); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
282 |
glBSLayout->addWidget(l,5,0,1,1); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
283 |
l = new QLabel(gbBasicSettings); |
11818
5bda5af6a9c7
Add help texts for game scheme's basic settings (initial health, etc.)
Wuzzy <almikes@aol.com>
parents:
11760
diff
changeset
|
284 |
l->setWhatsThis(wtHealthDecrease); |
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
285 |
l->setFixedSize(32,32); |
11699 | 286 |
l->setPixmap(QPixmap(":/res/iconSuddenDeath.png")); |
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
287 |
glBSLayout->addWidget(l,5,1,1,1); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
288 |
SB_HealthDecrease = new QSpinBox(gbBasicSettings); |
11818
5bda5af6a9c7
Add help texts for game scheme's basic settings (initial health, etc.)
Wuzzy <almikes@aol.com>
parents:
11760
diff
changeset
|
289 |
SB_HealthDecrease->setWhatsThis(wtHealthDecrease); |
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
290 |
SB_HealthDecrease->setRange(0, 100); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
291 |
SB_HealthDecrease->setValue(5); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
292 |
SB_HealthDecrease->setSingleStep(1); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
293 |
glBSLayout->addWidget(SB_HealthDecrease,5,2,1,1); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
294 |
|
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
295 |
l = new QLabel(gbBasicSettings); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
296 |
l->setText(QLabel::tr("% Rope Length")); |
11818
5bda5af6a9c7
Add help texts for game scheme's basic settings (initial health, etc.)
Wuzzy <almikes@aol.com>
parents:
11760
diff
changeset
|
297 |
l->setWhatsThis(wtRopeModifier); |
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
298 |
l->setWordWrap(true); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
299 |
glBSLayout->addWidget(l,6,0,1,1); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
300 |
l = new QLabel(gbBasicSettings); |
11818
5bda5af6a9c7
Add help texts for game scheme's basic settings (initial health, etc.)
Wuzzy <almikes@aol.com>
parents:
11760
diff
changeset
|
301 |
l->setWhatsThis(wtRopeModifier); |
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
302 |
l->setFixedSize(32,32); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
303 |
l->setPixmap(QPixmap(":/res/iconRope.png")); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
304 |
glBSLayout->addWidget(l,6,1,1,1); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
305 |
SB_RopeModifier = new QSpinBox(gbBasicSettings); |
11818
5bda5af6a9c7
Add help texts for game scheme's basic settings (initial health, etc.)
Wuzzy <almikes@aol.com>
parents:
11760
diff
changeset
|
306 |
SB_RopeModifier->setWhatsThis(wtRopeModifier); |
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
307 |
SB_RopeModifier->setRange(25, 999); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
308 |
SB_RopeModifier->setValue(100); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
309 |
SB_RopeModifier->setSingleStep(25); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
310 |
glBSLayout->addWidget(SB_RopeModifier,6,2,1,1); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
311 |
|
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
312 |
l = new QLabel(gbBasicSettings); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
313 |
l->setText(QLabel::tr("Crate Drops")); |
11818
5bda5af6a9c7
Add help texts for game scheme's basic settings (initial health, etc.)
Wuzzy <almikes@aol.com>
parents:
11760
diff
changeset
|
314 |
l->setWhatsThis(wtCaseProb); |
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
315 |
l->setWordWrap(true); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
316 |
glBSLayout->addWidget(l,7,0,1,1); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
317 |
l = new QLabel(gbBasicSettings); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
318 |
l->setFixedSize(32,32); |
11818
5bda5af6a9c7
Add help texts for game scheme's basic settings (initial health, etc.)
Wuzzy <almikes@aol.com>
parents:
11760
diff
changeset
|
319 |
l->setWhatsThis(wtCaseProb); |
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
320 |
l->setPixmap(QPixmap(":/res/iconBox.png")); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
321 |
glBSLayout->addWidget(l,7,1,1,1); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
322 |
SB_CaseProb = new FreqSpinBox(gbBasicSettings); |
11818
5bda5af6a9c7
Add help texts for game scheme's basic settings (initial health, etc.)
Wuzzy <almikes@aol.com>
parents:
11760
diff
changeset
|
323 |
SB_CaseProb->setWhatsThis(wtCaseProb); |
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
324 |
SB_CaseProb->setRange(0, 9); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
325 |
SB_CaseProb->setValue(5); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
326 |
glBSLayout->addWidget(SB_CaseProb,7,2,1,1); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
327 |
|
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
328 |
l = new QLabel(gbBasicSettings); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
329 |
l->setText(QLabel::tr("% Health Crates")); |
11818
5bda5af6a9c7
Add help texts for game scheme's basic settings (initial health, etc.)
Wuzzy <almikes@aol.com>
parents:
11760
diff
changeset
|
330 |
l->setWhatsThis(wtHealthCrates); |
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
331 |
l->setWordWrap(true); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
332 |
glBSLayout->addWidget(l,8,0,1,1); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
333 |
l = new QLabel(gbBasicSettings); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
334 |
l->setFixedSize(32,32); |
11818
5bda5af6a9c7
Add help texts for game scheme's basic settings (initial health, etc.)
Wuzzy <almikes@aol.com>
parents:
11760
diff
changeset
|
335 |
l->setWhatsThis(wtHealthCrates); |
11699 | 336 |
l->setPixmap(QPixmap(":/res/iconHealthPercent.png")); |
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
337 |
glBSLayout->addWidget(l,8,1,1,1); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
338 |
SB_HealthCrates = new QSpinBox(gbBasicSettings); |
11818
5bda5af6a9c7
Add help texts for game scheme's basic settings (initial health, etc.)
Wuzzy <almikes@aol.com>
parents:
11760
diff
changeset
|
339 |
SB_HealthCrates->setWhatsThis(wtHealthCrates); |
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
340 |
SB_HealthCrates->setRange(0, 100); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
341 |
SB_HealthCrates->setValue(35); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
342 |
SB_HealthCrates->setSingleStep(5); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
343 |
glBSLayout->addWidget(SB_HealthCrates,8,2,1,1); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
344 |
|
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
345 |
l = new QLabel(gbBasicSettings); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
346 |
l->setText(QLabel::tr("Health in Crates")); |
11818
5bda5af6a9c7
Add help texts for game scheme's basic settings (initial health, etc.)
Wuzzy <almikes@aol.com>
parents:
11760
diff
changeset
|
347 |
l->setWhatsThis(wtCrateHealth); |
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
348 |
l->setWordWrap(true); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
349 |
glBSLayout->addWidget(l,9,0,1,1); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
350 |
l = new QLabel(gbBasicSettings); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
351 |
l->setFixedSize(32,32); |
11818
5bda5af6a9c7
Add help texts for game scheme's basic settings (initial health, etc.)
Wuzzy <almikes@aol.com>
parents:
11760
diff
changeset
|
352 |
l->setWhatsThis(wtCrateHealth); |
11699 | 353 |
l->setPixmap(QPixmap(":/res/iconHealth.png")); |
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
354 |
glBSLayout->addWidget(l,9,1,1,1); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
355 |
SB_CrateHealth = new QSpinBox(gbBasicSettings); |
11818
5bda5af6a9c7
Add help texts for game scheme's basic settings (initial health, etc.)
Wuzzy <almikes@aol.com>
parents:
11760
diff
changeset
|
356 |
SB_CrateHealth->setWhatsThis(wtCrateHealth); |
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
357 |
SB_CrateHealth->setRange(0, 200); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
358 |
SB_CrateHealth->setValue(25); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
359 |
SB_CrateHealth->setSingleStep(5); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
360 |
glBSLayout->addWidget(SB_CrateHealth,9,2,1,1); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
361 |
|
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
362 |
l = new QLabel(gbBasicSettings); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
363 |
l->setText(QLabel::tr("Mines Time")); |
11818
5bda5af6a9c7
Add help texts for game scheme's basic settings (initial health, etc.)
Wuzzy <almikes@aol.com>
parents:
11760
diff
changeset
|
364 |
l->setWhatsThis(wtMinesTime); |
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
365 |
l->setWordWrap(true); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
366 |
glBSLayout->addWidget(l,10,0,1,1); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
367 |
l = new QLabel(gbBasicSettings); |
11818
5bda5af6a9c7
Add help texts for game scheme's basic settings (initial health, etc.)
Wuzzy <almikes@aol.com>
parents:
11760
diff
changeset
|
368 |
l->setWhatsThis(wtMinesTime); |
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
369 |
l->setFixedSize(32,32); |
11699 | 370 |
l->setPixmap(QPixmap(":/res/iconMineTime.png")); |
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
371 |
glBSLayout->addWidget(l,10,1,1,1); |
11820
68bc5ebce319
Fix mines time displaying "1 seconds" in frontend
Wuzzy <almikes@aol.com>
parents:
11818
diff
changeset
|
372 |
SB_MinesTime = new MinesTimeSpinBox(gbBasicSettings); |
11818
5bda5af6a9c7
Add help texts for game scheme's basic settings (initial health, etc.)
Wuzzy <almikes@aol.com>
parents:
11760
diff
changeset
|
373 |
SB_MinesTime->setWhatsThis(wtMinesTime); |
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
374 |
SB_MinesTime->setRange(-1, 5); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
375 |
SB_MinesTime->setValue(3); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
376 |
SB_MinesTime->setSingleStep(1); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
377 |
glBSLayout->addWidget(SB_MinesTime,10,2,1,1); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
378 |
|
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
379 |
l = new QLabel(gbBasicSettings); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
380 |
l->setText(QLabel::tr("Mines")); |
11818
5bda5af6a9c7
Add help texts for game scheme's basic settings (initial health, etc.)
Wuzzy <almikes@aol.com>
parents:
11760
diff
changeset
|
381 |
l->setWhatsThis(wtMines); |
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
382 |
l->setWordWrap(true); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
383 |
glBSLayout->addWidget(l,11,0,1,1); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
384 |
l = new QLabel(gbBasicSettings); |
11818
5bda5af6a9c7
Add help texts for game scheme's basic settings (initial health, etc.)
Wuzzy <almikes@aol.com>
parents:
11760
diff
changeset
|
385 |
l->setWhatsThis(wtMines); |
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
386 |
l->setFixedSize(32,32); |
11699 | 387 |
l->setPixmap(QPixmap(":/res/iconMine.png")); |
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
388 |
glBSLayout->addWidget(l,11,1,1,1); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
389 |
SB_Mines = new QSpinBox(gbBasicSettings); |
11818
5bda5af6a9c7
Add help texts for game scheme's basic settings (initial health, etc.)
Wuzzy <almikes@aol.com>
parents:
11760
diff
changeset
|
390 |
SB_Mines->setWhatsThis(wtMines); |
10236
8fa1ccfba752
- Increase limits on number of mines and explosives in game scheme
unc0rr
parents:
10108
diff
changeset
|
391 |
SB_Mines->setRange(0, 200); |
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
392 |
SB_Mines->setValue(0); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
393 |
SB_Mines->setSingleStep(5); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
394 |
glBSLayout->addWidget(SB_Mines,11,2,1,1); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
395 |
|
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
396 |
l = new QLabel(gbBasicSettings); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
397 |
l->setText(QLabel::tr("% Dud Mines")); |
11818
5bda5af6a9c7
Add help texts for game scheme's basic settings (initial health, etc.)
Wuzzy <almikes@aol.com>
parents:
11760
diff
changeset
|
398 |
l->setWhatsThis(wtMineDuds); |
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
399 |
l->setWordWrap(true); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
400 |
glBSLayout->addWidget(l,12,0,1,1); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
401 |
l = new QLabel(gbBasicSettings); |
11818
5bda5af6a9c7
Add help texts for game scheme's basic settings (initial health, etc.)
Wuzzy <almikes@aol.com>
parents:
11760
diff
changeset
|
402 |
l->setWhatsThis(wtMineDuds); |
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
403 |
l->setFixedSize(32,32); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
404 |
l->setPixmap(QPixmap(":/res/iconDud.png")); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
405 |
glBSLayout->addWidget(l,12,1,1,1); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
406 |
SB_MineDuds = new QSpinBox(gbBasicSettings); |
11818
5bda5af6a9c7
Add help texts for game scheme's basic settings (initial health, etc.)
Wuzzy <almikes@aol.com>
parents:
11760
diff
changeset
|
407 |
SB_MineDuds->setWhatsThis(wtMineDuds); |
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
408 |
SB_MineDuds->setRange(0, 100); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
409 |
SB_MineDuds->setValue(0); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
410 |
SB_MineDuds->setSingleStep(5); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
411 |
glBSLayout->addWidget(SB_MineDuds,12,2,1,1); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
412 |
|
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
413 |
l = new QLabel(gbBasicSettings); |
11818
5bda5af6a9c7
Add help texts for game scheme's basic settings (initial health, etc.)
Wuzzy <almikes@aol.com>
parents:
11760
diff
changeset
|
414 |
l->setText(QLabel::tr("Barrels")); |
5bda5af6a9c7
Add help texts for game scheme's basic settings (initial health, etc.)
Wuzzy <almikes@aol.com>
parents:
11760
diff
changeset
|
415 |
l->setWhatsThis(wtExplosives); |
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
416 |
l->setWordWrap(true); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
417 |
glBSLayout->addWidget(l,13,0,1,1); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
418 |
l = new QLabel(gbBasicSettings); |
11818
5bda5af6a9c7
Add help texts for game scheme's basic settings (initial health, etc.)
Wuzzy <almikes@aol.com>
parents:
11760
diff
changeset
|
419 |
l->setWhatsThis(wtExplosives); |
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
420 |
l->setFixedSize(32,32); |
11699 | 421 |
l->setPixmap(QPixmap(":/res/iconExplosive.png")); |
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
422 |
glBSLayout->addWidget(l,13,1,1,1); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
423 |
SB_Explosives = new QSpinBox(gbBasicSettings); |
11818
5bda5af6a9c7
Add help texts for game scheme's basic settings (initial health, etc.)
Wuzzy <almikes@aol.com>
parents:
11760
diff
changeset
|
424 |
SB_Explosives->setWhatsThis(wtExplosives); |
10236
8fa1ccfba752
- Increase limits on number of mines and explosives in game scheme
unc0rr
parents:
10108
diff
changeset
|
425 |
SB_Explosives->setRange(0, 200); |
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
426 |
SB_Explosives->setValue(0); |
10236
8fa1ccfba752
- Increase limits on number of mines and explosives in game scheme
unc0rr
parents:
10108
diff
changeset
|
427 |
SB_Explosives->setSingleStep(3); |
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
428 |
glBSLayout->addWidget(SB_Explosives,13,2,1,1); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
429 |
|
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
430 |
l = new QLabel(gbBasicSettings); |
10822 | 431 |
l->setText(QLabel::tr("Air Mines")); |
11818
5bda5af6a9c7
Add help texts for game scheme's basic settings (initial health, etc.)
Wuzzy <almikes@aol.com>
parents:
11760
diff
changeset
|
432 |
l->setWhatsThis(wtAirMines); |
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
433 |
l->setWordWrap(true); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
434 |
glBSLayout->addWidget(l,14,0,1,1); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
435 |
l = new QLabel(gbBasicSettings); |
11818
5bda5af6a9c7
Add help texts for game scheme's basic settings (initial health, etc.)
Wuzzy <almikes@aol.com>
parents:
11760
diff
changeset
|
436 |
l->setWhatsThis(wtAirMines); |
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
437 |
l->setFixedSize(32,32); |
11699 | 438 |
l->setPixmap(QPixmap(":/res/iconAirMine.png")); |
10822 | 439 |
glBSLayout->addWidget(l,14,1,1,1); |
440 |
SB_AirMines = new QSpinBox(gbBasicSettings); |
|
11818
5bda5af6a9c7
Add help texts for game scheme's basic settings (initial health, etc.)
Wuzzy <almikes@aol.com>
parents:
11760
diff
changeset
|
441 |
SB_AirMines->setWhatsThis(wtAirMines); |
10822 | 442 |
SB_AirMines->setRange(0, 200); |
443 |
SB_AirMines->setValue(0); |
|
444 |
SB_AirMines->setSingleStep(5); |
|
445 |
glBSLayout->addWidget(SB_AirMines,14,2,1,1); |
|
446 |
||
447 |
l = new QLabel(gbBasicSettings); |
|
11818
5bda5af6a9c7
Add help texts for game scheme's basic settings (initial health, etc.)
Wuzzy <almikes@aol.com>
parents:
11760
diff
changeset
|
448 |
l->setText(QLabel::tr("% Retreat Time")); |
5bda5af6a9c7
Add help texts for game scheme's basic settings (initial health, etc.)
Wuzzy <almikes@aol.com>
parents:
11760
diff
changeset
|
449 |
l->setWhatsThis(wtGetAwayTime); |
10822 | 450 |
l->setWordWrap(true); |
451 |
glBSLayout->addWidget(l,15,0,1,1); |
|
452 |
l = new QLabel(gbBasicSettings); |
|
11818
5bda5af6a9c7
Add help texts for game scheme's basic settings (initial health, etc.)
Wuzzy <almikes@aol.com>
parents:
11760
diff
changeset
|
453 |
l->setWhatsThis(wtGetAwayTime); |
10822 | 454 |
l->setFixedSize(32,32); |
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
455 |
l->setPixmap(QPixmap(":/res/iconTime.png")); |
10822 | 456 |
glBSLayout->addWidget(l,15,1,1,1); |
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
457 |
SB_GetAwayTime = new QSpinBox(gbBasicSettings); |
11818
5bda5af6a9c7
Add help texts for game scheme's basic settings (initial health, etc.)
Wuzzy <almikes@aol.com>
parents:
11760
diff
changeset
|
458 |
SB_GetAwayTime->setWhatsThis(wtGetAwayTime); |
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
459 |
SB_GetAwayTime->setRange(0, 999); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
460 |
SB_GetAwayTime->setValue(100); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
461 |
SB_GetAwayTime->setSingleStep(25); |
10822 | 462 |
glBSLayout->addWidget(SB_GetAwayTime,15,2,1,1); |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6089
diff
changeset
|
463 |
|
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
464 |
l = new QLabel(gbBasicSettings); |
9489 | 465 |
l->setText(QLabel::tr("World Edge")); |
11818
5bda5af6a9c7
Add help texts for game scheme's basic settings (initial health, etc.)
Wuzzy <almikes@aol.com>
parents:
11760
diff
changeset
|
466 |
l->setWhatsThis(wtWorldEdge); |
9489 | 467 |
l->setWordWrap(true); |
10822 | 468 |
glBSLayout->addWidget(l,16,0,1,1); |
9489 | 469 |
l = new QLabel(gbBasicSettings); |
11818
5bda5af6a9c7
Add help texts for game scheme's basic settings (initial health, etc.)
Wuzzy <almikes@aol.com>
parents:
11760
diff
changeset
|
470 |
l->setWhatsThis(wtWorldEdge); |
9489 | 471 |
l->setFixedSize(32,32); |
472 |
l->setPixmap(QPixmap(":/res/iconEarth.png")); |
|
10822 | 473 |
glBSLayout->addWidget(l,16,1,1,1); |
9902 | 474 |
|
9489 | 475 |
CB_WorldEdge = new QComboBox(gbBasicSettings); |
11818
5bda5af6a9c7
Add help texts for game scheme's basic settings (initial health, etc.)
Wuzzy <almikes@aol.com>
parents:
11760
diff
changeset
|
476 |
CB_WorldEdge->setWhatsThis(wtWorldEdge); |
9489 | 477 |
CB_WorldEdge->insertItem(0, tr("None (Default)")); |
478 |
CB_WorldEdge->insertItem(1, tr("Wrap (World wraps)")); |
|
479 |
CB_WorldEdge->insertItem(2, tr("Bounce (Edges reflect)")); |
|
480 |
CB_WorldEdge->insertItem(3, tr("Sea (Edges connect to sea)")); |
|
481 |
/* CB_WorldEdge->insertItem(4, tr("Skybox")); */ |
|
10822 | 482 |
glBSLayout->addWidget(CB_WorldEdge,16,2,1,1); |
9489 | 483 |
|
484 |
||
485 |
l = new QLabel(gbBasicSettings); |
|
9902 | 486 |
l->setText(QLabel::tr("Script parameter")); |
11818
5bda5af6a9c7
Add help texts for game scheme's basic settings (initial health, etc.)
Wuzzy <almikes@aol.com>
parents:
11760
diff
changeset
|
487 |
l->setWhatsThis(wtScriptParam); |
9902 | 488 |
l->setWordWrap(true); |
10822 | 489 |
glBSLayout->addWidget(l,17,0,1,1); |
9902 | 490 |
l = new QLabel(gbBasicSettings); |
11818
5bda5af6a9c7
Add help texts for game scheme's basic settings (initial health, etc.)
Wuzzy <almikes@aol.com>
parents:
11760
diff
changeset
|
491 |
l->setWhatsThis(wtScriptParam); |
9902 | 492 |
l->setFixedSize(32,32); |
11699 | 493 |
l->setPixmap(QPixmap(":/res/iconScript.png")); |
10822 | 494 |
glBSLayout->addWidget(l,17,1,1,1); |
9902 | 495 |
|
496 |
LE_ScriptParam = new QLineEdit(gbBasicSettings); |
|
11818
5bda5af6a9c7
Add help texts for game scheme's basic settings (initial health, etc.)
Wuzzy <almikes@aol.com>
parents:
11760
diff
changeset
|
497 |
LE_ScriptParam->setWhatsThis(wtScriptParam); |
9902 | 498 |
LE_ScriptParam->setMaxLength(240); |
10822 | 499 |
glBSLayout->addWidget(LE_ScriptParam,17,2,1,1); |
9902 | 500 |
|
501 |
||
502 |
l = new QLabel(gbBasicSettings); |
|
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
503 |
l->setText(QLabel::tr("Scheme Name:")); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
504 |
|
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
505 |
LE_name = new QLineEdit(this); |
11818
5bda5af6a9c7
Add help texts for game scheme's basic settings (initial health, etc.)
Wuzzy <almikes@aol.com>
parents:
11760
diff
changeset
|
506 |
LE_name->setWhatsThis("Name of this scheme"); |
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
507 |
|
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
508 |
gl->addWidget(LE_name,15,1,1,5); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
509 |
gl->addWidget(l,15,0,1,1); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
510 |
|
6042
8b5345758f62
some more cleanups/refactoring/blahblah, some button positions may are a bit off atm. also I added a new picture for one of the buttons
sheepluva
parents:
6009
diff
changeset
|
511 |
return pageLayout; |
8b5345758f62
some more cleanups/refactoring/blahblah, some button positions may are a bit off atm. also I added a new picture for one of the buttons
sheepluva
parents:
6009
diff
changeset
|
512 |
} |
6009 | 513 |
|
6042
8b5345758f62
some more cleanups/refactoring/blahblah, some button positions may are a bit off atm. also I added a new picture for one of the buttons
sheepluva
parents:
6009
diff
changeset
|
514 |
QLayout * PageScheme::footerLayoutDefinition() |
8b5345758f62
some more cleanups/refactoring/blahblah, some button positions may are a bit off atm. also I added a new picture for one of the buttons
sheepluva
parents:
6009
diff
changeset
|
515 |
{ |
8b5345758f62
some more cleanups/refactoring/blahblah, some button positions may are a bit off atm. also I added a new picture for one of the buttons
sheepluva
parents:
6009
diff
changeset
|
516 |
QHBoxLayout * bottomLayout = new QHBoxLayout(); |
8b5345758f62
some more cleanups/refactoring/blahblah, some button positions may are a bit off atm. also I added a new picture for one of the buttons
sheepluva
parents:
6009
diff
changeset
|
517 |
selectScheme = new QComboBox(this); |
11679
d59b6f289e30
Increase size of many drop-down lists
Wuzzy <almikes@aol.com>
parents:
11046
diff
changeset
|
518 |
selectScheme->setMaxVisibleItems(50); |
6009 | 519 |
|
6042
8b5345758f62
some more cleanups/refactoring/blahblah, some button positions may are a bit off atm. also I added a new picture for one of the buttons
sheepluva
parents:
6009
diff
changeset
|
520 |
bottomLayout->addWidget(selectScheme, 0); |
8b5345758f62
some more cleanups/refactoring/blahblah, some button positions may are a bit off atm. also I added a new picture for one of the buttons
sheepluva
parents:
6009
diff
changeset
|
521 |
BtnCopy = addButton(tr("Copy"), bottomLayout, 1); |
8b5345758f62
some more cleanups/refactoring/blahblah, some button positions may are a bit off atm. also I added a new picture for one of the buttons
sheepluva
parents:
6009
diff
changeset
|
522 |
BtnNew = addButton(tr("New"), bottomLayout, 2); |
8b5345758f62
some more cleanups/refactoring/blahblah, some button positions may are a bit off atm. also I added a new picture for one of the buttons
sheepluva
parents:
6009
diff
changeset
|
523 |
BtnDelete = addButton(tr("Delete"), bottomLayout, 3); |
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
524 |
|
6042
8b5345758f62
some more cleanups/refactoring/blahblah, some button positions may are a bit off atm. also I added a new picture for one of the buttons
sheepluva
parents:
6009
diff
changeset
|
525 |
bottomLayout->setStretch(1,1); |
8b5345758f62
some more cleanups/refactoring/blahblah, some button positions may are a bit off atm. also I added a new picture for one of the buttons
sheepluva
parents:
6009
diff
changeset
|
526 |
bottomLayout->setStretch(2,1); |
8b5345758f62
some more cleanups/refactoring/blahblah, some button positions may are a bit off atm. also I added a new picture for one of the buttons
sheepluva
parents:
6009
diff
changeset
|
527 |
bottomLayout->setStretch(3,1); |
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
528 |
|
6042
8b5345758f62
some more cleanups/refactoring/blahblah, some button positions may are a bit off atm. also I added a new picture for one of the buttons
sheepluva
parents:
6009
diff
changeset
|
529 |
return bottomLayout; |
8b5345758f62
some more cleanups/refactoring/blahblah, some button positions may are a bit off atm. also I added a new picture for one of the buttons
sheepluva
parents:
6009
diff
changeset
|
530 |
} |
8b5345758f62
some more cleanups/refactoring/blahblah, some button positions may are a bit off atm. also I added a new picture for one of the buttons
sheepluva
parents:
6009
diff
changeset
|
531 |
|
8b5345758f62
some more cleanups/refactoring/blahblah, some button positions may are a bit off atm. also I added a new picture for one of the buttons
sheepluva
parents:
6009
diff
changeset
|
532 |
void PageScheme::connectSignals() |
8b5345758f62
some more cleanups/refactoring/blahblah, some button positions may are a bit off atm. also I added a new picture for one of the buttons
sheepluva
parents:
6009
diff
changeset
|
533 |
{ |
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
534 |
connect(BtnCopy, SIGNAL(clicked()), this, SLOT(copyRow())); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
535 |
connect(BtnNew, SIGNAL(clicked()), this, SLOT(newRow())); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
536 |
connect(BtnDelete, SIGNAL(clicked()), this, SLOT(deleteRow())); |
6042
8b5345758f62
some more cleanups/refactoring/blahblah, some button positions may are a bit off atm. also I added a new picture for one of the buttons
sheepluva
parents:
6009
diff
changeset
|
537 |
mapper = new QDataWidgetMapper(this); |
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
538 |
connect(selectScheme, SIGNAL(currentIndexChanged(int)), mapper, SLOT(setCurrentIndex(int))); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
539 |
connect(selectScheme, SIGNAL(currentIndexChanged(int)), this, SLOT(schemeSelected(int))); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
540 |
} |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
541 |
|
6042
8b5345758f62
some more cleanups/refactoring/blahblah, some button positions may are a bit off atm. also I added a new picture for one of the buttons
sheepluva
parents:
6009
diff
changeset
|
542 |
PageScheme::PageScheme(QWidget* parent) : AbstractPage(parent) |
8b5345758f62
some more cleanups/refactoring/blahblah, some button positions may are a bit off atm. also I added a new picture for one of the buttons
sheepluva
parents:
6009
diff
changeset
|
543 |
{ |
8b5345758f62
some more cleanups/refactoring/blahblah, some button positions may are a bit off atm. also I added a new picture for one of the buttons
sheepluva
parents:
6009
diff
changeset
|
544 |
initPage(); |
8b5345758f62
some more cleanups/refactoring/blahblah, some button positions may are a bit off atm. also I added a new picture for one of the buttons
sheepluva
parents:
6009
diff
changeset
|
545 |
} |
8b5345758f62
some more cleanups/refactoring/blahblah, some button positions may are a bit off atm. also I added a new picture for one of the buttons
sheepluva
parents:
6009
diff
changeset
|
546 |
|
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
547 |
void PageScheme::setModel(QAbstractItemModel * model) |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
548 |
{ |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
549 |
mapper->setModel(model); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
550 |
selectScheme->setModel(model); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
551 |
|
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
552 |
mapper->addMapping(LE_name, 0); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
553 |
mapper->addMapping(TBW_mode_Forts, 1); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
554 |
mapper->addMapping(TBW_teamsDivide, 2); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
555 |
mapper->addMapping(TBW_solid, 3); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
556 |
mapper->addMapping(TBW_border, 4); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
557 |
mapper->addMapping(TBW_lowGravity, 5); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
558 |
mapper->addMapping(TBW_laserSight, 6); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
559 |
mapper->addMapping(TBW_invulnerable, 7); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
560 |
mapper->addMapping(TBW_resethealth, 8); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
561 |
mapper->addMapping(TBW_vampiric, 9); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
562 |
mapper->addMapping(TBW_karma, 10); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
563 |
mapper->addMapping(TBW_artillery, 11); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
564 |
mapper->addMapping(TBW_randomorder, 12); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
565 |
mapper->addMapping(TBW_king, 13); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
566 |
mapper->addMapping(TBW_placehog, 14); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
567 |
mapper->addMapping(TBW_sharedammo, 15); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
568 |
mapper->addMapping(TBW_disablegirders, 16); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
569 |
mapper->addMapping(TBW_disablelandobjects, 17); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
570 |
mapper->addMapping(TBW_aisurvival, 18); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
571 |
mapper->addMapping(TBW_infattack, 19); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
572 |
mapper->addMapping(TBW_resetweps, 20); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
573 |
mapper->addMapping(TBW_perhogammo, 21); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
574 |
mapper->addMapping(TBW_nowind, 22); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
575 |
mapper->addMapping(TBW_morewind, 23); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
576 |
mapper->addMapping(TBW_tagteam, 24); |
5717 | 577 |
mapper->addMapping(TBW_bottomborder, 25); |
578 |
mapper->addMapping(SB_DamageModifier, 26); |
|
579 |
mapper->addMapping(SB_TurnTime, 27); |
|
580 |
mapper->addMapping(SB_InitHealth, 28); |
|
581 |
mapper->addMapping(SB_SuddenDeath, 29); |
|
582 |
mapper->addMapping(SB_CaseProb, 30); |
|
583 |
mapper->addMapping(SB_MinesTime, 31); |
|
584 |
mapper->addMapping(SB_Mines, 32); |
|
585 |
mapper->addMapping(SB_MineDuds, 33); |
|
586 |
mapper->addMapping(SB_Explosives, 34); |
|
10822 | 587 |
mapper->addMapping(SB_AirMines, 35); |
588 |
mapper->addMapping(SB_HealthCrates, 36); |
|
589 |
mapper->addMapping(SB_CrateHealth, 37); |
|
590 |
mapper->addMapping(SB_WaterRise, 38); |
|
591 |
mapper->addMapping(SB_HealthDecrease, 39); |
|
592 |
mapper->addMapping(SB_RopeModifier, 40); |
|
593 |
mapper->addMapping(SB_GetAwayTime, 41); |
|
594 |
mapper->addMapping(CB_WorldEdge, 42, "currentIndex"); |
|
595 |
mapper->addMapping(LE_ScriptParam, 43); |
|
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
596 |
|
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
597 |
mapper->toFirst(); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
598 |
} |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
599 |
|
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
600 |
void PageScheme::newRow() |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
601 |
{ |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
602 |
QAbstractItemModel * model = mapper->model(); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
603 |
model->insertRow(-1); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
604 |
selectScheme->setCurrentIndex(model->rowCount() - 1); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
605 |
} |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
606 |
|
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
607 |
void PageScheme::copyRow() |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
608 |
{ |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
609 |
QAbstractItemModel * model = mapper->model(); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
610 |
model->insertRow(selectScheme->currentIndex()); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
611 |
selectScheme->setCurrentIndex(model->rowCount() - 1); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
612 |
} |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
613 |
|
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
614 |
void PageScheme::deleteRow() |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
615 |
{ |
7792 | 616 |
int numberOfDefaultSchemes = ((AmmoSchemeModel*)mapper->model())->numberOfDefaultSchemes; |
617 |
if (selectScheme->currentIndex() < numberOfDefaultSchemes) |
|
618 |
{ |
|
7794
ab7b94c03bc9
QMessageBox overhaul: unify buttons, style and appearance of info dialogs, fixing a few typos and return values along the way
koda
parents:
7792
diff
changeset
|
619 |
QMessageBox deniedMsg(this); |
ab7b94c03bc9
QMessageBox overhaul: unify buttons, style and appearance of info dialogs, fixing a few typos and return values along the way
koda
parents:
7792
diff
changeset
|
620 |
deniedMsg.setIcon(QMessageBox::Warning); |
ab7b94c03bc9
QMessageBox overhaul: unify buttons, style and appearance of info dialogs, fixing a few typos and return values along the way
koda
parents:
7792
diff
changeset
|
621 |
deniedMsg.setWindowTitle(QMessageBox::tr("Schemes - Warning")); |
ab7b94c03bc9
QMessageBox overhaul: unify buttons, style and appearance of info dialogs, fixing a few typos and return values along the way
koda
parents:
7792
diff
changeset
|
622 |
deniedMsg.setText(QMessageBox::tr("Cannot delete default scheme '%1'!").arg(selectScheme->currentText())); |
ab7b94c03bc9
QMessageBox overhaul: unify buttons, style and appearance of info dialogs, fixing a few typos and return values along the way
koda
parents:
7792
diff
changeset
|
623 |
deniedMsg.setWindowModality(Qt::WindowModal); |
ab7b94c03bc9
QMessageBox overhaul: unify buttons, style and appearance of info dialogs, fixing a few typos and return values along the way
koda
parents:
7792
diff
changeset
|
624 |
deniedMsg.exec(); |
7792 | 625 |
} |
626 |
else |
|
627 |
{ |
|
7794
ab7b94c03bc9
QMessageBox overhaul: unify buttons, style and appearance of info dialogs, fixing a few typos and return values along the way
koda
parents:
7792
diff
changeset
|
628 |
QMessageBox reallyDeleteMsg(this); |
ab7b94c03bc9
QMessageBox overhaul: unify buttons, style and appearance of info dialogs, fixing a few typos and return values along the way
koda
parents:
7792
diff
changeset
|
629 |
reallyDeleteMsg.setIcon(QMessageBox::Question); |
ab7b94c03bc9
QMessageBox overhaul: unify buttons, style and appearance of info dialogs, fixing a few typos and return values along the way
koda
parents:
7792
diff
changeset
|
630 |
reallyDeleteMsg.setWindowTitle(QMessageBox::tr("Schemes - Are you sure?")); |
ab7b94c03bc9
QMessageBox overhaul: unify buttons, style and appearance of info dialogs, fixing a few typos and return values along the way
koda
parents:
7792
diff
changeset
|
631 |
reallyDeleteMsg.setText(QMessageBox::tr("Do you really want to delete the game scheme '%1'?").arg(selectScheme->currentText())); |
ab7b94c03bc9
QMessageBox overhaul: unify buttons, style and appearance of info dialogs, fixing a few typos and return values along the way
koda
parents:
7792
diff
changeset
|
632 |
reallyDeleteMsg.setWindowModality(Qt::WindowModal); |
ab7b94c03bc9
QMessageBox overhaul: unify buttons, style and appearance of info dialogs, fixing a few typos and return values along the way
koda
parents:
7792
diff
changeset
|
633 |
reallyDeleteMsg.setStandardButtons(QMessageBox::Ok | QMessageBox::Cancel); |
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
634 |
|
7794
ab7b94c03bc9
QMessageBox overhaul: unify buttons, style and appearance of info dialogs, fixing a few typos and return values along the way
koda
parents:
7792
diff
changeset
|
635 |
if (reallyDeleteMsg.exec() == QMessageBox::Ok) |
7792 | 636 |
{ |
637 |
QAbstractItemModel * model = mapper->model(); |
|
638 |
model->removeRow(selectScheme->currentIndex()); |
|
639 |
} |
|
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
640 |
} |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
641 |
} |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
642 |
|
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
643 |
void PageScheme::schemeSelected(int n) |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
644 |
{ |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
645 |
int c = ((AmmoSchemeModel*)mapper->model())->numberOfDefaultSchemes; |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
646 |
gbGameModes->setEnabled(n >= c); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
647 |
gbBasicSettings->setEnabled(n >= c); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
648 |
LE_name->setEnabled(n >= c); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
649 |
} |
6042
8b5345758f62
some more cleanups/refactoring/blahblah, some button positions may are a bit off atm. also I added a new picture for one of the buttons
sheepluva
parents:
6009
diff
changeset
|
650 |
|
8b5345758f62
some more cleanups/refactoring/blahblah, some button positions may are a bit off atm. also I added a new picture for one of the buttons
sheepluva
parents:
6009
diff
changeset
|
651 |