Click here to Skip to main content
15,884,388 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.
///////////////////////////////////////////////////////////////
//
// Action.cpp
//
// Created: 04/10/2003
// Copyright (c) 2003 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.
//
///////////////////////////////////////////////////////////////

#include "stdafx.h"
#include "Action.h"

namespace Action
{
    const ACTION * GetActionMap()
    {
        static const ACTION ACTION_MAP[ Action::ACTION_COUNT ] =
        {
            ActionBase::GotoPrevious,
            ActionBase::GotoNext,
            ActionBase::GotoTop,
            ActionBase::GotoBottom,
            ActionBase::GoHome,
            ActionBase::Close,
            ActionBase::OpenNewForeWindow,
            ActionBase::OpenNewBackWindow,
            ActionBase::Refresh,
            ActionBase::Reload,
            ActionBase::Minimise,
            ActionBase::Restore,
            ActionBase::Duplicate,
            ActionBase::ScrollWindows
        };

        return ACTION_MAP;
    }

    LPCTSTR GetDescription( ActionIndex action )
    {
        static LPCTSTR ACTION_DESCN[ Action::ACTION_COUNT ] =
        {
            _T( "Goto previous document in history" ),
            _T( "Goto next document in history" ),
            _T( "Goto top of document" ),
            _T( "Goto bottom of document" ),
            _T( "Go Home" ),
            _T( "Close window" ),
            _T( "Open new foreground window" ),
            _T( "Open new background window" ),
            _T( "Refresh document" ),
            _T( "Reload document" ),
            _T( "Minimise window" ),           
            _T( "Restore window" ),
            _T( "Duplicate window" ),
            _T( "Scroll through open windows" ),
        };

        if( ( action >= 0 ) && ( action < ACTION_COUNT ) )
        {
            return ACTION_DESCN[ action ];
        }

        return _T( "Unmapped" );
    }
}

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