1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-08 09:37:53 +00:00
OpenMW/apps/openmw/mwgui/spellbuyingwindow.hpp
2023-08-20 17:49:56 +02:00

62 lines
1.5 KiB
C++

#ifndef MWGUI_SpellBuyingWINDOW_H
#define MWGUI_SpellBuyingWINDOW_H
#include "referenceinterface.hpp"
#include "windowbase.hpp"
#include <components/esm/refid.hpp>
namespace ESM
{
struct Spell;
}
namespace MyGUI
{
class Gui;
class Widget;
}
namespace MWGui
{
class SpellBuyingWindow : public ReferenceInterface, public WindowBase
{
public:
SpellBuyingWindow();
void setPtr(const MWWorld::Ptr& actor) override;
void setPtr(const MWWorld::Ptr& actor, int startOffset);
void onFrame(float dt) override { checkReferenceAvailable(); }
void clear() override { resetReference(); }
void onResChange(int, int) override { center(); }
std::string_view getWindowIdForLua() const override { return "SpellBuying"; }
protected:
MyGUI::Button* mCancelButton;
MyGUI::TextBox* mPlayerGold;
MyGUI::ScrollView* mSpellsView;
std::map<MyGUI::Widget*, ESM::RefId> mSpellsWidgetMap;
void onCancelButtonClicked(MyGUI::Widget* _sender);
void onSpellButtonClick(MyGUI::Widget* _sender);
void onMouseWheel(MyGUI::Widget* _sender, int _rel);
void addSpell(const ESM::Spell& spell);
void clearSpells();
int mCurrentY;
void updateLabels();
void onReferenceUnavailable() override;
bool playerHasSpell(const ESM::RefId& id);
private:
static bool sortSpells(const ESM::Spell* left, const ESM::Spell* right);
};
}
#endif