| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- /*
- * CMarketWindow.h, 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
- *
- */
- #pragma once
- #include "../widgets/markets/CMarketBase.h"
- #include "../widgets/CWindowWithArtifacts.h"
- #include "CWindowObject.h"
- class CMarketWindow : public CStatusbarWindow, public CWindowWithArtifacts, public IGarrisonHolder
- {
- public:
- CMarketWindow(const IMarket * market, const CGHeroInstance * hero, const std::function<void()> & onWindowClosed, EMarketMode mode);
- void updateResource();
- void updateArtifacts();
- void updateGarrisons() override;
- void updateHero();
- void close() override;
- bool holdsGarrison(const CArmedInstance * army) override;
- void artifactRemoved(const ArtifactLocation & artLoc) override;
- void artifactMoved(const ArtifactLocation & srcLoc, const ArtifactLocation & destLoc, bool withRedraw) override;
- void deactivate() override;
- private:
- void createChangeModeButtons(EMarketMode currentMode, const IMarket * market, const CGHeroInstance * hero);
- void initWidgetInternals(const EMarketMode mode, const std::pair<std::string, std::string> & quitButtonHelpContainer);
- void createArtifactsBuying(const IMarket * market, const CGHeroInstance * hero);
- void createArtifactsSelling(const IMarket * market, const CGHeroInstance * hero);
- void createMarketResources(const IMarket * market, const CGHeroInstance * hero);
- void createFreelancersGuild(const IMarket * market, const CGHeroInstance * hero);
- void createTransferResources(const IMarket * market, const CGHeroInstance * hero);
- void createAltarArtifacts(const IMarket * market, const CGHeroInstance * hero);
- void createAltarCreatures(const IMarket * market, const CGHeroInstance * hero);
- const int buttonHeightWithMargin = 32 + 3;
- std::vector<std::shared_ptr<CButton>> changeModeButtons;
- std::shared_ptr<CButton> quitButton;
- std::function<void()> windowClosedCallback;
- const Point quitButtonPos = Point(516, 520);
- std::shared_ptr<CMarketBase> marketWidget;
- // This is workaround for bug in H3 files where this slot for ragdoll on this screen is missing
- std::shared_ptr<CPicture> artSlotBack;
- };
|