diff options
author | Tor Lillqvist <tml@iki.fi> | 2013-04-12 15:06:03 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@iki.fi> | 2013-04-12 15:22:10 +0300 |
commit | a6e1f214c9c8c338da7cd216884e45e234e64669 (patch) | |
tree | 8c2f59039d7e6d71042eda883b0dcae0a0c576eb /vcl/android | |
parent | 80004068611191107c0f44cc5d3b29181b1ad157 (diff) |
Start implementing on-demand keyboard display for non-DESKTOP
Change-Id: I9321dcf9d863cb59eee9b2a012d887a17cb1b454
Diffstat (limited to 'vcl/android')
-rw-r--r-- | vcl/android/androidinst.cxx | 20 |
1 files changed, 17 insertions, 3 deletions
diff --git a/vcl/android/androidinst.cxx b/vcl/android/androidinst.cxx index cd0390b146c1..563769cb5b10 100644 --- a/vcl/android/androidinst.cxx +++ b/vcl/android/androidinst.cxx @@ -26,16 +26,20 @@ * in which case the provisions of the GPLv3+ or the LGPLv3+ are applicable * instead of those above. */ -#include <android/androidinst.hxx> -#include <headless/svpdummies.hxx> -#include <generic/gendata.hxx> + #include <jni.h> + #include <android/log.h> #include <android/looper.h> #include <android/bitmap.h> + +#include <android/androidinst.hxx> +#include <headless/svpdummies.hxx> +#include <generic/gendata.hxx> #include <osl/detail/android-bootstrap.h> #include <rtl/strbuf.hxx> #include <basebmp/scanlineformats.hxx> +#include <touch/touch.h> #define LOGTAG "LibreOffice/androidinst" #define LOGI(...) ((void)__android_log_print(ANDROID_LOG_INFO, LOGTAG, __VA_ARGS__)) @@ -554,4 +558,14 @@ Java_org_libreoffice_experimental_desktop_Desktop_scroll(JNIEnv * /* env */, LOGW("No focused frame to emit event on"); } +extern "C" void +lo_show_keyboard() +{ +} + +extern "C" void +lo_hide_keyboard() +{ +} + /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |