1
0
mirror of https://github.com/vcmi/vcmi.git synced 2024-11-24 08:32:34 +02:00
vcmi/client/windows/CQuestLog.h
Alexander Shishkin 5c09f751b3 Gui cleanup3 - UI refactoring to use smart pointers (#440)
* Changed most gui classes to use shared pointers
* Store and use IImage as shared_ptr
* CSpellWindow redesign
* AdventureMapClasses cleanup
* CLabel: store background as smart pointer
* Store CObjectList items as smart pointers
* Removed destroy function of list item
* Store toggle buttons as smart pointers
* Use CComponent as smart pointer
* Attempt to fix artifact merchant drawing
2018-04-07 18:34:11 +07:00

107 lines
3.0 KiB
C++

/*
* CQuestLog.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/AdventureMapClasses.h"
#include "../widgets/TextControls.h"
#include "../widgets/MiscWidgets.h"
#include "../widgets/Images.h"
#include "CWindowObject.h"
class CCreature;
class CStackInstance;
class CButton;
class CToggleButton;
class CGHeroInstance;
class CComponentBox;
class LRClickableAreaWText;
class CButton;
class CPicture;
class CCreaturePic;
class LRClickableAreaWTextComp;
class CSlider;
class CLabel;
struct QuestInfo;
const int QUEST_COUNT = 6;
const int DESCRIPTION_HEIGHT_MAX = 355;
class CQuestLabel : public LRClickableAreaWText, public CMultiLineLabel
{
public:
std::function<void()> callback;
CQuestLabel(Rect position, EFonts Font = FONT_SMALL, EAlignment Align = TOPLEFT, const SDL_Color &Color = Colors::WHITE, const std::string &Text = "")
: CMultiLineLabel (position, FONT_SMALL, TOPLEFT, Colors::WHITE, Text){};
void clickLeft(tribool down, bool previousState) override;
void showAll(SDL_Surface * to) override;
};
class CQuestIcon : public CAnimImage
{
public:
std::function<void()> callback; //TODO: merge with other similar classes?
CQuestIcon(const std::string &defname, int index, int x=0, int y=0);
void clickLeft(tribool down, bool previousState) override;
void showAll(SDL_Surface * to) override;
};
class CQuestMinimap : public CMinimap
{
std::vector<std::shared_ptr<CQuestIcon>> icons;
void clickLeft(tribool down, bool previousState) override{}; //minimap ignores clicking on its surface
void iconClicked();
void mouseMoved (const SDL_MouseMotionEvent & sEvent) override{};
public:
const QuestInfo * currentQuest;
CQuestMinimap(const Rect & position);
//should be called to invalidate whole map - different player or level
void update();
void addQuestMarks (const QuestInfo * q);
void showAll(SDL_Surface * to) override;
};
class CQuestLog : public CWindowObject
{
int questIndex;
const QuestInfo * currentQuest;
std::shared_ptr<CComponentBox> componentsBox;
bool hideComplete;
std::shared_ptr<CToggleButton> hideCompleteButton;
std::shared_ptr<CLabel> hideCompleteLabel;
const std::vector<QuestInfo> quests;
std::vector<std::shared_ptr<CQuestLabel>> labels;
std::shared_ptr<CTextBox> description;
std::shared_ptr<CQuestMinimap> minimap;
std::shared_ptr<CSlider> slider; //scrolls quests
std::shared_ptr<CButton> ok;
public:
CQuestLog(const std::vector<QuestInfo> & Quests);
~CQuestLog(){};
void selectQuest (int which, int labelId);
void updateMinimap (int which){};
void printDescription (int which){};
void sliderMoved (int newpos);
void recreateLabelList();
void recreateQuestList (int pos);
void toggleComplete(bool on);
void showAll (SDL_Surface * to) override;
};