QTfrontend/ui/widget/weaponItem.h
author nemo
Sat, 01 Mar 2014 14:52:36 -0500
changeset 10171 00f41ff0bf2d
parent 10108 c68cf030eded
child 11046 47a8c19ecb60
permissions -rw-r--r--
Script might well override a static map, but can't risk it not doing it, and preview completely failing. Better to just not try it for static maps. Some script cfg might help. Could also avoid unnnecessary preview regenerations even if the script was doing nothing at all.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
624
e7673b036db5 weaponItem added
displacer
parents:
diff changeset
     1
/*
1066
1f1b3686a2b0 Update copyright headers a bit
unc0rr
parents: 883
diff changeset
     2
 * Hedgewars, a free turn based strategy game
4976
088d40d8aba2 Happy 2011 :)
koda
parents: 4412
diff changeset
     3
 * Copyright (c) 2006-2008 Igor Ulyanov <iulyanov@gmail.com>
9998
736015b847e3 update copyright to 2014
sheepluva
parents: 9080
diff changeset
     4
 * Copyright (c) 2004-2014 Andrey Korotaev <unC0Rr@gmail.com>
624
e7673b036db5 weaponItem added
displacer
parents:
diff changeset
     5
 *
e7673b036db5 weaponItem added
displacer
parents:
diff changeset
     6
 * This program is free software; you can redistribute it and/or modify
e7673b036db5 weaponItem added
displacer
parents:
diff changeset
     7
 * it under the terms of the GNU General Public License as published by
e7673b036db5 weaponItem added
displacer
parents:
diff changeset
     8
 * the Free Software Foundation; version 2 of the License
e7673b036db5 weaponItem added
displacer
parents:
diff changeset
     9
 *
e7673b036db5 weaponItem added
displacer
parents:
diff changeset
    10
 * This program is distributed in the hope that it will be useful,
e7673b036db5 weaponItem added
displacer
parents:
diff changeset
    11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
e7673b036db5 weaponItem added
displacer
parents:
diff changeset
    12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
e7673b036db5 weaponItem added
displacer
parents:
diff changeset
    13
 * GNU General Public License for more details.
e7673b036db5 weaponItem added
displacer
parents:
diff changeset
    14
 *
e7673b036db5 weaponItem added
displacer
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License
e7673b036db5 weaponItem added
displacer
parents:
diff changeset
    16
 * 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
    17
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
624
e7673b036db5 weaponItem added
displacer
parents:
diff changeset
    18
 */
e7673b036db5 weaponItem added
displacer
parents:
diff changeset
    19
e7673b036db5 weaponItem added
displacer
parents:
diff changeset
    20
#ifndef _WEAPON_ITEM
e7673b036db5 weaponItem added
displacer
parents:
diff changeset
    21
#define _WEAPON_ITEM
e7673b036db5 weaponItem added
displacer
parents:
diff changeset
    22
e7673b036db5 weaponItem added
displacer
parents:
diff changeset
    23
#include "itemNum.h"
e7673b036db5 weaponItem added
displacer
parents:
diff changeset
    24
e7673b036db5 weaponItem added
displacer
parents:
diff changeset
    25
class WeaponItem : public ItemNum
e7673b036db5 weaponItem added
displacer
parents:
diff changeset
    26
{
6616
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6060
diff changeset
    27
        Q_OBJECT
624
e7673b036db5 weaponItem added
displacer
parents:
diff changeset
    28
6616
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6060
diff changeset
    29
    public:
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6060
diff changeset
    30
        WeaponItem(const QImage& im, const QImage& img, QWidget * parent);
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6060
diff changeset
    31
        virtual ~WeaponItem();
624
e7673b036db5 weaponItem added
displacer
parents:
diff changeset
    32
6616
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6060
diff changeset
    33
    signals:
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6060
diff changeset
    34
        void hedgehogsNumChanged();
624
e7673b036db5 weaponItem added
displacer
parents:
diff changeset
    35
6616
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6060
diff changeset
    36
    protected:
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6060
diff changeset
    37
        virtual void incItems();
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6060
diff changeset
    38
        virtual void decItems();
624
e7673b036db5 weaponItem added
displacer
parents:
diff changeset
    39
6616
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6060
diff changeset
    40
    private:
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6060
diff changeset
    41
        WeaponItem();
624
e7673b036db5 weaponItem added
displacer
parents:
diff changeset
    42
};
e7673b036db5 weaponItem added
displacer
parents:
diff changeset
    43
e7673b036db5 weaponItem added
displacer
parents:
diff changeset
    44
#endif // _WEAPON_ITEM