summaryrefslogtreecommitdiff
path: root/src/gui/widgets
diff options
context:
space:
mode:
authorThorbjørn Lindeijer <thorbjorn@lindeijer.nl>2012-01-14 00:30:19 +0100
committerThorbjørn Lindeijer <thorbjorn@lindeijer.nl>2012-01-15 00:34:39 +0100
commit04badb46717681879fb68430a49afb04e26671ef (patch)
treedec50ef1411d1aadcfc4149a111944d9ade8590c /src/gui/widgets
parent428fc53a8319710bba3cf130ed7121c9d6732c24 (diff)
downloadmana-client-04badb46717681879fb68430a49afb04e26671ef.tar.gz
mana-client-04badb46717681879fb68430a49afb04e26671ef.tar.bz2
mana-client-04badb46717681879fb68430a49afb04e26671ef.tar.xz
mana-client-04badb46717681879fb68430a49afb04e26671ef.zip
Show item quantity in the shop list
Rather useful when selling items to quickly see what you have in abundance, rather than only seeing the quantity of the selected item. Reviewed-by: Yohann Ferreira
Diffstat (limited to 'src/gui/widgets')
-rw-r--r--src/gui/widgets/shoplistbox.cpp63
1 files changed, 40 insertions, 23 deletions
diff --git a/src/gui/widgets/shoplistbox.cpp b/src/gui/widgets/shoplistbox.cpp
index 2d25185a..4e06cfab 100644
--- a/src/gui/widgets/shoplistbox.cpp
+++ b/src/gui/widgets/shoplistbox.cpp
@@ -77,60 +77,77 @@ void ShopListBox::draw(gcn::Graphics *gcnGraphics)
if (config.getFloatValue("guialpha") != mAlpha)
mAlpha = config.getFloatValue("guialpha");
- int alpha = (int)(mAlpha * 255.0f);
- const gcn::Color* highlightColor =
- &Theme::getThemeColor(Theme::HIGHLIGHT, alpha);
+ const int alpha = (int)(mAlpha * 255.0f);
+ const gcn::Color &highlightColor =
+ Theme::getThemeColor(Theme::HIGHLIGHT, alpha);
+ const gcn::Color &backgroundColor =
+ Theme::getThemeColor(Theme::BACKGROUND, alpha);
+ const gcn::Color &warningColor =
+ Theme::getThemeColor(Theme::SHOP_WARNING, alpha);
+ const gcn::Color &textColor =
+ Theme::getThemeColor(Theme::TEXT);
Graphics *graphics = static_cast<Graphics*>(gcnGraphics);
graphics->setFont(getFont());
+ const int fontHeight = getFont()->getHeight();
// Draw the list elements
for (int i = 0, y = 0;
i < mListModel->getNumberOfElements();
++i, y += mRowHeight)
{
- gcn::Color temp;
- const gcn::Color* backgroundColor =
- &Theme::getThemeColor(Theme::BACKGROUND, alpha);
+ ShopItem *shopItem = mShopItems ? mShopItems->at(i) : 0;
- if (mShopItems &&
- mPlayerMoney < mShopItems->at(i)->getPrice() && mPriceCheck)
+ if (shopItem && mPlayerMoney < shopItem->getPrice() && mPriceCheck)
{
if (i != mSelected)
{
- backgroundColor = &Theme::getThemeColor(Theme::SHOP_WARNING,
- alpha);
+ graphics->setColor(warningColor);
}
else
{
- temp = Theme::getThemeColor(Theme::SHOP_WARNING, alpha);
- temp.r = (temp.r + highlightColor->r) / 2;
- temp.g = (temp.g + highlightColor->g) / 2;
- temp.b = (temp.g + highlightColor->b) / 2;
- backgroundColor = &temp;
+ gcn::Color blend = warningColor;
+ blend.r = (blend.r + highlightColor.r) / 2;
+ blend.g = (blend.g + highlightColor.g) / 2;
+ blend.b = (blend.g + highlightColor.b) / 2;
+ graphics->setColor(blend);
}
}
else if (i == mSelected)
{
- backgroundColor = highlightColor;
+ graphics->setColor(highlightColor);
+ }
+ else
+ {
+ graphics->setColor(backgroundColor);
}
- graphics->setColor(*backgroundColor);
graphics->fillRectangle(gcn::Rectangle(0, y, getWidth(), mRowHeight));
- if (mShopItems)
+ if (shopItem)
{
- Image *icon = mShopItems->at(i)->getImage();
- if (icon)
+ if (Image *icon = shopItem->getImage())
{
icon->setAlpha(1.0f);
graphics->drawImage(icon, 1, y);
}
+
+ // Draw the item quantity when it's not just a single item
+ if (shopItem->getQuantity() > 1)
+ {
+ graphics->setColor(textColor);
+ graphics->drawText(toString(shopItem->getQuantity()),
+ 1 + ITEM_ICON_SIZE,
+ y + ITEM_ICON_SIZE - fontHeight,
+ Graphics::RIGHT);
+ }
}
- graphics->setColor(Theme::getThemeColor(Theme::TEXT));
- graphics->drawText(mListModel->getElementAt(i), ITEM_ICON_SIZE + 5,
- y + (ITEM_ICON_SIZE - getFont()->getHeight()) / 2);
+
+ graphics->setColor(textColor);
+ graphics->drawText(mListModel->getElementAt(i),
+ ITEM_ICON_SIZE + 5,
+ y + (ITEM_ICON_SIZE - fontHeight) / 2);
}
}