Click here to Skip to main content
15,895,084 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.
///////////////////////////////////////////////////////////////
//
// TrackBarCtrlEx.h
//
// Created: 25/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 __TRACKBARCTRLEX_D6CC3FFE_0668_4354_A1BC_8CB00F9005A5
#define __TRACKBARCTRLEX_D6CC3FFE_0668_4354_A1BC_8CB00F9005A5

/**
 * Specialisation of a CTrackBarCtrl which forwards
 * TTN_NEEDTEXTW messages (sent by the track bar when its
 * about to display/update a tooltip) to the parent window.
 **/
class TrackBarCtrlEx : 
    public CWindowImpl< TrackBarCtrlEx >,
    public CTrackBarCtrl
{
public:
	BEGIN_MSG_MAP( TrackBarCtrlEx )
        NOTIFY_CODE_HANDLER( TTN_NEEDTEXTW, OnNeedTextW );
    END_MSG_MAP()

    TrackBarCtrlEx & operator = ( HWND hWnd );

//
// Both CWindowImpl<> and CTrackBarCtrl contain
// EnableWindow and m_hWnd. The using declaration
// tells the compiler which one we want to refer to
//
    using CWindowImpl< TrackBarCtrlEx >::EnableWindow;
    using CWindowImpl< TrackBarCtrlEx >::m_hWnd;

private:
    LRESULT OnNeedTextW( int, LPNMHDR pNMHDR, BOOL & );
};

#endif // __TRACKBARCTRLEX_D6CC3FFE_0668_4354_A1BC_8CB00F9005A5

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