1
0
mirror of https://github.com/vcmi/vcmi.git synced 2024-12-14 10:12:59 +02:00
vcmi/client/widgets/CArtifactsOfHeroMarket.cpp

48 lines
1.3 KiB
C++
Raw Normal View History

2023-04-23 14:10:35 +02:00
/*
* CArtifactsOfHeroMarket.cpp, part of VCMI engine
*
* Authors: listed in file AUTHORS in main folder
*
* License: GNU General Public License v2.0 or later
* Full text of license available in license.txt file, in main folder
*
*/
#include "StdInc.h"
#include "CArtifactsOfHeroMarket.h"
#include "../../lib/mapObjects/CGHeroInstance.h"
2024-03-02 20:30:29 +02:00
CArtifactsOfHeroMarket::CArtifactsOfHeroMarket(const Point & position, const int selectionWidth)
2023-04-23 14:10:35 +02:00
{
2024-05-20 14:31:07 +02:00
init(position, std::bind(&CArtifactsOfHeroBase::scrollBackpack, this, _1));
2024-10-28 14:30:19 +02:00
setClickPressedArtPlacesCallback(std::bind(&CArtifactsOfHeroBase::clickPressedArtPlace, this, _1, _2));
2023-12-04 23:21:49 +02:00
for(const auto & [slot, artPlace] : artWorn)
2024-03-02 20:30:29 +02:00
artPlace->setSelectionWidth(selectionWidth);
2023-12-04 23:21:49 +02:00
for(auto artPlace : backpack)
2024-03-02 20:30:29 +02:00
artPlace->setSelectionWidth(selectionWidth);
2023-04-23 14:10:35 +02:00
};
2024-05-02 00:49:17 +02:00
2024-10-28 14:30:19 +02:00
void CArtifactsOfHeroMarket::clickPressedArtPlace(CComponentHolder & artPlace, const Point & cursorPosition)
2024-05-02 00:49:17 +02:00
{
2024-11-13 06:24:00 +02:00
if(auto ownedPlace = getArtPlace(cursorPosition))
2024-05-02 00:49:17 +02:00
{
2024-11-13 06:24:00 +02:00
if(ownedPlace->isLocked())
return;
if(const auto art = getArt(ownedPlace->slot))
2024-05-02 00:49:17 +02:00
{
2024-11-13 06:24:00 +02:00
if(onSelectArtCallback && art->getType()->isTradable())
{
unmarkSlots();
artPlace.selectSlot(true);
onSelectArtCallback(ownedPlace.get());
}
else
{
if(onClickNotTradableCallback)
onClickNotTradableCallback();
}
2024-05-02 00:49:17 +02:00
}
}
}