mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-15 21:19:57 +00:00
34 lines
612 B
C++
34 lines
612 B
C++
#ifndef OPENMW_MWGUI_MERCHANTREPAIR_H
|
|
#define OPENMW_MWGUI_MERCHANTREPAIR_H
|
|
|
|
#include "windowbase.hpp"
|
|
#include "../mwworld/ptr.hpp"
|
|
|
|
namespace MWGui
|
|
{
|
|
|
|
class MerchantRepair : public WindowBase
|
|
{
|
|
public:
|
|
MerchantRepair();
|
|
|
|
virtual void onOpen();
|
|
|
|
void setPtr(const MWWorld::Ptr& actor);
|
|
|
|
private:
|
|
MyGUI::ScrollView* mList;
|
|
MyGUI::Button* mOkButton;
|
|
MyGUI::TextBox* mGoldLabel;
|
|
|
|
MWWorld::Ptr mActor;
|
|
|
|
protected:
|
|
void onMouseWheel(MyGUI::Widget* _sender, int _rel);
|
|
void onRepairButtonClick(MyGUI::Widget* sender);
|
|
void onOkButtonClick(MyGUI::Widget* sender);
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|