2003-03-27 07:40:07 -06:00
|
|
|
/*************************************************************************
|
|
|
|
*
|
2005-09-08 09:57:23 -05:00
|
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
2003-03-27 07:40:07 -06:00
|
|
|
*
|
2005-09-08 09:57:23 -05:00
|
|
|
* $RCSfile: globalnameitem.cxx,v $
|
2003-03-27 07:40:07 -06:00
|
|
|
*
|
2007-06-27 15:39:56 -05:00
|
|
|
* $Revision: 1.6 $
|
2003-03-27 07:40:07 -06:00
|
|
|
*
|
2007-06-27 15:39:56 -05:00
|
|
|
* last change: $Author: hr $ $Date: 2007-06-27 21:38:45 $
|
2003-03-27 07:40:07 -06:00
|
|
|
*
|
2005-09-08 09:57:23 -05:00
|
|
|
* The Contents of this file are made available subject to
|
|
|
|
* the terms of GNU Lesser General Public License Version 2.1.
|
2003-03-27 07:40:07 -06:00
|
|
|
*
|
|
|
|
*
|
2005-09-08 09:57:23 -05:00
|
|
|
* GNU Lesser General Public License Version 2.1
|
|
|
|
* =============================================
|
|
|
|
* Copyright 2005 by Sun Microsystems, Inc.
|
|
|
|
* 901 San Antonio Road, Palo Alto, CA 94303, USA
|
2003-03-27 07:40:07 -06:00
|
|
|
*
|
2005-09-08 09:57:23 -05:00
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License version 2.1, as published by the Free Software Foundation.
|
2003-03-27 07:40:07 -06:00
|
|
|
*
|
2005-09-08 09:57:23 -05:00
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
2003-03-27 07:40:07 -06:00
|
|
|
*
|
2005-09-08 09:57:23 -05:00
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
|
|
|
|
* MA 02111-1307 USA
|
2003-03-27 07:40:07 -06:00
|
|
|
*
|
|
|
|
************************************************************************/
|
|
|
|
|
2006-09-17 08:59:02 -05:00
|
|
|
// MARKER(update_precomp.py): autogen include statement, do not remove
|
|
|
|
#include "precompiled_svtools.hxx"
|
|
|
|
|
2003-03-27 07:40:07 -06:00
|
|
|
#ifndef _COM_SUN_STAR_UNO_ANY_HXX_
|
|
|
|
#include <com/sun/star/uno/Any.hxx>
|
|
|
|
#endif
|
|
|
|
#ifndef _COM_SUN_STAR_UNO_SEQUENCE_HXX_
|
|
|
|
#include <com/sun/star/uno/Sequence.hxx>
|
|
|
|
#endif
|
|
|
|
#ifndef _COM_SUN_STAR_SCRIPT_XTYPECONVERTER_HPP_
|
|
|
|
#include <com/sun/star/script/XTypeConverter.hpp>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <com/sun/star/lang/XMultiServiceFactory.hpp>
|
|
|
|
|
|
|
|
#include <comphelper/processfactory.hxx>
|
|
|
|
|
2007-06-27 15:39:56 -05:00
|
|
|
#include <svtools/globalnameitem.hxx>
|
2003-03-27 07:40:07 -06:00
|
|
|
|
|
|
|
// STATIC DATA -----------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
|
|
|
TYPEINIT1_AUTOFACTORY(SfxGlobalNameItem, SfxPoolItem);
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
|
|
|
SfxGlobalNameItem::SfxGlobalNameItem()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
|
|
|
SfxGlobalNameItem::SfxGlobalNameItem( USHORT nW, const SvGlobalName& rName )
|
|
|
|
: SfxPoolItem( nW ),
|
|
|
|
m_aName( rName )
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
|
|
|
SfxGlobalNameItem::~SfxGlobalNameItem()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
|
|
|
int SfxGlobalNameItem::operator==( const SfxPoolItem& rItem ) const
|
|
|
|
{
|
|
|
|
return ((SfxGlobalNameItem&)rItem).m_aName == m_aName;
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
|
|
|
SfxPoolItem* SfxGlobalNameItem::Clone(SfxItemPool *) const
|
|
|
|
{
|
|
|
|
return new SfxGlobalNameItem( *this );
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
// virtual
|
2006-06-19 15:11:35 -05:00
|
|
|
BOOL SfxGlobalNameItem::PutValue( const com::sun::star::uno::Any& rVal, BYTE )
|
2003-03-27 07:40:07 -06:00
|
|
|
{
|
|
|
|
com::sun::star::uno::Reference < com::sun::star::script::XTypeConverter > xConverter
|
|
|
|
( ::comphelper::getProcessServiceFactory()->createInstance(::rtl::OUString::createFromAscii("com.sun.star.script.Converter")),
|
|
|
|
com::sun::star::uno::UNO_QUERY );
|
|
|
|
com::sun::star::uno::Sequence< sal_Int8 > aSeq;
|
|
|
|
com::sun::star::uno::Any aNew;
|
|
|
|
|
|
|
|
try { aNew = xConverter->convertTo( rVal, ::getCppuType((const com::sun::star::uno::Sequence < sal_Int8 >*)0) ); }
|
|
|
|
catch (com::sun::star::uno::Exception&) {}
|
|
|
|
aNew >>= aSeq;
|
|
|
|
if ( aSeq.getLength() == 16 )
|
|
|
|
{
|
|
|
|
m_aName.MakeFromMemory( (void*) aSeq.getConstArray() );
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
DBG_ERROR( "SfxGlobalNameItem::PutValue - Wrong type!" );
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
// virtual
|
2006-06-19 15:11:35 -05:00
|
|
|
BOOL SfxGlobalNameItem::QueryValue( com::sun::star::uno::Any& rVal, BYTE ) const
|
2003-03-27 07:40:07 -06:00
|
|
|
{
|
|
|
|
com::sun::star::uno::Sequence< sal_Int8 > aSeq( 16 );
|
|
|
|
void* pData = ( void* ) &m_aName.GetCLSID();
|
|
|
|
memcpy( aSeq.getArray(), pData, 16 );
|
|
|
|
rVal <<= aSeq;
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|