Link to home
Start Free TrialLog in
Avatar of PMH4514
PMH4514

asked on

Adding Gestures/Touch to a legacy VC++ 6.0 app in Win7

My application is built in Visual C++  6.0.   Think of it like a video game in the way the entire UI is rendered graphically at ~45fps and looks nothing like windows.

Lately I am interested in adding touch and gestures support which I understand should be available in Windows 7 if an appropriate monitor is used. (simple touch, swipe and hopefully pinch). The interface is already designed in a way that visually it would make sense.

Will I have to upgrade to a more recent version of Visual Studio and port the project over before being able to use some of these capabilities?  Are there special development libraries I'll need? My preference is to maintain the old visual studio on a new windows 7 box just to keep things simple since it's not broken, unless there's no choice to move forward.

Thanks for any insight!

Avatar of David Johnson, CD
David Johnson, CD
Flag of Canada image

Here is a starting place http://archive.msdn.microsoft.com/WindowsTouch

Visual C++  6.0 might be a hindrance, Visual Studio Express C++ can be downloaded here

A more fruitful investment in time might be the Windows 8 for Developers System

ASKER CERTIFIED SOLUTION
Avatar of jkr
jkr
Flag of Germany image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of PMH4514
PMH4514

ASKER

Interesting, thanks I'll check these out.

If I could simply get the touch events into the MFC message pump, I'd be happy with that!
>>If I could simply get the touch events into the MFC message pump, I'd be
>>happy with that!

It is not all that simple - you can get a WM_GESTURE, but need some APIs to extract the info of interest...