summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTor Lillqvist <tml@iki.fi>2013-04-13 13:03:40 +0300
committerTor Lillqvist <tml@iki.fi>2013-04-13 20:59:03 +0300
commitab49b49f04a3dd9d3a530193798983d540c031d4 (patch)
treeee54661bf09e886b3877a29e7a81c07cb411969e
parent7f93d63ae26a8b2fbf0b9044a5c4e5abba4f86fd (diff)
Add lo_keyboard_did_hide() and improve comment
Change-Id: I20ae40fa03079d69f7ce9e71fa4ef6264e8d84a4
-rw-r--r--touch/inc/touch/touch.h15
1 files changed, 11 insertions, 4 deletions
diff --git a/touch/inc/touch/touch.h b/touch/inc/touch/touch.h
index 87fe9854d6d2..8fa2dd16d26c 100644
--- a/touch/inc/touch/touch.h
+++ b/touch/inc/touch/touch.h
@@ -14,10 +14,12 @@
#if !HAVE_FEATURE_DESKTOP
-// Functions to be implemented by the upper/medium layers on
-// non-desktop touch-based platforms, with the same API on each such
-// platform. Note that these are just declared here in this header in
-// the "touch" module, the per-platform implementations are elsewhere.
+// Functions to be implemented by the app-specifc upper or less
+// app-specific but platform-specific medium layer on touch-based
+// platforms. The same API is used on each such platform. There are
+// called from low level LibreOffice code. Note that these are just
+// declared here in this header in the "touch" module, the
+// per-platform implementations are elsewhere.
#ifdef __cplusplus
extern "C" {
@@ -26,6 +28,11 @@ extern "C" {
void lo_show_keyboard();
void lo_hide_keyboard();
+// Functions to be implemented in the medium platform-specific layer
+// to be called from the app-specific UI layer.
+
+void lo_keyboard_did_hide();
+
#ifdef __cplusplus
}
#endif