mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-03 17:37:18 +00:00
6db936bb3a
- Removed duplicate code - Fixed missing magic backgrounds during item drag&drop - Change background texture used for HUD icons
47 lines
698 B
C++
47 lines
698 B
C++
#ifndef OPENMW_MWGUI_RECHARGE_H
|
|
#define OPENMW_MWGUI_RECHARGE_H
|
|
|
|
#include "windowbase.hpp"
|
|
|
|
#include "../mwworld/ptr.hpp"
|
|
|
|
namespace MWGui
|
|
{
|
|
|
|
class ItemWidget;
|
|
|
|
class Recharge : public WindowBase
|
|
{
|
|
public:
|
|
Recharge();
|
|
|
|
virtual void open();
|
|
|
|
virtual void exit();
|
|
|
|
void start (const MWWorld::Ptr& gem);
|
|
|
|
protected:
|
|
MyGUI::Widget* mBox;
|
|
MyGUI::ScrollView* mView;
|
|
|
|
MyGUI::Widget* mGemBox;
|
|
|
|
ItemWidget* mGemIcon;
|
|
|
|
MyGUI::TextBox* mChargeLabel;
|
|
|
|
MyGUI::Button* mCancelButton;
|
|
|
|
void updateView();
|
|
|
|
void onItemClicked (MyGUI::Widget* sender);
|
|
void onCancel (MyGUI::Widget* sender);
|
|
void onMouseWheel(MyGUI::Widget* _sender, int _rel);
|
|
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|