summaryrefslogtreecommitdiff
path: root/ios/shared
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2013-10-18 15:38:46 +0300
committerTor Lillqvist <tml@collabora.com>2013-10-18 15:45:20 +0300
commit459e3a26a48a4f035807cfa1711f569b5fd3fec4 (patch)
treec887517e5b81a1d52aca131c01141fc1e033fbde /ios/shared
parent24f8446c9e7d1a0ea01cc11ca87abf85ba43342d (diff)
Add dummy touch_ui_selection_start()
Change-Id: Id3854de1bcb8d5856d56e96895ff3bbf2e4aa666
Diffstat (limited to 'ios/shared')
-rw-r--r--ios/shared/ios_sharedlo/objective_c/gestures/MLOGestureEngine.m16
1 files changed, 15 insertions, 1 deletions
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);
+ }
+}