fdo#74697 Add Bluez 5 support for impress remote.
[LibreOffice.git] / include / touch / touch.h
blob8fa2dd16d26cfda7f3d7cb625cd182d1f86652e6
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * Copyright 2013 LibreOffice contributors.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 */
10 #ifndef INCLUDED_TOUCH_TOUCH_H
11 #define INCLUDED_TOUCH_TOUCH_H
13 #include <config_features.h>
15 #if !HAVE_FEATURE_DESKTOP
17 // Functions to be implemented by the app-specifc upper or less
18 // app-specific but platform-specific medium layer on touch-based
19 // platforms. The same API is used on each such platform. There are
20 // called from low level LibreOffice code. Note that these are just
21 // declared here in this header in the "touch" module, the
22 // per-platform implementations are elsewhere.
24 #ifdef __cplusplus
25 extern "C" {
26 #endif
28 void lo_show_keyboard();
29 void lo_hide_keyboard();
31 // Functions to be implemented in the medium platform-specific layer
32 // to be called from the app-specific UI layer.
34 void lo_keyboard_did_hide();
36 #ifdef __cplusplus
38 #endif
40 #endif // HAVE_FEATURE_DESKTOP
42 #endif // INCLUDED_TOUCH_TOUCH_H
44 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */