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

34 lines
947 B
C++
Raw Normal View History

2023-04-23 14:10:35 +02:00
/*
* CArtifactsOfHeroMain.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 "CArtifactsOfHeroMain.h"
#include "../CPlayerInterface.h"
#include "../../lib/mapObjects/CGHeroInstance.h"
2023-04-23 14:10:35 +02:00
#include "../../CCallback.h"
#include "../../lib/networkPacks/ArtifactLocation.h"
2023-04-23 14:10:35 +02:00
CArtifactsOfHeroMain::CArtifactsOfHeroMain(const Point & position)
{
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-12-17 16:30:19 +02:00
addGestureCallback(std::bind(&CArtifactsOfHeroBase::gestureArtPlace, this, _1, _2));
2023-04-23 14:10:35 +02:00
}
void CArtifactsOfHeroMain::deactivate()
2023-07-06 21:14:12 +02:00
{
putBackPickedArtifact();
CArtifactsOfHeroBase::deactivate();
2023-07-06 21:14:12 +02:00
}