1
0
mirror of https://github.com/vcmi/vcmi.git synced 2024-12-12 10:03:53 +02:00
vcmi/client/widgets/MiscWidgets.h

266 lines
7.2 KiB
C++
Raw Normal View History

2014-07-13 18:40:13 +03:00
/*
* MiscWidgets.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 "../gui/CIntObject.h"
2014-07-13 18:40:13 +03:00
VCMI_LIB_NAMESPACE_BEGIN
2014-07-13 18:40:13 +03:00
class CGGarrison;
class CGCreature;
2016-08-30 04:13:45 +02:00
struct InfoAboutArmy;
struct InfoAboutHero;
struct InfoAboutTown;
2014-07-13 18:40:13 +03:00
class CArmedInstance;
class CGTownInstance;
class CGHeroInstance;
class AFactionMember;
VCMI_LIB_NAMESPACE_END
class CLabel;
class CTextBox;
2023-08-05 13:25:57 +02:00
class CGarrisonInt;
class CCreatureAnim;
class CComponent;
class CAnimImage;
2023-10-13 00:21:58 +02:00
class LRClickableArea;
2014-07-13 18:40:13 +03:00
/// Shows a text by moving the mouse cursor over the object
class CHoverableArea: public virtual CIntObject
2014-07-13 18:40:13 +03:00
{
public:
std::string hoverText;
2014-07-13 18:40:13 +03:00
virtual void hover (bool on) override;
2014-07-13 18:40:13 +03:00
CHoverableArea();
virtual ~CHoverableArea();
2014-07-13 18:40:13 +03:00
};
/// Can interact on left and right mouse clicks, plus it shows a text when by hovering over it
class LRClickableAreaWText: public CHoverableArea
2014-07-13 18:40:13 +03:00
{
public:
std::string text;
2014-07-13 18:40:13 +03:00
LRClickableAreaWText();
LRClickableAreaWText(const Rect & Pos, const std::string & HoverText = "", const std::string & ClickText = "");
virtual ~LRClickableAreaWText();
void init();
2014-07-13 18:40:13 +03:00
void clickPressed(const Point & cursorPosition) override;
void showPopupWindow(const Point & cursorPosition) override;
2014-07-13 18:40:13 +03:00
};
/// base class for hero/town/garrison tooltips
class CArmyTooltip : public CIntObject
{
std::shared_ptr<CLabel> title;
std::vector<std::shared_ptr<CAnimImage>> icons;
std::vector<std::shared_ptr<CLabel>> subtitles;
void init(const InfoAboutArmy & army);
2014-07-13 18:40:13 +03:00
public:
CArmyTooltip(Point pos, const InfoAboutArmy & army);
2014-07-13 18:40:13 +03:00
CArmyTooltip(Point pos, const CArmedInstance * army);
};
/// Class for hero tooltip. Does not have any background!
/// background for infoBox: ADSTATHR
/// background for tooltip: HEROQVBK
class CHeroTooltip : public CArmyTooltip
{
std::shared_ptr<CAnimImage> portrait;
std::vector<std::shared_ptr<CLabel>> labels;
std::shared_ptr<CAnimImage> morale;
std::shared_ptr<CAnimImage> luck;
void init(const InfoAboutHero & hero);
2014-07-13 18:40:13 +03:00
public:
CHeroTooltip(Point pos, const InfoAboutHero & hero);
2014-07-13 18:40:13 +03:00
CHeroTooltip(Point pos, const CGHeroInstance * hero);
};
/// Class for HD mod-like interactable infobox tooltip. Does not have any background!
2023-08-05 13:25:57 +02:00
class CInteractableHeroTooltip : public CIntObject
{
std::shared_ptr<CLabel> title;
std::shared_ptr<CAnimImage> portrait;
std::vector<std::shared_ptr<CLabel>> labels;
std::shared_ptr<CAnimImage> morale;
std::shared_ptr<CAnimImage> luck;
2023-08-05 13:25:57 +02:00
std::shared_ptr<CGarrisonInt> garrison;
void init(const InfoAboutHero & hero);
public:
CInteractableHeroTooltip(Point pos, const CGHeroInstance * hero);
};
2014-07-13 18:40:13 +03:00
/// Class for town tooltip. Does not have any background!
/// background for infoBox: ADSTATCS
/// background for tooltip: TOWNQVBK
class CTownTooltip : public CArmyTooltip
{
std::shared_ptr<CAnimImage> fort;
std::shared_ptr<CAnimImage> hall;
std::shared_ptr<CAnimImage> build;
std::shared_ptr<CLabel> income;
std::shared_ptr<CPicture> garrisonedHero;
std::shared_ptr<CAnimImage> res1;
std::shared_ptr<CAnimImage> res2;
void init(const InfoAboutTown & town);
2014-07-13 18:40:13 +03:00
public:
CTownTooltip(Point pos, const InfoAboutTown & town);
2014-07-13 18:40:13 +03:00
CTownTooltip(Point pos, const CGTownInstance * town);
2023-07-16 10:17:37 +02:00
};
/// Class for HD mod-like interactable infobox tooltip. Does not have any background!
2023-08-05 13:25:57 +02:00
class CInteractableTownTooltip : public CIntObject
2023-07-16 10:17:37 +02:00
{
std::shared_ptr<CLabel> title;
std::shared_ptr<CAnimImage> fort;
std::shared_ptr<CAnimImage> hall;
std::shared_ptr<CAnimImage> build;
std::shared_ptr<CLabel> income;
std::shared_ptr<CPicture> garrisonedHero;
std::shared_ptr<CAnimImage> res1;
std::shared_ptr<CAnimImage> res2;
2023-08-05 13:25:57 +02:00
std::shared_ptr<CGarrisonInt> garrison;
2023-10-13 00:21:58 +02:00
2023-10-13 23:36:51 +02:00
std::shared_ptr<LRClickableArea> fastTavern;
2023-10-13 00:21:58 +02:00
std::shared_ptr<LRClickableArea> fastMarket;
std::shared_ptr<LRClickableArea> fastTownHall;
std::shared_ptr<LRClickableArea> fastArmyPurchase;
2023-07-16 10:17:37 +02:00
2023-10-13 00:21:58 +02:00
void init(const CGTownInstance * town);
2023-07-16 10:17:37 +02:00
public:
CInteractableTownTooltip(Point pos, const CGTownInstance * town);
2014-07-13 18:40:13 +03:00
};
/// draws picture with creature on background, use Animated=true to get animation
class CCreaturePic : public CIntObject
{
private:
std::shared_ptr<CPicture> bg;
std::shared_ptr<CCreatureAnim> anim; //displayed animation
std::shared_ptr<CLabel> amount;
2014-07-13 18:40:13 +03:00
void show(Canvas & to) override;
2014-07-13 18:40:13 +03:00
public:
CCreaturePic(int x, int y, const CCreature * cre, bool Big=true, bool Animated=true);
void setAmount(int newAmount);
2014-07-13 18:40:13 +03:00
};
class CreatureTooltip : public CIntObject
{
std::shared_ptr<CAnimImage> creatureImage;
std::shared_ptr<CTextBox> tooltipTextbox;
public:
CreatureTooltip(Point pos, const CGCreature * creature);
};
2014-07-13 18:40:13 +03:00
/// Resource bar like that at the bottom of the adventure map screen
class CMinorResDataBar : public CIntObject
{
std::shared_ptr<CPicture> background;
std::string buildDateString();
2014-07-13 18:40:13 +03:00
public:
void show(Canvas & to) override;
void showAll(Canvas & to) override;
2017-07-17 23:04:00 +02:00
CMinorResDataBar();
~CMinorResDataBar();
2014-07-13 18:40:13 +03:00
};
2023-09-03 20:42:22 +02:00
/// Performs an action by left-clicking on it. Opens hero window by default
2014-07-13 18:40:13 +03:00
class CHeroArea: public CIntObject
{
public:
2023-09-03 20:42:22 +02:00
using ClickFunctor = std::function<void()>;
2014-07-13 18:40:13 +03:00
2023-09-03 20:42:22 +02:00
CHeroArea(int x, int y, const CGHeroInstance * hero);
void addClickCallback(ClickFunctor callback);
void clickPressed(const Point & cursorPosition) override;
void hover(bool on) override;
2023-09-03 20:42:22 +02:00
private:
const CGHeroInstance * hero;
std::shared_ptr<CAnimImage> portrait;
ClickFunctor clickFunctor;
ClickFunctor showPopupHandler;
2014-07-13 18:40:13 +03:00
};
/// Can interact on left and right mouse clicks
class LRClickableAreaWTextComp: public LRClickableAreaWText
{
public:
int type;
int baseType;
int bonusValue;
void clickPressed(const Point & cursorPosition) override;
void showPopupWindow(const Point & cursorPosition) override;
LRClickableAreaWTextComp(const Rect &Pos = Rect(0,0,0,0), int BaseType = -1);
std::shared_ptr<CComponent> createComponent() const;
};
2014-07-13 18:40:13 +03:00
/// Opens town screen by left-clicking on it
class LRClickableAreaOpenTown: public LRClickableAreaWTextComp
{
public:
const CGTownInstance * town;
void clickPressed(const Point & cursorPosition) override;
2016-11-27 17:17:20 +02:00
LRClickableAreaOpenTown(const Rect & Pos, const CGTownInstance * Town);
2014-07-13 18:40:13 +03:00
};
2023-10-13 00:21:58 +02:00
/// Can do action on click
class LRClickableArea: public CIntObject
{
std::function<void()> onClick;
std::function<void()> onPopup;
public:
void clickPressed(const Point & cursorPosition) override;
void showPopupWindow(const Point & cursorPosition) override;
LRClickableArea(const Rect & Pos, std::function<void()> onClick = nullptr, std::function<void()> onPopup = nullptr);
};
class MoraleLuckBox : public LRClickableAreaWTextComp
{
std::shared_ptr<CAnimImage> image;
public:
bool morale; //true if morale, false if luck
bool small;
void set(const AFactionMember *node);
MoraleLuckBox(bool Morale, const Rect &r, bool Small=false);
};
class TransparentFilledRectangle : public CIntObject
{
ColorRGBA color;
ColorRGBA colorLine;
bool drawLine;
public:
TransparentFilledRectangle(Rect position, ColorRGBA color);
TransparentFilledRectangle(Rect position, ColorRGBA color, ColorRGBA colorLine);
void showAll(Canvas & to) override;
};
class SimpleLine : public CIntObject
{
Point pos1;
Point pos2;
ColorRGBA color;
public:
SimpleLine(Point pos1, Point pos2, ColorRGBA color);
void showAll(Canvas & to) override;
};