2020-07-02 08:57:22 -05:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4; fill-column: 100 -*- */
|
|
|
|
/*
|
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <cstdlib>
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
#include <Log.hpp>
|
|
|
|
|
|
|
|
inline void setupKitEnvironment(const std::string& userInterface)
|
|
|
|
{
|
|
|
|
// Setup & check environment
|
|
|
|
const std::string layers(
|
|
|
|
"xcsxcu:${BRAND_BASE_DIR}/share/registry "
|
|
|
|
"res:${BRAND_BASE_DIR}/share/registry "
|
|
|
|
"bundledext:${${BRAND_BASE_DIR}/program/lounorc:BUNDLED_EXTENSIONS_USER}/registry/com.sun.star.comp.deployment.configuration.PackageRegistryBackend/configmgr.ini "
|
|
|
|
"sharedext:${${BRAND_BASE_DIR}/program/lounorc:SHARED_EXTENSIONS_USER}/registry/com.sun.star.comp.deployment.configuration.PackageRegistryBackend/configmgr.ini "
|
|
|
|
"userext:${${BRAND_BASE_DIR}/program/lounorc:UNO_USER_PACKAGES_CACHE}/registry/com.sun.star.comp.deployment.configuration.PackageRegistryBackend/configmgr.ini "
|
|
|
|
#ifdef IOS
|
|
|
|
"user:*${BRAND_BASE_DIR}/loolkitconfig.xcu "
|
|
|
|
#elif ENABLE_DEBUG && !defined(ANDROID) // '*' denotes non-writable.
|
|
|
|
"user:*file://" DEBUG_ABSSRCDIR "/loolkitconfig.xcu "
|
|
|
|
#else
|
|
|
|
"user:*file://" LOOLWSD_CONFIGDIR "/loolkitconfig.xcu "
|
|
|
|
#endif
|
|
|
|
);
|
|
|
|
::setenv("CONFIGURATION_LAYERS", layers.c_str(),
|
|
|
|
1 /* override */);
|
|
|
|
|
|
|
|
#if !MOBILEAPP
|
|
|
|
// No-caps tracing can spawn eg. glxinfo & other oddness.
|
|
|
|
unsetenv("DISPLAY");
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// Set various options we need.
|
|
|
|
std::string options = "unipoll";
|
|
|
|
#if !MOBILEAPP
|
|
|
|
if (Log::logger().trace())
|
|
|
|
options += ":profile_events";
|
|
|
|
#endif
|
|
|
|
|
|
|
|
if (userInterface == "notebookbar")
|
|
|
|
options += ":notebookbar";
|
|
|
|
|
|
|
|
// options += ":sc_no_grid_bg"; // leave this disabled for now, merged-cells needs more work.
|
2020-07-05 12:57:59 -05:00
|
|
|
|
|
|
|
options += ":sc_print_twips_msgs";
|
|
|
|
|
2020-07-02 08:57:22 -05:00
|
|
|
::setenv("SAL_LOK_OPTIONS", options.c_str(), 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|