1 /************************************************************************* 2 * 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4 * 5 * Copyright 2000, 2010 Oracle and/or its affiliates. 6 * 7 * OpenOffice.org - a multi-platform office productivity suite 8 * 9 * This file is part of OpenOffice.org. 10 * 11 * OpenOffice.org is free software: you can redistribute it and/or modify 12 * it under the terms of the GNU Lesser General Public License version 3 13 * only, as published by the Free Software Foundation. 14 * 15 * OpenOffice.org is distributed in the hope that it will be useful, 16 * but WITHOUT ANY WARRANTY; without even the implied warranty of 17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 18 * GNU Lesser General Public License version 3 for more details 19 * (a copy is included in the LICENSE file that accompanied this code). 20 * 21 * You should have received a copy of the GNU Lesser General Public License 22 * version 3 along with OpenOffice.org. If not, see 23 * <http://www.openoffice.org/license.html> 24 * for a copy of the LGPLv3 License. 25 * 26 ************************************************************************/ 27 28 // MARKER(update_precomp.py): autogen include statement, do not remove 29 #include "precompiled_svx.hxx" 30 31 #include "svx/ofaitem.hxx" 32 33 OfaPtrItem::OfaPtrItem( sal_uInt16 _nWhich, void *_pPtr ) 34 : SfxPoolItem( _nWhich ), pPtr( _pPtr ) 35 { 36 37 } 38 OfaPtrItem::OfaPtrItem( const OfaPtrItem& rItem) 39 : SfxPoolItem( rItem.Which() ), pPtr( rItem.pPtr ) 40 { 41 } 42 43 int OfaPtrItem::operator==( const SfxPoolItem& rItem) const 44 { 45 return ((OfaPtrItem&)rItem).pPtr == pPtr; 46 } 47 48 SfxPoolItem* OfaPtrItem::Clone( SfxItemPool * ) const 49 { 50 return new OfaPtrItem( *this ); 51 } 52 53 //--------------------------------------------------------------------------- 54 /* 55 TYPEINIT1_FACTORY(DashListPtrItem, SvxDashListPtrItem, new DashListPtrItem(0)); 56 57 DashListPtrItem::DashListPtrItem( sal_uInt16 nWhich, SvxDashListItem* pPtr ) 58 : OfaPtrItem( nWhich ), pPtr( pPtr ) 59 { 60 } 61 62 DashListPtrItem::DashListPtrItem( const DashListPtrItem& ) 63 : OfaPtrItem( rItem.Which() ), pPtr( rItem.pPtr ) 64 { 65 } 66 67 int DashListPtrItem::operator==( const SfxPoolItem& rItem ) const 68 { 69 return ((DashListPtrItem&)rItem).GetValue() == GetValue(); 70 } 71 72 SfxPoolItem* DashListPtrItem::Clone( SfxItemPool *pPool ) const 73 { 74 return new DashListPtrItem( *this ); 75 } 76 77 sal_Bool DashListPtrItem::QueryValue( com::sun::star::uno::Any& rVal, sal_uInt8 nMemberId = 0 ) const 78 { 79 } 80 81 sal_Bool DashListPtrItem::PutValue( const com::sun::star::uno::Any& rVal, sal_uInt8 nMemberId = 0 ) 82 { 83 sal_Int64 nHyper; 84 if ( rVal >>= nHyper ) 85 { 86 SetValue( (SvxDash 87 } 88 89 return sal_False; 90 } 91 */ 92