Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Accessing Apple Magic Trackpad input data in a C++ program

I'd like to read trackpad multitouch gesture and coordinate data into my C++ program. Where can I find some introductory tutorials on doing this?

like image 801
daj Avatar asked Apr 26 '13 17:04

daj


1 Answers

You should take a look at Cocoa Event Handling Guide.
To use Cocoa frameworks in your C++ program use Objective-C++.

like image 73
cody Avatar answered Sep 28 '22 04:09

cody