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
|
|
|
{
|
|
|
|
init(
|
2023-12-17 16:30:19 +02:00
|
|
|
std::bind(&CArtifactsOfHeroBase::clickPrassedArtPlace, this, _1, _2),
|
|
|
|
std::bind(&CArtifactsOfHeroBase::showPopupArtPlace, this, _1, _2),
|
2023-04-23 14:10:35 +02:00
|
|
|
position,
|
2024-03-05 17:59:56 +02:00
|
|
|
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
|
|
|
};
|