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 <com/sun/star/uno/Any.hxx>
21 : : #include <com/sun/star/uno/Sequence.hxx>
22 : : #include <com/sun/star/script/XTypeConverter.hpp>
23 : :
24 : : #include <com/sun/star/lang/XMultiServiceFactory.hpp>
25 : :
26 : : #include <comphelper/processfactory.hxx>
27 : :
28 : : #include <svl/globalnameitem.hxx>
29 : :
30 : : // STATIC DATA -----------------------------------------------------------
31 : :
32 : :
33 : : // -----------------------------------------------------------------------
34 : :
35 [ # # ][ # # ]: 149 : TYPEINIT1_AUTOFACTORY(SfxGlobalNameItem, SfxPoolItem);
[ # # ]
36 : :
37 : : // -----------------------------------------------------------------------
38 : :
39 [ # # ]: 0 : SfxGlobalNameItem::SfxGlobalNameItem()
40 : : {
41 : 0 : }
42 : :
43 : : // -----------------------------------------------------------------------
44 : :
45 : 0 : SfxGlobalNameItem::SfxGlobalNameItem( sal_uInt16 nW, const SvGlobalName& rName )
46 : : : SfxPoolItem( nW ),
47 : 0 : m_aName( rName )
48 : : {
49 : 0 : }
50 : :
51 : : // -----------------------------------------------------------------------
52 : :
53 [ # # ]: 0 : SfxGlobalNameItem::~SfxGlobalNameItem()
54 : : {
55 [ # # ]: 0 : }
56 : :
57 : : // -----------------------------------------------------------------------
58 : :
59 : 0 : int SfxGlobalNameItem::operator==( const SfxPoolItem& rItem ) const
60 : : {
61 : 0 : return ((SfxGlobalNameItem&)rItem).m_aName == m_aName;
62 : : }
63 : :
64 : : // -----------------------------------------------------------------------
65 : :
66 : 0 : SfxPoolItem* SfxGlobalNameItem::Clone(SfxItemPool *) const
67 : : {
68 [ # # ]: 0 : return new SfxGlobalNameItem( *this );
69 : : }
70 : :
71 : : //----------------------------------------------------------------------------
72 : : // virtual
73 : 0 : bool SfxGlobalNameItem::PutValue( const com::sun::star::uno::Any& rVal, sal_uInt8 )
74 : : {
75 : : com::sun::star::uno::Reference < com::sun::star::script::XTypeConverter > xConverter
76 [ # # ]: 0 : ( ::comphelper::getProcessServiceFactory()->createInstance(::rtl::OUString("com.sun.star.script.Converter")),
[ # # # # ]
77 [ # # ][ # # ]: 0 : com::sun::star::uno::UNO_QUERY );
78 [ # # ]: 0 : com::sun::star::uno::Sequence< sal_Int8 > aSeq;
79 : 0 : com::sun::star::uno::Any aNew;
80 : :
81 [ # # ][ # # ]: 0 : try { aNew = xConverter->convertTo( rVal, ::getCppuType((const com::sun::star::uno::Sequence < sal_Int8 >*)0) ); }
[ # # ]
82 [ # # ]: 0 : catch (com::sun::star::uno::Exception&) {}
83 [ # # ]: 0 : aNew >>= aSeq;
84 [ # # ]: 0 : if ( aSeq.getLength() == 16 )
85 : : {
86 [ # # ]: 0 : m_aName.MakeFromMemory( (void*) aSeq.getConstArray() );
87 : 0 : return true;
88 : : }
89 : :
90 : : OSL_FAIL( "SfxGlobalNameItem::PutValue - Wrong type!" );
91 [ # # ]: 0 : return true;
92 : : }
93 : :
94 : : //----------------------------------------------------------------------------
95 : : // virtual
96 : 0 : bool SfxGlobalNameItem::QueryValue( com::sun::star::uno::Any& rVal, sal_uInt8 ) const
97 : : {
98 [ # # ]: 0 : com::sun::star::uno::Sequence< sal_Int8 > aSeq( 16 );
99 : 0 : void* pData = ( void* ) &m_aName.GetCLSID();
100 [ # # ]: 0 : memcpy( aSeq.getArray(), pData, 16 );
101 [ # # ]: 0 : rVal <<= aSeq;
102 [ # # ]: 0 : return true;
103 : : }
104 : :
105 : : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|