fix baseline build (old cairo) - 'cairo_rectangle_int_t' does not name a type
[LibreOffice.git] / framework / source / uiconfiguration / graphicnameaccess.cxx
blobe81a797971816eb1e292d9a2018030e6f21e7e3d
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 <uiconfiguration/graphicnameaccess.hxx>
22 #include <comphelper/sequence.hxx>
24 using namespace ::com::sun::star;
26 namespace framework
29 GraphicNameAccess::GraphicNameAccess()
33 GraphicNameAccess::~GraphicNameAccess()
37 void GraphicNameAccess::addElement( const OUString& rName, const uno::Reference< graphic::XGraphic >& rElement )
39 m_aNameToElementMap.insert( NameGraphicHashMap::value_type( rName, rElement ));
42 // XNameAccess
43 uno::Any SAL_CALL GraphicNameAccess::getByName( const OUString& aName )
44 throw( container::NoSuchElementException,
45 lang::WrappedTargetException,
46 uno::RuntimeException, std::exception)
48 NameGraphicHashMap::const_iterator pIter = m_aNameToElementMap.find( aName );
49 if ( pIter != m_aNameToElementMap.end() )
50 return uno::makeAny( pIter->second );
51 else
52 throw container::NoSuchElementException();
55 uno::Sequence< OUString > SAL_CALL GraphicNameAccess::getElementNames()
56 throw(::com::sun::star::uno::RuntimeException, std::exception)
58 if ( m_aSeq.getLength() == 0 )
60 uno::Sequence< OUString > aSeq( m_aNameToElementMap.size() );
61 NameGraphicHashMap::const_iterator pIter = m_aNameToElementMap.begin();
62 sal_Int32 i( 0);
63 while ( pIter != m_aNameToElementMap.end())
65 aSeq[i++] = pIter->first;
66 ++pIter;
68 m_aSeq = aSeq;
71 return m_aSeq;
74 sal_Bool SAL_CALL GraphicNameAccess::hasByName( const OUString& aName )
75 throw(::com::sun::star::uno::RuntimeException, std::exception)
77 NameGraphicHashMap::const_iterator pIter = m_aNameToElementMap.find( aName );
78 return ( pIter != m_aNameToElementMap.end() );
81 // XElementAccess
82 sal_Bool SAL_CALL GraphicNameAccess::hasElements()
83 throw( uno::RuntimeException, std::exception )
85 return ( !m_aNameToElementMap.empty() );
88 uno::Type SAL_CALL GraphicNameAccess::getElementType()
89 throw( uno::RuntimeException, std::exception )
91 return cppu::UnoType<graphic::XGraphic>::get();
94 } // namespace framework
96 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */