android: Update app-specific/MIME type icons
[LibreOffice.git] / sw / source / uibase / config / dbconfig.cxx
blob863593163d3b753b1b61c47c135e22faff5cf58f
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 "AddressBook/DataSourceName", // 0
32 "AddressBook/Command", // 1
33 "AddressBook/CommandType", // 2
34 "Bibliography/CurrentDataSource/DataSourceName", // 4
35 "Bibliography/CurrentDataSource/Command", // 5
36 "Bibliography/CurrentDataSource/CommandType" // 6
38 return aNames;
41 SwDBConfig::SwDBConfig() :
42 ConfigItem("Office.DataAccess", 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)
57 m_pAdrImpl.reset(new SwDBData);
58 m_pAdrImpl->nCommandType = 0;
59 m_pBibImpl.reset(new SwDBData);
60 m_pBibImpl->nCommandType = 0;
62 Sequence<Any> aValues = GetProperties(rNames);
63 const Any* pValues = aValues.getConstArray();
64 OSL_ENSURE(aValues.getLength() == rNames.getLength(), "GetProperties failed");
65 if(aValues.getLength() != rNames.getLength())
66 return;
68 for(int nProp = 0; nProp < rNames.getLength(); nProp++)
70 switch(nProp)
72 case 0: pValues[nProp] >>= m_pAdrImpl->sDataSource; break;
73 case 1: pValues[nProp] >>= m_pAdrImpl->sCommand; break;
74 case 2: pValues[nProp] >>= m_pAdrImpl->nCommandType; break;
75 case 3: pValues[nProp] >>= m_pBibImpl->sDataSource; break;
76 case 4: pValues[nProp] >>= m_pBibImpl->sCommand; break;
77 case 5: pValues[nProp] >>= m_pBibImpl->nCommandType; break;
82 const SwDBData& SwDBConfig::GetAddressSource()
84 if(!m_pAdrImpl)
85 Load();
86 return *m_pAdrImpl;
89 const SwDBData& SwDBConfig::GetBibliographySource()
91 if(!m_pBibImpl)
92 Load();
93 return *m_pBibImpl;
96 void SwDBConfig::ImplCommit() {}
97 void SwDBConfig::Notify( const css::uno::Sequence< OUString >& ) {}
99 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */