Content


NTL
Core
IHint

IHint


Describes hint.

You can find more information in comments below.

class IHint
{
public:
    virtual void Release() = 0; // Destroy instance 
    virtual void Render() = 0; // Should render itself. Called after form repaint specified clip rect 
    virtual void Show(const String &hint, const Point &pos, const Rect &client) = 0; // Show hint at specified position(or best one in client rect) 
    virtual void Hide(const bool immediately) = 0; // Hide hint if visible 
    virtual IHintService *QueryService() = 0; // Return service 
};
Namespace: nitisa
Include: Nitisa/Interfaces/IHint.h