From 459e3a26a48a4f035807cfa1711f569b5fd3fec4 Mon Sep 17 00:00:00 2001 From: Tor Lillqvist Date: Fri, 18 Oct 2013 15:38:46 +0300 Subject: Add dummy touch_ui_selection_start() Change-Id: Id3854de1bcb8d5856d56e96895ff3bbf2e4aa666 --- .../ios_sharedlo/objective_c/gestures/MLOGestureEngine.m | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) (limited to 'ios/shared') diff --git a/ios/shared/ios_sharedlo/objective_c/gestures/MLOGestureEngine.m b/ios/shared/ios_sharedlo/objective_c/gestures/MLOGestureEngine.m index 3fe9c7280cdc..3523dcab36a1 100644 --- a/ios/shared/ios_sharedlo/objective_c/gestures/MLOGestureEngine.m +++ b/ios/shared/ios_sharedlo/objective_c/gestures/MLOGestureEngine.m @@ -455,4 +455,18 @@ static const BOOL ENABLE_LO_EVENTS_DURING_PINCH = NO; @end - +void touch_ui_selection_start(MLOSelectionKind kind, + const void *documentHandle, + MLORect *rectangles, + int rectangleCount, + void *preview){ + // Note that this is called on the LO thread + NSLog(@"==> touch_ui_selection_start"); + for(size_t i = 0; i < rectangleCount; ++i){ + NSLog(@" %fx%f@(%f,%f)", + rectangles[i].size.width, + rectangles[i].size.height, + rectangles[i].origin.x, + rectangles[i].origin.y); + } +} -- cgit