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.
53 lines
1.1 KiB
C++
53 lines
1.1 KiB
C++
#ifndef MWGUI_TravelWINDOW_H
|
|
#define MWGUI_TravelWINDOW_H
|
|
|
|
|
|
#include "windowbase.hpp"
|
|
#include "referenceinterface.hpp"
|
|
|
|
namespace MyGUI
|
|
{
|
|
class Gui;
|
|
class Widget;
|
|
}
|
|
|
|
namespace MWGui
|
|
{
|
|
class WindowManager;
|
|
}
|
|
|
|
|
|
namespace MWGui
|
|
{
|
|
class TravelWindow : public ReferenceInterface, public WindowBase
|
|
{
|
|
public:
|
|
TravelWindow();
|
|
|
|
void setPtr (const MWWorld::Ptr& actor);
|
|
|
|
protected:
|
|
MyGUI::Button* mCancelButton;
|
|
MyGUI::TextBox* mPlayerGold;
|
|
MyGUI::TextBox* mDestinations;
|
|
MyGUI::TextBox* mSelect;
|
|
|
|
MyGUI::ScrollView* mDestinationsView;
|
|
|
|
void onCancelButtonClicked(MyGUI::Widget* _sender);
|
|
void onTravelButtonClick(MyGUI::Widget* _sender);
|
|
void onMouseWheel(MyGUI::Widget* _sender, int _rel);
|
|
void addDestination(const std::string& name, ESM::Position pos, bool interior);
|
|
void clearDestinations();
|
|
int mCurrentY;
|
|
|
|
static const int sLineHeight;
|
|
|
|
void updateLabels();
|
|
|
|
virtual void onReferenceUnavailable();
|
|
};
|
|
}
|
|
|
|
#endif
|