Default implementation of a hint. Form uses it to display hints.
You can find more information in comments below. Overrided methods can be found in corresponding base interface.
class CHint :public virtual IHint
{
public:
void Release() override;
void Render() override;
void Show(const String &hint, const Point &pos, const Rect &client) override;
void Hide(const bool immediately) override;
IHintService *QueryService() override;
CHint();
virtual ~CHint();
};
Namespace: | nitisa |
Include: | Nitisa/Core/Hint.h |