struct CCL::TooltipEvent

Overview

Tooltip Event. More…

#include <guievent.h>

struct TooltipEvent: public CCL::GUIEvent
{
    // enums

    enum EventType;

    // fields

    ITooltipPopup& tooltip;
    Point where;

    // construction

    TooltipEvent (
        ITooltipPopup& tooltip,
        int type = kShow,
        const Point& where = Point ()
    );
};

Inherited Members

public:
    // enums

    enum EventClass;

    // fields

    int eventClass;
    int eventType;
    double eventTime;

    // methods

    template  <class Event>
    const Event* as () const;

    const PointerEvent* as () const;

Detailed Documentation

Tooltip Event.

<>