1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-10 15:39:02 +00:00
OpenMW/apps/openmw/mwgui/tooltips.hpp

31 lines
539 B
C++
Raw Normal View History

2012-04-14 15:47:44 +00:00
#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