LibreOffice Module sc (master) 1
addincfg.cxx
Go to the documentation of this file.
1/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2/*
3 * This file is part of the LibreOffice project.
4 *
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 *
9 * This file incorporates work covered by the following license notice:
10 *
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
18 */
19
20#include <com/sun/star/uno/Sequence.hxx>
21
22#include <sal/log.hxx>
23
24#include <global.hxx>
25#include <addincol.hxx>
26#include <addincfg.hxx>
27#include <scmod.hxx>
28#include <sc.hrc>
29
30using namespace com::sun::star;
31
32constexpr OUStringLiteral CFGPATH_ADDINS = u"Office.CalcAddIns/AddInInfo";
33
35 : ConfigItem(CFGPATH_ADDINS)
36{
37 EnableNotification({ {} });
38}
39
40void ScAddInCfg::ImplCommit() { SAL_WARN("sc", "ScAddInCfg shouldn't be modified"); }
41
42void ScAddInCfg::Notify(const uno::Sequence<OUString>&)
43{
44 // forget all add-in information, re-initialize when needed next time
46
47 // function list must also be rebuilt, but can't be modified while function
48 // autopilot is open (function list for autopilot is then still old)
49 if (SC_MOD()->GetCurRefDlgId() != SID_OPENDLG_FUNCTION)
51}
52
53/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
constexpr OUStringLiteral CFGPATH_ADDINS
Definition: addincfg.cxx:32
virtual void Notify(const css::uno::Sequence< OUString > &aPropertyNames) override
Definition: addincfg.cxx:42
virtual void ImplCommit() override
Definition: addincfg.cxx:40
static void ResetFunctionList()
Definition: global.cxx:644
static SC_DLLPUBLIC ScUnoAddInCollection * GetAddInCollection()
Definition: global.cxx:283
bool EnableNotification(const css::uno::Sequence< OUString > &rNames, bool bEnableInternalNotification=false)
float u
#define SAL_WARN(area, stream)
#define SC_MOD()
Definition: scmod.hxx:247