bump product version to 6.3.0.0.beta1
[LibreOffice.git] / svl / source / items / ilstitem.cxx
blob21fca8aa317304ba8b988e251d3e5520b7992c53
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>
21 #include <com/sun/star/lang/XMultiServiceFactory.hpp>
23 #include <comphelper/processfactory.hxx>
24 #include <comphelper/sequence.hxx>
26 #include <svl/ilstitem.hxx>
29 SfxPoolItem* SfxIntegerListItem::CreateDefault() { return new SfxIntegerListItem; }
31 SfxIntegerListItem::SfxIntegerListItem()
35 SfxIntegerListItem::SfxIntegerListItem( sal_uInt16 which, const ::std::vector < sal_Int32 >& rList )
36 : SfxPoolItem( which )
37 , m_aList( rList )
41 SfxIntegerListItem::SfxIntegerListItem( sal_uInt16 which, const css::uno::Sequence < sal_Int32 >& rList )
42 : SfxPoolItem( which )
44 m_aList.resize( rList.getLength() );
45 for ( sal_Int32 n=0; n<rList.getLength(); ++n )
46 m_aList[n] = rList[n];
49 SfxIntegerListItem::~SfxIntegerListItem()
53 bool SfxIntegerListItem::operator==( const SfxPoolItem& rPoolItem ) const
55 if ( dynamic_cast< const SfxIntegerListItem* >( &rPoolItem) == nullptr )
56 return false;
58 const SfxIntegerListItem & rItem = static_cast<const SfxIntegerListItem&>(rPoolItem);
59 return rItem.m_aList == m_aList;
62 SfxPoolItem* SfxIntegerListItem::Clone( SfxItemPool * ) const
64 return new SfxIntegerListItem( *this );
67 bool SfxIntegerListItem::PutValue ( const css::uno::Any& rVal, sal_uInt8 )
69 css::uno::Reference < css::script::XTypeConverter > xConverter
70 ( css::script::Converter::create(::comphelper::getProcessComponentContext()) );
71 css::uno::Any aNew;
72 try { aNew = xConverter->convertTo( rVal, cppu::UnoType<css::uno::Sequence < sal_Int32 >>::get() ); }
73 catch (css::uno::Exception&)
75 return true;
78 css::uno::Sequence<sal_Int32> aTempSeq;
79 bool bRet = aNew >>= aTempSeq;
80 if (bRet)
81 m_aList = comphelper::sequenceToContainer<std::vector<sal_Int32>>(aTempSeq);
82 return bRet;
85 bool SfxIntegerListItem::QueryValue( css::uno::Any& rVal, sal_uInt8 ) const
87 rVal <<= comphelper::containerToSequence(m_aList);
88 return true;
91 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */