GPU-Calc: remove Alloc_Host_Ptr for clmem of NAN vector
[LibreOffice.git] / svl / source / items / globalnameitem.cxx
blob6dbe174c4878f4a37620a8176f2f0ec08253eb66
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/uno/Any.hxx>
21 #include <com/sun/star/uno/Sequence.hxx>
22 #include <com/sun/star/script/Converter.hpp>
24 #include <com/sun/star/lang/XMultiServiceFactory.hpp>
26 #include <comphelper/processfactory.hxx>
28 #include <svl/globalnameitem.hxx>
30 // STATIC DATA -----------------------------------------------------------
33 // -----------------------------------------------------------------------
35 TYPEINIT1_AUTOFACTORY(SfxGlobalNameItem, SfxPoolItem);
37 // -----------------------------------------------------------------------
39 SfxGlobalNameItem::SfxGlobalNameItem()
43 // -----------------------------------------------------------------------
45 SfxGlobalNameItem::SfxGlobalNameItem( sal_uInt16 nW, const SvGlobalName& rName )
46 : SfxPoolItem( nW ),
47 m_aName( rName )
51 // -----------------------------------------------------------------------
53 SfxGlobalNameItem::~SfxGlobalNameItem()
57 // -----------------------------------------------------------------------
59 int SfxGlobalNameItem::operator==( const SfxPoolItem& rItem ) const
61 return ((SfxGlobalNameItem&)rItem).m_aName == m_aName;
64 // -----------------------------------------------------------------------
66 SfxPoolItem* SfxGlobalNameItem::Clone(SfxItemPool *) const
68 return new SfxGlobalNameItem( *this );
71 // virtual
72 bool SfxGlobalNameItem::PutValue( const com::sun::star::uno::Any& rVal, sal_uInt8 )
74 com::sun::star::uno::Reference < com::sun::star::script::XTypeConverter > xConverter
75 ( com::sun::star::script::Converter::create( ::comphelper::getProcessComponentContext() ));
76 com::sun::star::uno::Sequence< sal_Int8 > aSeq;
77 com::sun::star::uno::Any aNew;
79 try { aNew = xConverter->convertTo( rVal, ::getCppuType((const com::sun::star::uno::Sequence < sal_Int8 >*)0) ); }
80 catch (com::sun::star::uno::Exception&) {}
81 aNew >>= aSeq;
82 if ( aSeq.getLength() == 16 )
84 m_aName.MakeFromMemory( (void*) aSeq.getConstArray() );
85 return true;
88 OSL_FAIL( "SfxGlobalNameItem::PutValue - Wrong type!" );
89 return true;
92 // virtual
93 bool SfxGlobalNameItem::QueryValue( com::sun::star::uno::Any& rVal, sal_uInt8 ) const
95 com::sun::star::uno::Sequence< sal_Int8 > aSeq( 16 );
96 void* pData = ( void* ) &m_aName.GetCLSID();
97 memcpy( aSeq.getArray(), pData, 16 );
98 rVal <<= aSeq;
99 return true;
102 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */