summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2011-03-08 04:40:39 +0200
committerAndrei Karas <akaras@inbox.ru>2011-03-08 04:41:10 +0200
commitc17acf93cb4ebe698b0af8a38a1fd6d49a6be3cc (patch)
treedcbcde05b894da2ee7e83f2c62742565c2457b88
parent7646d773e826b222b94b951f777256b23dbf98ac (diff)
downloadplus-c17acf93cb4ebe698b0af8a38a1fd6d49a6be3cc.tar.gz
plus-c17acf93cb4ebe698b0af8a38a1fd6d49a6be3cc.tar.bz2
plus-c17acf93cb4ebe698b0af8a38a1fd6d49a6be3cc.tar.xz
plus-c17acf93cb4ebe698b0af8a38a1fd6d49a6be3cc.zip
Add possible colors to item popups.
-rw-r--r--src/gui/itempopup.cpp12
-rw-r--r--src/gui/itempopup.h3
-rw-r--r--src/gui/widgets/itemlinkhandler.cpp3
3 files changed, 12 insertions, 6 deletions
diff --git a/src/gui/itempopup.cpp b/src/gui/itempopup.cpp
index 109e2edf8..d7f67ff0c 100644
--- a/src/gui/itempopup.cpp
+++ b/src/gui/itempopup.cpp
@@ -97,7 +97,7 @@ void ItemPopup::setItem(const Item *item, bool showImage)
return;
const ItemInfo &ii = item->getInfo();
- setItem(ii, showImage);
+ setItem(ii, item->getColor(), showImage);
if (item->getRefine() > 0)
{
mItemName->setCaption(strprintf("%s (+%d), %d", ii.getName().c_str(),
@@ -109,7 +109,8 @@ void ItemPopup::setItem(const Item *item, bool showImage)
}
}
-void ItemPopup::setItem(const ItemInfo &item, bool showImage)
+void ItemPopup::setItem(const ItemInfo &item, unsigned char color,
+ bool showImage)
{
if (!mIcon || item.getName() == mItemName->getCaption())
return;
@@ -123,9 +124,12 @@ void ItemPopup::setItem(const ItemInfo &item, bool showImage)
if (showImage)
{
ResourceManager *resman = ResourceManager::getInstance();
- Image *image = resman->getImage(
+ logger->log("img: " + combineDye2(
paths.getStringValue("itemIcons")
- + item.getDisplay().image);
+ + item.getDisplay().image, item.getDyeColorsString(color)));
+ Image *image = resman->getImage(combineDye2(
+ paths.getStringValue("itemIcons")
+ + item.getDisplay().image, item.getDyeColorsString(color)));
mIcon->setImage(image);
if (image)
diff --git a/src/gui/itempopup.h b/src/gui/itempopup.h
index 4cefae6c6..aeda26a0d 100644
--- a/src/gui/itempopup.h
+++ b/src/gui/itempopup.h
@@ -52,7 +52,8 @@ class ItemPopup : public Popup
/**
* Sets the info to be displayed given a particular item.
*/
- void setItem(const ItemInfo &item, bool showImage = false);
+ void setItem(const ItemInfo &item, unsigned char color,
+ bool showImage = false);
void setItem(const Item *item, bool showImage = false);
diff --git a/src/gui/widgets/itemlinkhandler.cpp b/src/gui/widgets/itemlinkhandler.cpp
index e09307a8e..87d708cd0 100644
--- a/src/gui/widgets/itemlinkhandler.cpp
+++ b/src/gui/widgets/itemlinkhandler.cpp
@@ -57,7 +57,8 @@ void ItemLinkHandler::handleLink(const std::string &link,
if (id > 0)
{
const ItemInfo &itemInfo = ItemDB::get(id);
- mItemPopup->setItem(itemInfo, true);
+ //+++ need add color to links?
+ mItemPopup->setItem(itemInfo, 1, true);
if (mItemPopup->isVisible())
mItemPopup->setVisible(false);