Click here to Skip to main content
15,891,943 members
Articles / Programming Languages / C++

The Poor Man's Mouse Gesture

Rate me:
Please Sign up or sign in to vote.
4.84/5 (42 votes)
15 Jun 2005CPOL5 min read 88.1K   2.4K   55  
An easy to use class for adding basic mouse gesture recognition to your application.
// gesturetest.h : main header file for the GESTURETEST application
//

#if !defined(AFX_GESTURETEST_H__FE60260B_6FEB_499F_B5A1_4A9B1A1C46FB__INCLUDED_)
#define AFX_GESTURETEST_H__FE60260B_6FEB_499F_B5A1_4A9B1A1C46FB__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000

#ifndef __AFXWIN_H__
	#error include 'stdafx.h' before including this file for PCH
#endif

#include "resource.h"		// main symbols

/////////////////////////////////////////////////////////////////////////////
// CGesturetestApp:
// See gesturetest.cpp for the implementation of this class
//

class CGesturetestApp : public CWinApp
{
public:
	CGesturetestApp();

// Overrides
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CGesturetestApp)
	public:
	virtual BOOL InitInstance();
	//}}AFX_VIRTUAL

// Implementation

	//{{AFX_MSG(CGesturetestApp)
		// NOTE - the ClassWizard will add and remove member functions here.
		//    DO NOT EDIT what you see in these blocks of generated code !
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};


/////////////////////////////////////////////////////////////////////////////

//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.

#endif // !defined(AFX_GESTURETEST_H__FE60260B_6FEB_499F_B5A1_4A9B1A1C46FB__INCLUDED_)

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, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
President
Canada Canada
Father of two, brother of two, child of two.
Spouse to one, uncle to many, friend to lots.
Farmer, carpenter, mechanic, electrician, but definitely not a plumber.
Likes walks with the wife, board games, card games, travel, and camping in the summer.
High school graduate, college drop-out.
Hobby programmer who knows C++ with MFC and the STL.
Has dabbled with BASIC, Pascal, Fortran, COBOL, C#, SQL, ASM, and HTML.
Realized long ago that programming is fun when there is nobody pressuring you with schedules and timelines.

Comments and Discussions