Add lo_keyboard_did_hide() and improve comment

Change-Id: I20ae40fa03079d69f7ce9e71fa4ef6264e8d84a4
This commit is contained in:
Tor Lillqvist
2013-04-13 13:03:40 +03:00
parent 7f93d63ae2
commit ab49b49f04

View File

@@ -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