summaryrefslogtreecommitdiff
path: root/src/net/manaserv/inventoryhandler.h
diff options
context:
space:
mode:
authorYohann Ferreira <yohann_dot_ferreira_at_orange_dot_efer>2011-11-13 00:33:01 +0100
committerYohann Ferreira <yohann_dot_ferreira_at_orange_dot_efer>2011-11-13 19:50:00 +0100
commita0973bc302f2972c4c70d973090c4d29ea2f7c6d (patch)
treee840f5807aa8b3cfc69b17a17ac3bf9cba317485 /src/net/manaserv/inventoryhandler.h
parent253c660d8e3341ad2d78658a23e599d5aaa84c00 (diff)
downloadmana-client-a0973bc302f2972c4c70d973090c4d29ea2f7c6d.tar.gz
mana-client-a0973bc302f2972c4c70d973090c4d29ea2f7c6d.tar.bz2
mana-client-a0973bc302f2972c4c70d973090c4d29ea2f7c6d.tar.xz
mana-client-a0973bc302f2972c4c70d973090c4d29ea2f7c6d.zip
Added background support to the equipment boxes.
The background images are auto-centered. Also, for Manaserv, a new background parameter has been added in the box node of the equip.xml file to specify the background image. Note that the filename is relative to the gui theme folder. Reviewed-by: Thorbjorn Lindeijer Resolves: TMW-Mantis #769.
Diffstat (limited to 'src/net/manaserv/inventoryhandler.h')
-rw-r--r--src/net/manaserv/inventoryhandler.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/net/manaserv/inventoryhandler.h b/src/net/manaserv/inventoryhandler.h
index 446105ee..c9192525 100644
--- a/src/net/manaserv/inventoryhandler.h
+++ b/src/net/manaserv/inventoryhandler.h
@@ -63,6 +63,8 @@ class EquipBackend : public Equipment::Backend, public EventListener
Position getBoxPosition(unsigned int slotIndex) const;
+ const std::string& getBoxBackground(unsigned int slotIndex) const;
+
private:
void readEquipFile();
@@ -114,6 +116,7 @@ class EquipBackend : public Equipment::Backend, public EventListener
typedef std::map<unsigned int, Slot> Slots;
Slots mSlots;
std::vector<Position> mBoxesPositions;
+ std::vector<std::string> mBoxesBackgroundFile;
};
class InventoryHandler : public MessageHandler, Net::InventoryHandler,
@@ -142,6 +145,9 @@ class InventoryHandler : public MessageHandler, Net::InventoryHandler,
Position getBoxPosition(unsigned int slotIndex) const
{ return mEquipBackend.getBoxPosition(slotIndex); }
+ const std::string& getBoxBackground(unsigned int slotIndex) const
+ { return mEquipBackend.getBoxBackground(slotIndex); }
+
private:
EquipBackend mEquipBackend;
};