2010-10-12 15:59:00 +02:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
2009-02-13 13:03:24 +00:00
|
|
|
/*************************************************************************
|
|
|
|
*
|
|
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
|
|
*
|
2010-02-12 15:01:35 +01:00
|
|
|
* Copyright 2000, 2010 Oracle and/or its affiliates.
|
2009-02-13 13:03:24 +00:00
|
|
|
*
|
|
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
|
|
|
*
|
|
|
|
* This file is part of OpenOffice.org.
|
|
|
|
*
|
|
|
|
* OpenOffice.org is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Lesser General Public License version 3
|
|
|
|
* only, as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* OpenOffice.org 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 version 3 for more details
|
|
|
|
* (a copy is included in the LICENSE file that accompanied this code).
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
|
|
* version 3 along with OpenOffice.org. If not, see
|
|
|
|
* <http://www.openoffice.org/license.html>
|
|
|
|
* for a copy of the LGPLv3 License.
|
|
|
|
*
|
|
|
|
************************************************************************/
|
|
|
|
#include "vbapagebreaks.hxx"
|
|
|
|
#include "vbapagebreak.hxx"
|
|
|
|
#include <ooo/vba/excel/XWorksheet.hpp>
|
|
|
|
using namespace ::com::sun::star;
|
|
|
|
using namespace ::ooo::vba;
|
|
|
|
|
|
|
|
typedef ::cppu::WeakImplHelper1<container::XIndexAccess > RangePageBreaks_Base;
|
|
|
|
class RangePageBreaks : public RangePageBreaks_Base
|
|
|
|
{
|
|
|
|
private:
|
|
|
|
uno::Reference< XHelperInterface > mxParent;
|
|
|
|
uno::Reference< uno::XComponentContext > mxContext;
|
|
|
|
uno::Reference< sheet::XSheetPageBreak > mxSheetPageBreak;
|
|
|
|
sal_Bool m_bColumn;
|
|
|
|
|
|
|
|
public:
|
|
|
|
RangePageBreaks( const uno::Reference< XHelperInterface >& xParent,
|
|
|
|
const uno::Reference< uno::XComponentContext >& xContext,
|
|
|
|
uno::Reference< sheet::XSheetPageBreak >& xSheetPageBreak,
|
|
|
|
sal_Bool bColumn ) : mxParent( xParent ), mxContext( xContext ), mxSheetPageBreak( xSheetPageBreak ), m_bColumn( bColumn )
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
sal_Int32 getAPIStartofRange( const uno::Reference< excel::XRange >& xRange ) throw (css::uno::RuntimeException)
|
|
|
|
{
|
|
|
|
if( m_bColumn )
|
|
|
|
return xRange->getColumn() - 1;
|
|
|
|
return xRange->getRow() - 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
sal_Int32 getAPIEndIndexofRange( const uno::Reference< excel::XRange >& xRange, sal_Int32 nUsedStart ) throw (uno::RuntimeException)
|
|
|
|
{
|
|
|
|
if( m_bColumn )
|
|
|
|
return nUsedStart + xRange->Columns( uno::Any() )->getCount();
|
|
|
|
return nUsedStart + xRange->Rows( uno::Any() )->getCount();
|
|
|
|
}
|
|
|
|
|
|
|
|
uno::Sequence<sheet::TablePageBreakData> getAllPageBreaks() throw (uno::RuntimeException)
|
|
|
|
{
|
|
|
|
if( m_bColumn )
|
|
|
|
return mxSheetPageBreak->getColumnPageBreaks();
|
|
|
|
return mxSheetPageBreak->getRowPageBreaks();
|
|
|
|
}
|
|
|
|
|
|
|
|
uno::Reference<container::XIndexAccess> getRowColContainer() throw (uno::RuntimeException)
|
|
|
|
{
|
|
|
|
uno::Reference< table::XColumnRowRange > xColumnRowRange( mxSheetPageBreak, uno::UNO_QUERY_THROW );
|
|
|
|
uno::Reference<container::XIndexAccess> xIndexAccess;
|
|
|
|
if( m_bColumn )
|
|
|
|
xIndexAccess.set( xColumnRowRange->getColumns(), uno::UNO_QUERY_THROW );
|
|
|
|
else
|
|
|
|
xIndexAccess.set( xColumnRowRange->getRows(), uno::UNO_QUERY_THROW );
|
|
|
|
return xIndexAccess;
|
|
|
|
}
|
|
|
|
|
|
|
|
sheet::TablePageBreakData getTablePageBreakData( sal_Int32 nAPIItemIndex ) throw ( script::BasicErrorException, uno::RuntimeException);
|
|
|
|
uno::Any Add( const css::uno::Any& Before ) throw ( css::script::BasicErrorException, css::uno::RuntimeException);
|
|
|
|
|
|
|
|
// XIndexAccess
|
|
|
|
virtual sal_Int32 SAL_CALL getCount( ) throw (uno::RuntimeException);
|
|
|
|
virtual uno::Any SAL_CALL getByIndex( sal_Int32 Index ) throw (lang::IndexOutOfBoundsException, lang::WrappedTargetException, uno::RuntimeException);
|
|
|
|
virtual uno::Type SAL_CALL getElementType( ) throw (uno::RuntimeException)
|
|
|
|
{
|
2009-09-18 15:24:22 +00:00
|
|
|
if( m_bColumn )
|
|
|
|
return excel::XVPageBreak::static_type(0);
|
2009-02-13 13:03:24 +00:00
|
|
|
return excel::XHPageBreak::static_type(0);
|
|
|
|
}
|
|
|
|
virtual sal_Bool SAL_CALL hasElements( ) throw (uno::RuntimeException)
|
|
|
|
{
|
|
|
|
return sal_True;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
/** @TODO Unlike MS Excel this method only considers the pagebreaks that intersect the used range
|
|
|
|
* To become completely compatible the print area has to be considered. As far as I found out this printarea
|
|
|
|
* also considers the position and sizes of shapes and manually inserted page breaks
|
|
|
|
* Note: In MS there is a limit of 1026 horizontal page breaks per sheet.
|
|
|
|
*/
|
|
|
|
sal_Int32 SAL_CALL RangePageBreaks::getCount( ) throw (uno::RuntimeException)
|
|
|
|
{
|
|
|
|
sal_Int32 nCount = 0;
|
|
|
|
uno::Reference< excel::XWorksheet > xWorksheet( mxParent, uno::UNO_QUERY_THROW );
|
|
|
|
uno::Reference< excel::XRange > xRange = xWorksheet->getUsedRange();
|
|
|
|
sal_Int32 nUsedStart = getAPIStartofRange( xRange );
|
|
|
|
sal_Int32 nUsedEnd = getAPIEndIndexofRange( xRange, nUsedStart );
|
|
|
|
uno::Sequence<sheet::TablePageBreakData> aTablePageBreakData = getAllPageBreaks();
|
|
|
|
|
|
|
|
sal_Int32 nLength = aTablePageBreakData.getLength();
|
|
|
|
for( sal_Int32 i=0; i<nLength; i++ )
|
|
|
|
{
|
|
|
|
sal_Int32 nPos = aTablePageBreakData[i].Position;
|
2010-10-06 10:15:43 +01:00
|
|
|
|
2011-01-17 18:34:27 +01:00
|
|
|
// All page breaks before the used range should be counted.
|
2010-10-06 10:15:43 +01:00
|
|
|
// And the page break at the end of the used range also should be counted.
|
|
|
|
if( nPos <= nUsedEnd + 1 )
|
2009-02-13 13:03:24 +00:00
|
|
|
nCount++;
|
2010-10-06 10:15:43 +01:00
|
|
|
else
|
|
|
|
return nCount;
|
2009-02-13 13:03:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return nCount;
|
|
|
|
}
|
|
|
|
|
|
|
|
uno::Any SAL_CALL RangePageBreaks::getByIndex( sal_Int32 Index ) throw (lang::IndexOutOfBoundsException, lang::WrappedTargetException, uno::RuntimeException)
|
|
|
|
{
|
|
|
|
if( (Index < getCount()) && ( Index >= 0 ))
|
|
|
|
{
|
|
|
|
sheet::TablePageBreakData aTablePageBreakData = getTablePageBreakData( Index );
|
|
|
|
uno::Reference< container::XIndexAccess > xIndexAccess = getRowColContainer();
|
|
|
|
sal_Int32 nPos = aTablePageBreakData.Position;
|
|
|
|
if( (nPos < xIndexAccess->getCount()) && (nPos > -1) )
|
|
|
|
{
|
|
|
|
uno::Reference< beans::XPropertySet > xRowColPropertySet( xIndexAccess->getByIndex(nPos), uno::UNO_QUERY_THROW );
|
2009-09-18 15:24:22 +00:00
|
|
|
if( m_bColumn )
|
|
|
|
return uno::makeAny( uno::Reference< excel::XVPageBreak >( new ScVbaVPageBreak( mxParent, mxContext, xRowColPropertySet, aTablePageBreakData) ));
|
2009-02-13 13:03:24 +00:00
|
|
|
return uno::makeAny( uno::Reference< excel::XHPageBreak >( new ScVbaHPageBreak( mxParent, mxContext, xRowColPropertySet, aTablePageBreakData) ));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
throw lang::IndexOutOfBoundsException();
|
|
|
|
}
|
|
|
|
|
|
|
|
sheet::TablePageBreakData RangePageBreaks::getTablePageBreakData( sal_Int32 nAPIItemIndex ) throw ( script::BasicErrorException, uno::RuntimeException)
|
|
|
|
{
|
|
|
|
sheet::TablePageBreakData aTablePageBreakData;
|
|
|
|
uno::Reference< excel::XWorksheet > xWorksheet( mxParent, uno::UNO_QUERY_THROW );
|
|
|
|
uno::Reference< excel::XRange > xRange = xWorksheet->getUsedRange();
|
|
|
|
uno::Sequence<sheet::TablePageBreakData> aTablePageBreakDataList = getAllPageBreaks();
|
|
|
|
|
|
|
|
sal_Int32 nLength = aTablePageBreakDataList.getLength();
|
2011-01-17 18:34:27 +01:00
|
|
|
// No need to filter the page break. All page breaks before the used range are counted.
|
2010-10-06 10:15:43 +01:00
|
|
|
if ( nAPIItemIndex < nLength && nAPIItemIndex>=0 )
|
|
|
|
aTablePageBreakData = aTablePageBreakDataList[nAPIItemIndex];
|
2009-02-13 13:03:24 +00:00
|
|
|
|
|
|
|
return aTablePageBreakData;
|
|
|
|
}
|
|
|
|
|
|
|
|
uno::Any RangePageBreaks::Add( const css::uno::Any& Before ) throw ( css::script::BasicErrorException, css::uno::RuntimeException)
|
|
|
|
{
|
|
|
|
uno::Reference< excel::XRange > xRange;
|
|
|
|
Before >>= xRange;
|
|
|
|
if( !xRange.is() )
|
|
|
|
{
|
|
|
|
DebugHelper::exception(SbERR_BAD_ARGUMENT, rtl::OUString());
|
|
|
|
}
|
|
|
|
|
|
|
|
sal_Int32 nAPIRowColIndex = getAPIStartofRange( xRange );
|
|
|
|
uno::Reference< container::XIndexAccess > xIndexAccess = getRowColContainer();
|
|
|
|
uno::Reference< beans::XPropertySet > xRowColPropertySet( xIndexAccess->getByIndex(nAPIRowColIndex), uno::UNO_QUERY_THROW );
|
|
|
|
xRowColPropertySet->setPropertyValue( rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "IsStartOfNewPage" )), uno::makeAny(sal_True));
|
|
|
|
sheet::TablePageBreakData aTablePageBreakData;
|
|
|
|
aTablePageBreakData.ManualBreak = sal_True;
|
|
|
|
aTablePageBreakData.Position = nAPIRowColIndex;
|
2009-09-18 15:24:22 +00:00
|
|
|
if( m_bColumn )
|
|
|
|
return uno::makeAny( uno::Reference< excel::XVPageBreak >( new ScVbaVPageBreak( mxParent, mxContext, xRowColPropertySet, aTablePageBreakData) ));
|
2009-02-13 13:03:24 +00:00
|
|
|
return uno::makeAny( uno::Reference< excel::XHPageBreak >( new ScVbaHPageBreak( mxParent, mxContext, xRowColPropertySet, aTablePageBreakData) ));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
class RangePageBreaksEnumWrapper : public EnumerationHelper_BASE
|
|
|
|
{
|
|
|
|
uno::Reference<container::XIndexAccess > m_xIndexAccess;
|
|
|
|
sal_Int32 nIndex;
|
|
|
|
public:
|
|
|
|
RangePageBreaksEnumWrapper( const uno::Reference< container::XIndexAccess >& xIndexAccess ) : m_xIndexAccess( xIndexAccess ), nIndex( 0 ) {}
|
|
|
|
virtual ::sal_Bool SAL_CALL hasMoreElements( ) throw (uno::RuntimeException)
|
|
|
|
{
|
|
|
|
return ( nIndex < m_xIndexAccess->getCount() );
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual uno::Any SAL_CALL nextElement( ) throw (container::NoSuchElementException, lang::WrappedTargetException, uno::RuntimeException)
|
|
|
|
{
|
|
|
|
if ( nIndex < m_xIndexAccess->getCount() )
|
|
|
|
return m_xIndexAccess->getByIndex( nIndex++ );
|
|
|
|
throw container::NoSuchElementException();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
ScVbaHPageBreaks::ScVbaHPageBreaks( const uno::Reference< XHelperInterface >& xParent,
|
|
|
|
const uno::Reference< uno::XComponentContext >& xContext,
|
|
|
|
uno::Reference< sheet::XSheetPageBreak >& xSheetPageBreak) throw (uno::RuntimeException):
|
2011-03-10 16:55:21 -05:00
|
|
|
ScVbaHPageBreaks_BASE( xParent,xContext, new RangePageBreaks( xParent, xContext, xSheetPageBreak, false )),
|
2009-02-13 13:03:24 +00:00
|
|
|
mxSheetPageBreak( xSheetPageBreak )
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
uno::Any SAL_CALL ScVbaHPageBreaks::Add( const uno::Any& Before) throw ( script::BasicErrorException, uno::RuntimeException)
|
|
|
|
{
|
|
|
|
RangePageBreaks* pPageBreaks = dynamic_cast< RangePageBreaks* >( m_xIndexAccess.get() );
|
|
|
|
if( pPageBreaks )
|
|
|
|
{
|
|
|
|
return pPageBreaks->Add( Before );
|
|
|
|
}
|
|
|
|
return uno::Any();
|
|
|
|
}
|
|
|
|
|
|
|
|
uno::Reference< container::XEnumeration >
|
|
|
|
ScVbaHPageBreaks::createEnumeration() throw (uno::RuntimeException)
|
|
|
|
{
|
|
|
|
return new RangePageBreaksEnumWrapper( m_xIndexAccess );
|
|
|
|
}
|
|
|
|
|
|
|
|
uno::Any
|
|
|
|
ScVbaHPageBreaks::createCollectionObject( const css::uno::Any& aSource )
|
|
|
|
{
|
|
|
|
return aSource; // its already a pagebreak object
|
|
|
|
}
|
|
|
|
|
|
|
|
uno::Type
|
|
|
|
ScVbaHPageBreaks::getElementType() throw (uno::RuntimeException)
|
|
|
|
{
|
|
|
|
return excel::XHPageBreak::static_type(0);
|
|
|
|
}
|
|
|
|
|
2012-03-24 14:00:06 +00:00
|
|
|
rtl::OUString
|
2009-02-13 13:03:24 +00:00
|
|
|
ScVbaHPageBreaks::getServiceImplName()
|
|
|
|
{
|
2012-03-24 14:00:06 +00:00
|
|
|
return rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("ScVbaHPageBreaks"));
|
2009-02-13 13:03:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
uno::Sequence< rtl::OUString >
|
|
|
|
ScVbaHPageBreaks::getServiceNames()
|
|
|
|
{
|
|
|
|
static uno::Sequence< rtl::OUString > aServiceNames;
|
|
|
|
if ( aServiceNames.getLength() == 0 )
|
|
|
|
{
|
|
|
|
aServiceNames.realloc( 1 );
|
|
|
|
aServiceNames[ 0 ] = rtl::OUString( RTL_CONSTASCII_USTRINGPARAM("ooo.vba.excel.HPageBreaks" ) );
|
|
|
|
}
|
|
|
|
return aServiceNames;
|
|
|
|
}
|
|
|
|
|
2009-09-18 15:24:22 +00:00
|
|
|
//VPageBreak
|
|
|
|
ScVbaVPageBreaks::ScVbaVPageBreaks( const uno::Reference< XHelperInterface >& xParent,
|
|
|
|
const uno::Reference< uno::XComponentContext >& xContext,
|
|
|
|
uno::Reference< sheet::XSheetPageBreak >& xSheetPageBreak ) throw ( uno::RuntimeException )
|
|
|
|
: ScVbaVPageBreaks_BASE( xParent, xContext, new RangePageBreaks( xParent, xContext, xSheetPageBreak, sal_True ) ),
|
|
|
|
mxSheetPageBreak( xSheetPageBreak )
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
ScVbaVPageBreaks::~ScVbaVPageBreaks()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
uno::Any SAL_CALL
|
|
|
|
ScVbaVPageBreaks::Add( const uno::Any& Before ) throw ( script::BasicErrorException, uno::RuntimeException )
|
|
|
|
{
|
|
|
|
RangePageBreaks* pPageBreaks = dynamic_cast< RangePageBreaks* >( m_xIndexAccess.get() );
|
|
|
|
if( pPageBreaks )
|
|
|
|
{
|
|
|
|
return pPageBreaks->Add( Before );
|
|
|
|
}
|
|
|
|
return uno::Any();
|
|
|
|
}
|
|
|
|
|
|
|
|
uno::Reference< container::XEnumeration >
|
|
|
|
ScVbaVPageBreaks::createEnumeration() throw ( uno::RuntimeException )
|
|
|
|
{
|
|
|
|
return new RangePageBreaksEnumWrapper( m_xIndexAccess );
|
|
|
|
}
|
|
|
|
|
|
|
|
uno::Any
|
|
|
|
ScVbaVPageBreaks::createCollectionObject( const css::uno::Any& aSource )
|
|
|
|
{
|
|
|
|
return aSource; // its already a pagebreak object
|
|
|
|
}
|
|
|
|
|
|
|
|
uno::Type
|
|
|
|
ScVbaVPageBreaks::getElementType() throw ( uno::RuntimeException )
|
|
|
|
{
|
|
|
|
return excel::XVPageBreak::static_type( 0 );
|
|
|
|
}
|
|
|
|
|
2012-03-24 14:00:06 +00:00
|
|
|
rtl::OUString
|
2009-09-18 15:24:22 +00:00
|
|
|
ScVbaVPageBreaks::getServiceImplName()
|
|
|
|
{
|
2012-03-24 14:00:06 +00:00
|
|
|
return rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("ScVbaVPageBreaks"));
|
2009-09-18 15:24:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
uno::Sequence< rtl::OUString >
|
|
|
|
ScVbaVPageBreaks::getServiceNames()
|
|
|
|
{
|
|
|
|
static uno::Sequence< rtl::OUString > aServiceNames;
|
|
|
|
if ( aServiceNames.getLength() == 0 )
|
|
|
|
{
|
|
|
|
aServiceNames.realloc( 1 );
|
|
|
|
aServiceNames[ 0 ] = rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "ooo.vba.excel.VPageBreaks" ) );
|
|
|
|
}
|
|
|
|
return aServiceNames;
|
|
|
|
}
|
|
|
|
|
2010-10-12 15:59:00 +02:00
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|