tdf#35361 Add a Quick Look plugins for .od* files on macOS
[LibreOffice.git] / sw / source / uibase / config / dbconfig.cxx
blobfaac5dc67fbad7d40ef2134193f43738afe748bc
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
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/.
9 * This file incorporates work covered by the following license notice:
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 .
20 #include <dbconfig.hxx>
21 #include <osl/diagnose.h>
22 #include <com/sun/star/uno/Sequence.hxx>
23 #include <swdbdata.hxx>
25 using namespace utl;
26 using namespace com::sun::star::uno;
28 const Sequence<OUString>& SwDBConfig::GetPropertyNames()
30 static Sequence<OUString> aNames {
31 u"AddressBook/DataSourceName"_ustr, // 0
32 u"AddressBook/Command"_ustr, // 1
33 u"AddressBook/CommandType"_ustr, // 2
34 u"Bibliography/CurrentDataSource/DataSourceName"_ustr, // 4
35 u"Bibliography/CurrentDataSource/Command"_ustr, // 5
36 u"Bibliography/CurrentDataSource/CommandType"_ustr // 6
38 return aNames;
41 SwDBConfig::SwDBConfig() :
42 ConfigItem(u"Office.DataAccess"_ustr, ConfigItemMode::ReleaseTree)
46 SwDBConfig::~SwDBConfig()
48 m_pAdrImpl.reset();
49 m_pBibImpl.reset();
52 void SwDBConfig::Load()
54 const Sequence<OUString>& rNames = GetPropertyNames();
55 if (!m_pAdrImpl)
56 m_pAdrImpl.reset(new SwDBData);
57 if (!m_pBibImpl)
58 m_pBibImpl.reset(new SwDBData);
59 Sequence<Any> aValues = GetProperties(rNames);
60 const Any* pValues = aValues.getConstArray();
61 OSL_ENSURE(aValues.getLength() == rNames.getLength(), "GetProperties failed");
62 if(aValues.getLength() != rNames.getLength())
63 return;
65 for(int nProp = 0; nProp < rNames.getLength(); nProp++)
67 switch(nProp)
69 case 0: pValues[nProp] >>= m_pAdrImpl->sDataSource; break;
70 case 1: pValues[nProp] >>= m_pAdrImpl->sCommand; break;
71 case 2: pValues[nProp] >>= m_pAdrImpl->nCommandType; break;
72 case 3: pValues[nProp] >>= m_pBibImpl->sDataSource; break;
73 case 4: pValues[nProp] >>= m_pBibImpl->sCommand; break;
74 case 5: pValues[nProp] >>= m_pBibImpl->nCommandType; break;
79 const SwDBData& SwDBConfig::GetAddressSource()
81 if(!m_pAdrImpl)
82 Load();
83 return *m_pAdrImpl;
86 const SwDBData& SwDBConfig::GetBibliographySource()
88 if(!m_pBibImpl)
89 Load();
90 return *m_pBibImpl;
93 void SwDBConfig::ImplCommit() {}
94 void SwDBConfig::Notify( const css::uno::Sequence< OUString >& ) {}
96 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */