tdf#161658 Limit new selection overlay to Calc only
[libreoffice.git] / config_host / config_feature_desktop.h.in
blob489f684afead5081e63ad3ed42a877028df672b7
1 /* A feature split out from config_features.h because it affects many files.
2 */
4 #ifndef CONFIG_FEATURE_DESKTOP_H
5 #define CONFIG_FEATURE_DESKTOP_H
7 /* DESKTOP - Whether we have a "normal" desktop UI or not.
9 * Non-DESKTOP in practice means touch-based mobile devices, Android
10 * or iOS for now. Support for those is work in progress.
12 * Non-DESKTOP implies that the OS makes sure that only one instance
13 * of each LibreOffice-based "app" at a time can be running, and thus
14 * the LibreOffice code does not need to handle such things itself.
16 * Non-DESKTOP implies no traditional inter-app drag and drop concept.
18 * Non-DESKTOP implies no traditional help mechanism, and to some
19 * extent (as noticed, and as possible without making the code too
20 * ugly) the related code is ifdeffed out.
22 * Non-DESKTOP implies no traditional desktop-style GUI elements like
23 * toolbars and scrollbars presented by the LO code.
26 #define HAVE_FEATURE_DESKTOP 0
28 #endif