QTfrontend/gamecfgwidget.cpp
author unc0rr
Thu, 05 Oct 2006 16:33:18 +0000
changeset 183 57c2ef19f719
parent 164 92cff18a3ab6
child 184 f97a7a3dc8f6
permissions -rw-r--r--
Relicense to GPL
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
85
44d9045b26ff New GameCFGWidget. Now it's possible to set forts mode from ui
unc0rr
parents:
diff changeset
     1
/*
44d9045b26ff New GameCFGWidget. Now it's possible to set forts mode from ui
unc0rr
parents:
diff changeset
     2
 * Hedgewars, a worms-like game
44d9045b26ff New GameCFGWidget. Now it's possible to set forts mode from ui
unc0rr
parents:
diff changeset
     3
 * Copyright (c) 2006 Andrey Korotaev <unC0Rr@gmail.com>
44d9045b26ff New GameCFGWidget. Now it's possible to set forts mode from ui
unc0rr
parents:
diff changeset
     4
 *
183
57c2ef19f719 Relicense to GPL
unc0rr
parents: 164
diff changeset
     5
 * This program is free software; you can redistribute it and/or modify
57c2ef19f719 Relicense to GPL
unc0rr
parents: 164
diff changeset
     6
 * it under the terms of the GNU General Public License as published by
57c2ef19f719 Relicense to GPL
unc0rr
parents: 164
diff changeset
     7
 * the Free Software Foundation; version 2 of the License
85
44d9045b26ff New GameCFGWidget. Now it's possible to set forts mode from ui
unc0rr
parents:
diff changeset
     8
 *
183
57c2ef19f719 Relicense to GPL
unc0rr
parents: 164
diff changeset
     9
 * This program is distributed in the hope that it will be useful,
57c2ef19f719 Relicense to GPL
unc0rr
parents: 164
diff changeset
    10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
57c2ef19f719 Relicense to GPL
unc0rr
parents: 164
diff changeset
    11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
57c2ef19f719 Relicense to GPL
unc0rr
parents: 164
diff changeset
    12
 * GNU General Public License for more details.
85
44d9045b26ff New GameCFGWidget. Now it's possible to set forts mode from ui
unc0rr
parents:
diff changeset
    13
 *
183
57c2ef19f719 Relicense to GPL
unc0rr
parents: 164
diff changeset
    14
 * You should have received a copy of the GNU General Public License
57c2ef19f719 Relicense to GPL
unc0rr
parents: 164
diff changeset
    15
 * along with this program; if not, write to the Free Software
57c2ef19f719 Relicense to GPL
unc0rr
parents: 164
diff changeset
    16
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
85
44d9045b26ff New GameCFGWidget. Now it's possible to set forts mode from ui
unc0rr
parents:
diff changeset
    17
 */
44d9045b26ff New GameCFGWidget. Now it's possible to set forts mode from ui
unc0rr
parents:
diff changeset
    18
44d9045b26ff New GameCFGWidget. Now it's possible to set forts mode from ui
unc0rr
parents:
diff changeset
    19
#include <QResizeEvent>
44d9045b26ff New GameCFGWidget. Now it's possible to set forts mode from ui
unc0rr
parents:
diff changeset
    20
#include "gamecfgwidget.h"
44d9045b26ff New GameCFGWidget. Now it's possible to set forts mode from ui
unc0rr
parents:
diff changeset
    21
164
92cff18a3ab6 first map preview added (still experimental)
displacer
parents: 138
diff changeset
    22
GameCFGWidget::GameCFGWidget(QWidget* parent) : 
92cff18a3ab6 first map preview added (still experimental)
displacer
parents: 138
diff changeset
    23
  QWidget(parent), mainLayout(this)
85
44d9045b26ff New GameCFGWidget. Now it's possible to set forts mode from ui
unc0rr
parents:
diff changeset
    24
{
44d9045b26ff New GameCFGWidget. Now it's possible to set forts mode from ui
unc0rr
parents:
diff changeset
    25
	CB_mode_Forts = new QCheckBox(this);
138
00e8d3693e90 Actualize translation
unc0rr
parents: 123
diff changeset
    26
	CB_mode_Forts->setText(QCheckBox::tr("Forts mode"));
164
92cff18a3ab6 first map preview added (still experimental)
displacer
parents: 138
diff changeset
    27
	mainLayout.addWidget(CB_mode_Forts);
92cff18a3ab6 first map preview added (still experimental)
displacer
parents: 138
diff changeset
    28
	pMapContainer=new HWMapContainer(this);
92cff18a3ab6 first map preview added (still experimental)
displacer
parents: 138
diff changeset
    29
	mainLayout.addWidget(pMapContainer, 80);
85
44d9045b26ff New GameCFGWidget. Now it's possible to set forts mode from ui
unc0rr
parents:
diff changeset
    30
}
44d9045b26ff New GameCFGWidget. Now it's possible to set forts mode from ui
unc0rr
parents:
diff changeset
    31
44d9045b26ff New GameCFGWidget. Now it's possible to set forts mode from ui
unc0rr
parents:
diff changeset
    32
quint32 GameCFGWidget::getGameFlags()
44d9045b26ff New GameCFGWidget. Now it's possible to set forts mode from ui
unc0rr
parents:
diff changeset
    33
{
44d9045b26ff New GameCFGWidget. Now it's possible to set forts mode from ui
unc0rr
parents:
diff changeset
    34
	quint32 result = 0;
44d9045b26ff New GameCFGWidget. Now it's possible to set forts mode from ui
unc0rr
parents:
diff changeset
    35
	if (CB_mode_Forts->isChecked())
44d9045b26ff New GameCFGWidget. Now it's possible to set forts mode from ui
unc0rr
parents:
diff changeset
    36
		result |= 1;
44d9045b26ff New GameCFGWidget. Now it's possible to set forts mode from ui
unc0rr
parents:
diff changeset
    37
	return result;
44d9045b26ff New GameCFGWidget. Now it's possible to set forts mode from ui
unc0rr
parents:
diff changeset
    38
}
164
92cff18a3ab6 first map preview added (still experimental)
displacer
parents: 138
diff changeset
    39
92cff18a3ab6 first map preview added (still experimental)
displacer
parents: 138
diff changeset
    40
QString GameCFGWidget::getCurrentSeed() const
92cff18a3ab6 first map preview added (still experimental)
displacer
parents: 138
diff changeset
    41
{
92cff18a3ab6 first map preview added (still experimental)
displacer
parents: 138
diff changeset
    42
  return pMapContainer->getCurrentSeed();
92cff18a3ab6 first map preview added (still experimental)
displacer
parents: 138
diff changeset
    43
}