comparison Framework/Widgets/PanMouseTracker.h @ 457:3b4df9925db6 am-touch-events

added support for 'touch' in mouse trackers. This is still a bit hacky and we need to refactor it to make it clean. Thanks to that, Pan and zoom are available together with 2 touches
author Alain Mazy <alain@mazy.be>
date Thu, 24 Jan 2019 16:42:27 +0100
parents b70e9be013e4
children 4f2416d519b4
comparison
equal deleted inserted replaced
456:b70fcc134ba4 457:3b4df9925db6
52 double zoom); 52 double zoom);
53 53
54 virtual void MouseMove(int displayX, 54 virtual void MouseMove(int displayX,
55 int displayY, 55 int displayY,
56 double x, 56 double x,
57 double y); 57 double y,
58 const std::vector<Touch>& displayTouches,
59 const std::vector<Touch>& sceneTouches);
58 }; 60 };
59 } 61 }