summaryrefslogtreecommitdiff
path: root/src/gui/widgets/shoplistbox.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2013-07-27 23:47:03 +0300
committerAndrei Karas <akaras@inbox.ru>2013-07-27 23:47:03 +0300
commit0ad49798faae14641827ab7a1e57358cdf99a9cc (patch)
tree1d9f9335f1a59ea2c2d2078842a0c6f08c59c68e /src/gui/widgets/shoplistbox.cpp
parente899683d3e45ff8ab8d5d717adf3a217810a5c40 (diff)
downloadplus-0ad49798faae14641827ab7a1e57358cdf99a9cc.tar.gz
plus-0ad49798faae14641827ab7a1e57358cdf99a9cc.tar.bz2
plus-0ad49798faae14641827ab7a1e57358cdf99a9cc.tar.xz
plus-0ad49798faae14641827ab7a1e57358cdf99a9cc.zip
allow buy protected items.
Diffstat (limited to 'src/gui/widgets/shoplistbox.cpp')
-rw-r--r--src/gui/widgets/shoplistbox.cpp13
1 files changed, 8 insertions, 5 deletions
diff --git a/src/gui/widgets/shoplistbox.cpp b/src/gui/widgets/shoplistbox.cpp
index e6cbdae4e..b0f58bd5f 100644
--- a/src/gui/widgets/shoplistbox.cpp
+++ b/src/gui/widgets/shoplistbox.cpp
@@ -50,10 +50,11 @@ ShopListBox::ShopListBox(const Widget2 *const widget,
mShopItems(nullptr),
mItemPopup(new ItemPopup),
mRowHeight(getFont()->getHeight()),
- mPriceCheck(true),
mHighlightColor(getThemeColor(Theme::HIGHLIGHT)),
mBackgroundColor(getThemeColor(Theme::BACKGROUND)),
- mWarningColor(getThemeColor(Theme::SHOP_WARNING))
+ mWarningColor(getThemeColor(Theme::SHOP_WARNING)),
+ mPriceCheck(true),
+ mProtectItems(false)
{
mForegroundColor = getThemeColor(Theme::LISTBOX);
}
@@ -66,10 +67,11 @@ ShopListBox::ShopListBox(const Widget2 *const widget,
mShopItems(shopListModel),
mItemPopup(new ItemPopup),
mRowHeight(std::max(getFont()->getHeight(), ITEM_ICON_SIZE)),
- mPriceCheck(true),
mHighlightColor(getThemeColor(Theme::HIGHLIGHT)),
mBackgroundColor(getThemeColor(Theme::BACKGROUND)),
- mWarningColor(getThemeColor(Theme::SHOP_WARNING))
+ mWarningColor(getThemeColor(Theme::SHOP_WARNING)),
+ mPriceCheck(true),
+ mProtectItems(false)
{
mForegroundColor = getThemeColor(Theme::LISTBOX);
}
@@ -109,7 +111,8 @@ void ShopListBox::draw(gcn::Graphics *gcnGraphics)
ShopItem *const item = mShopItems->at(i);
if (item && ((mShopItems && mPlayerMoney < item->getPrice()
- && mPriceCheck) || PlayerInfo::isItemProtected(item->getId())))
+ && mPriceCheck)
+ || (mProtectItems && PlayerInfo::isItemProtected(item->getId()))))
{
if (i != mSelected)
{