Branch data Line data Source code
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 <uiconfiguration/graphicnameaccess.hxx>
21 : :
22 : : #include <comphelper/sequence.hxx>
23 : :
24 : : using namespace ::com::sun::star;
25 : :
26 : : namespace framework
27 : : {
28 : :
29 [ # # ][ # # ]: 0 : GraphicNameAccess::GraphicNameAccess()
30 : : {
31 : 0 : }
32 : :
33 [ # # ][ # # ]: 0 : GraphicNameAccess::~GraphicNameAccess()
34 : : {
35 [ # # ]: 0 : }
36 : :
37 : 0 : void GraphicNameAccess::addElement( const rtl::OUString& rName, const uno::Reference< graphic::XGraphic >& rElement )
38 : : {
39 [ # # ]: 0 : m_aNameToElementMap.insert( NameGraphicHashMap::value_type( rName, rElement ));
40 : 0 : }
41 : :
42 : : // XNameAccess
43 : 0 : uno::Any SAL_CALL GraphicNameAccess::getByName( const ::rtl::OUString& aName )
44 : : throw( container::NoSuchElementException,
45 : : lang::WrappedTargetException,
46 : : uno::RuntimeException)
47 : : {
48 [ # # ]: 0 : NameGraphicHashMap::const_iterator pIter = m_aNameToElementMap.find( aName );
49 [ # # ][ # # ]: 0 : if ( pIter != m_aNameToElementMap.end() )
50 [ # # ][ # # ]: 0 : return uno::makeAny( pIter->second );
51 : : else
52 [ # # ]: 0 : throw container::NoSuchElementException();
53 : : }
54 : :
55 : 0 : uno::Sequence< ::rtl::OUString > SAL_CALL GraphicNameAccess::getElementNames()
56 : : throw(::com::sun::star::uno::RuntimeException)
57 : : {
58 [ # # ]: 0 : if ( m_aSeq.getLength() == 0 )
59 : : {
60 [ # # ]: 0 : uno::Sequence< rtl::OUString > aSeq( m_aNameToElementMap.size() );
61 [ # # ]: 0 : NameGraphicHashMap::const_iterator pIter = m_aNameToElementMap.begin();
62 : 0 : sal_Int32 i( 0);
63 [ # # ][ # # ]: 0 : while ( pIter != m_aNameToElementMap.end())
64 : : {
65 [ # # ][ # # ]: 0 : aSeq[i++] = pIter->first;
66 : 0 : ++pIter;
67 : : }
68 [ # # ][ # # ]: 0 : m_aSeq = aSeq;
69 : : }
70 : :
71 : 0 : return m_aSeq;
72 : : }
73 : :
74 : 0 : sal_Bool SAL_CALL GraphicNameAccess::hasByName( const ::rtl::OUString& aName )
75 : : throw(::com::sun::star::uno::RuntimeException)
76 : : {
77 [ # # ]: 0 : NameGraphicHashMap::const_iterator pIter = m_aNameToElementMap.find( aName );
78 [ # # ]: 0 : return ( pIter != m_aNameToElementMap.end() );
79 : : }
80 : :
81 : : // XElementAccess
82 : 0 : sal_Bool SAL_CALL GraphicNameAccess::hasElements()
83 : : throw( uno::RuntimeException )
84 : : {
85 : 0 : return ( !m_aNameToElementMap.empty() );
86 : : }
87 : :
88 : 0 : uno::Type SAL_CALL GraphicNameAccess::getElementType()
89 : : throw( uno::RuntimeException )
90 : : {
91 : 0 : return ::getCppuType( (const uno::Reference< graphic::XGraphic > *)NULL );
92 : : }
93 : :
94 : : } // namespace framework
95 : :
96 : : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|