LibreOffice Module framework (master) 1
graphicnameaccess.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
21
23
24using namespace ::com::sun::star;
25
26namespace framework
27{
28
30{
31}
32
34{
35}
36
37void GraphicNameAccess::addElement( const OUString& rName, const uno::Reference< graphic::XGraphic >& rElement )
38{
39 m_aNameToElementMap.emplace( rName, rElement );
40}
41
42// XNameAccess
43uno::Any SAL_CALL GraphicNameAccess::getByName( const OUString& aName )
44{
45 NameGraphicHashMap::const_iterator pIter = m_aNameToElementMap.find( aName );
46 if ( pIter == m_aNameToElementMap.end() )
47 throw container::NoSuchElementException();
48 return uno::Any( pIter->second );
49}
50
51uno::Sequence< OUString > SAL_CALL GraphicNameAccess::getElementNames()
52{
53 if ( !m_aSeq.hasElements() )
54 {
56 }
57
58 return m_aSeq;
59}
60
61sal_Bool SAL_CALL GraphicNameAccess::hasByName( const OUString& aName )
62{
63 NameGraphicHashMap::const_iterator pIter = m_aNameToElementMap.find( aName );
64 return ( pIter != m_aNameToElementMap.end() );
65}
66
67// XElementAccess
69{
70 return ( !m_aNameToElementMap.empty() );
71}
72
74{
76}
77
78} // namespace framework
79
80/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
css::uno::Type const & get()
void addElement(const OUString &rName, const css::uno::Reference< css::graphic::XGraphic > &rElement)
virtual sal_Bool SAL_CALL hasElements() override
virtual css::uno::Sequence< OUString > SAL_CALL getElementNames() override
virtual css::uno::Any SAL_CALL getByName(const OUString &aName) override
virtual ~GraphicNameAccess() override
virtual sal_Bool SAL_CALL hasByName(const OUString &aName) override
css::uno::Sequence< OUString > m_aSeq
virtual css::uno::Type SAL_CALL getElementType() override
NameGraphicHashMap m_aNameToElementMap
OUString aName
css::uno::Sequence< typename M::key_type > mapKeysToSequence(M const &map)
unsigned char sal_Bool