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

45 lines
1.1 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));
2023-11-19 19:49:59 +02:00
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-05-20 14:31:07 +02:00
void CArtifactsOfHeroMarket::clickPrassedArtPlace(CArtPlace & artPlace, const Point & cursorPosition)
2024-05-02 00:49:17 +02:00
{
2024-05-20 14:31:07 +02:00
if(artPlace.isLocked())
return;
2024-05-02 00:49:17 +02:00
if(const auto art = getArt(artPlace.slot))
{
if(onSelectArtCallback && art->artType->isTradable())
{
unmarkSlots();
artPlace.selectSlot(true);
onSelectArtCallback(&artPlace);
}
else
{
if(onClickNotTradableCallback)
onClickNotTradableCallback();
}
}
}