struct CCL::ITouchInputManager

Overview

Low-level multi-touch input. More…

#include <imultitouch.h>

struct ITouchInputManager: public CCL::IUnknown
{
    // methods

    virtual tresult CCL_API processTouches (
        IWindow* window,
        const TouchEvent& event
    ) = 0;

    virtual tresult CCL_API discardTouches (IWindow* window) = 0;
};

Inherited Members

public:
    // 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;

Detailed Documentation

Low-level multi-touch input.

Methods

virtual tresult CCL_API processTouches (
    IWindow* window,
    const TouchEvent& event
) = 0

Process a touch event.

virtual tresult CCL_API discardTouches (IWindow* window) = 0

Discard all touches in a window.