author | sheepluva |
Sat, 01 Jan 2011 11:15:35 +0100 | |
changeset 4800 | 83ee0a10903b |
parent 4598 | 7cb8c9db6e8d |
child 4976 | 088d40d8aba2 |
permissions | -rw-r--r-- |
612
333d095319de
abstract class for items container (hedgehogs num, bullets, etc.)
displacer
parents:
598
diff
changeset
|
1 |
/* |
1066 | 2 |
* Hedgewars, a free turn based strategy game |
883 | 3 |
* Copyright (c) 2006-2008 Ulyanov Igor <iulyanov@gmail.com> |
612
333d095319de
abstract class for items container (hedgehogs num, bullets, etc.)
displacer
parents:
598
diff
changeset
|
4 |
* |
333d095319de
abstract class for items container (hedgehogs num, bullets, etc.)
displacer
parents:
598
diff
changeset
|
5 |
* This program is free software; you can redistribute it and/or modify |
333d095319de
abstract class for items container (hedgehogs num, bullets, etc.)
displacer
parents:
598
diff
changeset
|
6 |
* it under the terms of the GNU General Public License as published by |
333d095319de
abstract class for items container (hedgehogs num, bullets, etc.)
displacer
parents:
598
diff
changeset
|
7 |
* the Free Software Foundation; version 2 of the License |
333d095319de
abstract class for items container (hedgehogs num, bullets, etc.)
displacer
parents:
598
diff
changeset
|
8 |
* |
333d095319de
abstract class for items container (hedgehogs num, bullets, etc.)
displacer
parents:
598
diff
changeset
|
9 |
* This program is distributed in the hope that it will be useful, |
333d095319de
abstract class for items container (hedgehogs num, bullets, etc.)
displacer
parents:
598
diff
changeset
|
10 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
333d095319de
abstract class for items container (hedgehogs num, bullets, etc.)
displacer
parents:
598
diff
changeset
|
11 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
333d095319de
abstract class for items container (hedgehogs num, bullets, etc.)
displacer
parents:
598
diff
changeset
|
12 |
* GNU General Public License for more details. |
333d095319de
abstract class for items container (hedgehogs num, bullets, etc.)
displacer
parents:
598
diff
changeset
|
13 |
* |
333d095319de
abstract class for items container (hedgehogs num, bullets, etc.)
displacer
parents:
598
diff
changeset
|
14 |
* You should have received a copy of the GNU General Public License |
333d095319de
abstract class for items container (hedgehogs num, bullets, etc.)
displacer
parents:
598
diff
changeset
|
15 |
* along with this program; if not, write to the Free Software |
333d095319de
abstract class for items container (hedgehogs num, bullets, etc.)
displacer
parents:
598
diff
changeset
|
16 |
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA |
333d095319de
abstract class for items container (hedgehogs num, bullets, etc.)
displacer
parents:
598
diff
changeset
|
17 |
*/ |
333d095319de
abstract class for items container (hedgehogs num, bullets, etc.)
displacer
parents:
598
diff
changeset
|
18 |
|
598 | 19 |
#ifndef _SELECT_WEAPON_INCLUDED |
20 |
#define _SELECT_WEAPON_INCLUDED |
|
21 |
||
1455 | 22 |
#include <QFrame> |
2369
c3eb11f1ab3a
Implement probability editor for weapon schemes (engine doesn't support that yet)
unc0rr
parents:
1509
diff
changeset
|
23 |
#include <QMap> |
c3eb11f1ab3a
Implement probability editor for weapon schemes (engine doesn't support that yet)
unc0rr
parents:
1509
diff
changeset
|
24 |
#include <QList> |
598 | 25 |
|
624 | 26 |
class QGridLayout; |
681 | 27 |
class WeaponItem; |
694 | 28 |
class QLineEdit; |
29 |
class QSettings; |
|
624 | 30 |
|
629 | 31 |
class SelWeaponItem : public QWidget |
32 |
{ |
|
33 |
Q_OBJECT |
|
34 |
||
35 |
public: |
|
4412
c9a78ba03679
added disabling option to itemNum and grey images for that. also made default weapon sets uneditable and not deleteable.
Henek
parents:
2860
diff
changeset
|
36 |
SelWeaponItem(bool allowInfinite, int iconNum, int wNum, QImage image, QImage imagegrey, QWidget* parent=0); |
681 | 37 |
|
38 |
unsigned char getItemsNum() const; |
|
683 | 39 |
void setItemsNum(const unsigned char num); |
4412
c9a78ba03679
added disabling option to itemNum and grey images for that. also made default weapon sets uneditable and not deleteable.
Henek
parents:
2860
diff
changeset
|
40 |
void setEnabled(bool value); |
681 | 41 |
|
42 |
private: |
|
43 |
WeaponItem* item; |
|
629 | 44 |
}; |
45 |
||
1455 | 46 |
class SelWeaponWidget : public QFrame |
598 | 47 |
{ |
48 |
Q_OBJECT |
|
2377 | 49 |
|
681 | 50 |
public: |
683 | 51 |
SelWeaponWidget(int numItems, QWidget* parent=0); |
696 | 52 |
QString getWeaponsString(const QString& name) const; |
694 | 53 |
QStringList getWeaponNames() const; |
683 | 54 |
|
55 |
public slots: |
|
56 |
void setDefault(); |
|
694 | 57 |
void setWeapons(const QString& ammo); |
1509 | 58 |
void setWeaponsName(const QString& name); |
718 | 59 |
void deleteWeaponsName(); |
4416
29d2d1548387
adding a combobox to weapon editor as scheme editor, added a few notices for deleting and some buttons in this area.
Henek
parents:
4412
diff
changeset
|
60 |
void newWeaponsName(); |
683 | 61 |
void save(); |
4598 | 62 |
void copy(); |
624 | 63 |
|
695 | 64 |
signals: |
65 |
void weaponsChanged(); |
|
724 | 66 |
void weaponsDeleted(); |
695 | 67 |
|
624 | 68 |
private: |
694 | 69 |
QString curWeaponsName; |
70 |
||
71 |
QLineEdit* m_name; |
|
72 |
||
73 |
QSettings* wconf; |
|
74 |
||
683 | 75 |
const int m_numItems; |
76 |
int operator [] (unsigned int weaponIndex) const; |
|
2369
c3eb11f1ab3a
Implement probability editor for weapon schemes (engine doesn't support that yet)
unc0rr
parents:
1509
diff
changeset
|
77 |
|
c3eb11f1ab3a
Implement probability editor for weapon schemes (engine doesn't support that yet)
unc0rr
parents:
1509
diff
changeset
|
78 |
typedef QList<SelWeaponItem*> ItemsList; |
c3eb11f1ab3a
Implement probability editor for weapon schemes (engine doesn't support that yet)
unc0rr
parents:
1509
diff
changeset
|
79 |
typedef QMap<int, ItemsList> twi; |
683 | 80 |
twi weaponItems; |
2369
c3eb11f1ab3a
Implement probability editor for weapon schemes (engine doesn't support that yet)
unc0rr
parents:
1509
diff
changeset
|
81 |
QGridLayout* p1Layout; |
c3eb11f1ab3a
Implement probability editor for weapon schemes (engine doesn't support that yet)
unc0rr
parents:
1509
diff
changeset
|
82 |
QGridLayout* p2Layout; |
2860
13a53315ae18
Awesome patch from TheException - adds editing of weapon delay and crate count. Tiy might want to tweak the crate graphic, could make be smaller or less overlappy.
nemo
parents:
2377
diff
changeset
|
83 |
QGridLayout* p3Layout; |
13a53315ae18
Awesome patch from TheException - adds editing of weapon delay and crate count. Tiy might want to tweak the crate graphic, could make be smaller or less overlappy.
nemo
parents:
2377
diff
changeset
|
84 |
QGridLayout* p4Layout; |
598 | 85 |
}; |
86 |
||
87 |
#endif // _SELECT_WEAPON_INCLUDED |