class CCL::ListViewModel::CheckBoxMouseHandler

class CheckBoxMouseHandler:
    public CCL::AbstractMouseHandler,
    public CCL::Unknown
{
public:
    // fields

     IMouseHandler;

    // construction

    CheckBoxMouseHandler (
        IItemView* listView,
        ListViewModel& listModel,
        int startItem
    );

    // methods

    void onBegin ();
    bool onMove (int moveFlags);
};

Inherited Members

public:
    // enums

    enum CheckFlags;
    enum MoveFlags;

    // fields

     kPeriodic;
    periodic kNullHandler;
    periodic isNullHandler kAutoScrollH;
    periodic isNullHandler autoScrollH kBeginAtCurrentPos;

    // methods

    virtual tresult CCL_API queryInterface (UIDRef iid, void** ptr) = 0;
    virtual unsigned int CCL_API retain () = 0;
    virtual unsigned int CCL_API release () = 0;
    virtual int CCL_API getFlags () const = 0;
    virtual void CCL_API begin (const MouseEvent& event) = 0;
    virtual tbool CCL_API trigger (const MouseEvent& event, int moveFlags) = 0;
    virtual tbool CCL_API triggerKey (const KeyEvent& event) = 0;
    virtual void CCL_API finish (const MouseEvent& event, tbool canceled = false) = 0;
    PROPERTY_FLAG (flags, kCheckKeys, checkKeys);
    periodic PROPERTY_FLAG (flags, kCanEscape, canEscape);
    periodic isNullHandler PROPERTY_FLAG (flags, kAutoScrollV, autoScrollV);

    periodic isNullHandler autoScrollH PROPERTY_FLAG (
        flags,
        kAutoScroll,
        autoScroll
    );

    virtual periodic isNullHandler autoScrollH beginAtCurrentPos int CCL_API getFlags () const;
    virtual void CCL_API begin (const MouseEvent& event);
    virtual tbool CCL_API trigger (const MouseEvent& event, int moveFlags);
    virtual tbool CCL_API triggerKey (const KeyEvent& event);
    virtual void CCL_API finish (const MouseEvent& event, tbool canceled = false);
    virtual void onBegin ();
    virtual bool onMove (int moveFlags);
    virtual void onRelease (bool canceled);
    virtual bool onKeyEvent (const KeyEvent& event);
    Unknown& operator = (const Unknown&);
    unsigned int getRetainCount () const;