1
0
forked from 0ad/0ad
0ad/source/gui/CTooltip.h
janwas b755ddefda remove all author/modified by tags.
make include guards consistent.

This was SVN commit r5040.
2007-05-07 16:33:24 +00:00

32 lines
407 B
C++

/*
GUI Object - Tooltip
--Overview--
Mostly like CText, but intended for dynamic tooltips
*/
#ifndef INCLUDED_CTOOLTIP
#define INCLUDED_CTOOLTIP
#include "IGUITextOwner.h"
class CTooltip : public IGUITextOwner
{
GUI_OBJECT(CTooltip)
public:
CTooltip();
virtual ~CTooltip();
protected:
void SetupText();
virtual void HandleMessage(const SGUIMessage &Message);
virtual void Draw();
};
#endif