1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-15 22:19:54 +00:00
openmw-tes3mp/apps/openmw/mwgui/tooltips.hpp
2012-04-14 17:47:44 +02:00

30 lines
539 B
C++

#ifndef MWGUI_TOOLTIPS_H
#define MWGUI_TOOLTIPS_H
#include <openengine/gui/layout.hpp>
namespace MWGui
{
class ToolTips : public OEngine::GUI::Layout
{
public:
ToolTips();
void onFrame(float frameDuration);
void enterGameMode();
void enterGuiMode();
void adjustScreen(int screenWidth, int screenHeight);
private:
MyGUI::EditBox* mTextToolTip;
MyGUI::Widget* mTextToolTipBox;
MyGUI::Widget* mDynamicToolTipBox;
bool mGameMode;
};
}
#endif