Click here to Skip to main content
15,896,154 members
Articles / Web Development / HTML

Mouse Gestures for Internet Explorer

Rate me:
Please Sign up or sign in to vote.
4.84/5 (99 votes)
21 Sep 200514 min read 1.3M   13.4K   235  
Adding mouse gesture recognition to Internet Explorer.
///////////////////////////////////////////////////////////////
//
// MouseTrackerEx.h
//
// Created: 27/06/2005
// Copyright (c) 2005 Ralph Hare (ralph.hare@ysgyfarnog.co.uk)
// All rights reserved.
//
// The code and information is provided "as-is" without
// warranty of any kind, either expressed or implied.
//
///////////////////////////////////////////////////////////////

#ifndef __MOUSETRACKEREX_H_8736746F_0434_41FD_B67F_EFD86859078A
#define __MOUSETRACKEREX_H_8736746F_0434_41FD_B67F_EFD86859078A

#include "MouseTracker.h"
#include "TrailWindow.h"
#include <memory>

/**
 * MouseTrackerEx implements a specialisation of the MouseTracker object
 * which maintains its own MouseTrail object. This is used in conjunction
 * with TrailsPage objects to allow the user to try different trail
 * settings without affecting the main trail singleton
 **/
class MouseTrackerEx : public MouseTracker
{
public:
    MouseTrackerEx();

    void UpdateSettings(
                COLORREF clr,
                long thickness,
                BYTE transparency,
                long fadeSpeed
                );

// not implemented
private:
    MouseTrackerEx( const MouseTrackerEx & );
    MouseTrackerEx & operator = ( const MouseTrackerEx & );

private:
    MouseTrail * GetTrail();

private:
    std::auto_ptr< TrailWindow >   m_pTrail;
};

#endif // __MOUSETRACKEREX_H_8736746F_0434_41FD_B67F_EFD86859078A

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Web Developer
United Kingdom United Kingdom
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions