You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
openmw-tes3mp/apps/openmw/mwgui/repair.hpp

49 lines
747 B
C++

#ifndef OPENMW_MWGUI_REPAIR_H
#define OPENMW_MWGUI_REPAIR_H
#include "windowbase.hpp"
#include "../mwmechanics/repair.hpp"
namespace MWGui
{
class ItemWidget;
class ItemChargeView;
class Repair : public WindowBase
{
public:
Repair();
virtual void open();
virtual void exit();
void startRepairItem (const MWWorld::Ptr& item);
protected:
ItemChargeView* mRepairBox;
MyGUI::Widget* mToolBox;
ItemWidget* mToolIcon;
MyGUI::TextBox* mUsesLabel;
MyGUI::TextBox* mQualityLabel;
MyGUI::Button* mCancelButton;
MWMechanics::Repair mRepair;
void updateRepairView();
void onRepairItem(MyGUI::Widget* sender, const MWWorld::Ptr& ptr);
void onCancel(MyGUI::Widget* sender);
};
}
#endif