Add 'reference' to the iterator_traits, needed by LegacyIterator reqs
[LibreOffice.git] / svl / source / items / ilstitem.cxx
blob0cb9ea8e6c49b26d54f6b8ec0c5de464638a70a5
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 <com/sun/star/script/Converter.hpp>
22 #include <comphelper/processfactory.hxx>
23 #include <comphelper/sequence.hxx>
25 #include <svl/ilstitem.hxx>
28 SfxPoolItem* SfxIntegerListItem::CreateDefault() { return new SfxIntegerListItem; }
30 SfxIntegerListItem::SfxIntegerListItem()
34 SfxIntegerListItem::SfxIntegerListItem( sal_uInt16 which, ::std::vector < sal_Int32 >&& rList )
35 : SfxPoolItem( which )
36 , m_aList( std::move(rList) )
40 SfxIntegerListItem::SfxIntegerListItem( sal_uInt16 which, const css::uno::Sequence < sal_Int32 >& rList )
41 : SfxPoolItem( which )
43 comphelper::sequenceToContainer(m_aList, rList);
46 SfxIntegerListItem::~SfxIntegerListItem()
50 bool SfxIntegerListItem::operator==( const SfxPoolItem& rPoolItem ) const
52 if ( !SfxPoolItem::operator==(rPoolItem) )
53 return false;
55 const SfxIntegerListItem & rItem = static_cast<const SfxIntegerListItem&>(rPoolItem);
56 return rItem.m_aList == m_aList;
59 SfxIntegerListItem* SfxIntegerListItem::Clone( SfxItemPool * ) const
61 return new SfxIntegerListItem( *this );
64 bool SfxIntegerListItem::PutValue ( const css::uno::Any& rVal, sal_uInt8 )
66 css::uno::Reference < css::script::XTypeConverter > xConverter
67 ( css::script::Converter::create(::comphelper::getProcessComponentContext()) );
68 css::uno::Any aNew;
69 try { aNew = xConverter->convertTo( rVal, cppu::UnoType<css::uno::Sequence < sal_Int32 >>::get() ); }
70 catch (css::uno::Exception&)
72 return true;
75 css::uno::Sequence<sal_Int32> aTempSeq;
76 bool bRet = aNew >>= aTempSeq;
77 if (bRet)
78 m_aList = comphelper::sequenceToContainer<std::vector<sal_Int32>>(aTempSeq);
79 return bRet;
82 bool SfxIntegerListItem::QueryValue( css::uno::Any& rVal, sal_uInt8 ) const
84 rVal <<= comphelper::containerToSequence(m_aList);
85 return true;
88 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */