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

28 lines
844 B
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
{
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,
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
};