QTfrontend/gamecfgwidget.h
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
#ifndef GAMECONFIGWIDGET_H
44d9045b26ff New GameCFGWidget. Now it's possible to set forts mode from ui
unc0rr
parents:
diff changeset
    20
#define GAMECONFIGWIDGET_H
44d9045b26ff New GameCFGWidget. Now it's possible to set forts mode from ui
unc0rr
parents:
diff changeset
    21
44d9045b26ff New GameCFGWidget. Now it's possible to set forts mode from ui
unc0rr
parents:
diff changeset
    22
#include <QWidget>
44d9045b26ff New GameCFGWidget. Now it's possible to set forts mode from ui
unc0rr
parents:
diff changeset
    23
#include <QCheckBox>
164
92cff18a3ab6 first map preview added (still experimental)
displacer
parents: 87
diff changeset
    24
#include <QVBoxLayout>
85
44d9045b26ff New GameCFGWidget. Now it's possible to set forts mode from ui
unc0rr
parents:
diff changeset
    25
164
92cff18a3ab6 first map preview added (still experimental)
displacer
parents: 87
diff changeset
    26
#include "mapContainer.h"
85
44d9045b26ff New GameCFGWidget. Now it's possible to set forts mode from ui
unc0rr
parents:
diff changeset
    27
44d9045b26ff New GameCFGWidget. Now it's possible to set forts mode from ui
unc0rr
parents:
diff changeset
    28
class GameCFGWidget : public QWidget
44d9045b26ff New GameCFGWidget. Now it's possible to set forts mode from ui
unc0rr
parents:
diff changeset
    29
{
44d9045b26ff New GameCFGWidget. Now it's possible to set forts mode from ui
unc0rr
parents:
diff changeset
    30
	Q_OBJECT
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
public:
44d9045b26ff New GameCFGWidget. Now it's possible to set forts mode from ui
unc0rr
parents:
diff changeset
    33
	GameCFGWidget(QWidget* parent=0);
44d9045b26ff New GameCFGWidget. Now it's possible to set forts mode from ui
unc0rr
parents:
diff changeset
    34
	quint32 getGameFlags();
164
92cff18a3ab6 first map preview added (still experimental)
displacer
parents: 87
diff changeset
    35
	QString getCurrentSeed() const;
85
44d9045b26ff New GameCFGWidget. Now it's possible to set forts mode from ui
unc0rr
parents:
diff changeset
    36
44d9045b26ff New GameCFGWidget. Now it's possible to set forts mode from ui
unc0rr
parents:
diff changeset
    37
private slots:
44d9045b26ff New GameCFGWidget. Now it's possible to set forts mode from ui
unc0rr
parents:
diff changeset
    38
44d9045b26ff New GameCFGWidget. Now it's possible to set forts mode from ui
unc0rr
parents:
diff changeset
    39
private:
44d9045b26ff New GameCFGWidget. Now it's possible to set forts mode from ui
unc0rr
parents:
diff changeset
    40
	QCheckBox * CB_mode_Forts;
164
92cff18a3ab6 first map preview added (still experimental)
displacer
parents: 87
diff changeset
    41
	QVBoxLayout mainLayout;
92cff18a3ab6 first map preview added (still experimental)
displacer
parents: 87
diff changeset
    42
	HWMapContainer* pMapContainer;
85
44d9045b26ff New GameCFGWidget. Now it's possible to set forts mode from ui
unc0rr
parents:
diff changeset
    43
};
44d9045b26ff New GameCFGWidget. Now it's possible to set forts mode from ui
unc0rr
parents:
diff changeset
    44
44d9045b26ff New GameCFGWidget. Now it's possible to set forts mode from ui
unc0rr
parents:
diff changeset
    45
#endif // GAMECONFIGWIDGET_H