2010-10-12 15:59:00 +02:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
2012-11-30 12:23:25 +00:00
|
|
|
/*
|
|
|
|
* This file is part of the LibreOffice project.
|
|
|
|
*
|
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
*
|
|
|
|
* This file incorporates work covered by the following license notice:
|
|
|
|
*
|
|
|
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
* contributor license agreements. See the NOTICE file distributed
|
|
|
|
* with this work for additional information regarding copyright
|
|
|
|
* ownership. The ASF licenses this file to you under the Apache
|
|
|
|
* License, Version 2.0 (the "License"); you may not use this file
|
|
|
|
* except in compliance with the License. You may obtain a copy of
|
|
|
|
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
|
|
|
|
*/
|
2000-09-18 16:07:07 +00:00
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#include "pagedata.hxx"
|
|
|
|
|
|
|
|
//============================================================================
|
|
|
|
|
|
|
|
ScPrintRangeData::ScPrintRangeData()
|
|
|
|
{
|
|
|
|
nPagesX = nPagesY = 0;
|
2004-06-04 10:25:52 +00:00
|
|
|
pPageEndX = NULL;
|
|
|
|
pPageEndY = NULL;
|
2011-01-17 13:20:22 +01:00
|
|
|
bTopDown = bAutomatic = sal_True;
|
2000-09-18 16:07:07 +00:00
|
|
|
nFirstPage = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
ScPrintRangeData::~ScPrintRangeData()
|
|
|
|
{
|
|
|
|
delete[] pPageEndX;
|
|
|
|
delete[] pPageEndY;
|
|
|
|
}
|
|
|
|
|
2004-06-04 10:25:52 +00:00
|
|
|
void ScPrintRangeData::SetPagesX( size_t nCount, const SCCOL* pData )
|
2000-09-18 16:07:07 +00:00
|
|
|
{
|
|
|
|
delete[] pPageEndX;
|
|
|
|
if ( nCount )
|
|
|
|
{
|
2004-06-04 10:25:52 +00:00
|
|
|
pPageEndX = new SCCOL[nCount];
|
|
|
|
memcpy( pPageEndX, pData, nCount * sizeof(SCCOL) );
|
2000-09-18 16:07:07 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
pPageEndX = NULL;
|
|
|
|
nPagesX = nCount;
|
|
|
|
}
|
|
|
|
|
2004-06-04 10:25:52 +00:00
|
|
|
void ScPrintRangeData::SetPagesY( size_t nCount, const SCROW* pData )
|
2000-09-18 16:07:07 +00:00
|
|
|
{
|
|
|
|
delete[] pPageEndY;
|
|
|
|
if ( nCount )
|
|
|
|
{
|
2004-06-04 10:25:52 +00:00
|
|
|
pPageEndY = new SCROW[nCount];
|
|
|
|
memcpy( pPageEndY, pData, nCount * sizeof(SCROW) );
|
2000-09-18 16:07:07 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
pPageEndY = NULL;
|
|
|
|
nPagesY = nCount;
|
|
|
|
}
|
|
|
|
|
|
|
|
//============================================================================
|
|
|
|
|
2004-06-04 10:25:52 +00:00
|
|
|
ScPageBreakData::ScPageBreakData(size_t nMax)
|
2000-09-18 16:07:07 +00:00
|
|
|
{
|
|
|
|
nUsed = 0;
|
|
|
|
if (nMax)
|
|
|
|
pData = new ScPrintRangeData[nMax];
|
|
|
|
else
|
|
|
|
pData = NULL;
|
|
|
|
nAlloc = nMax;
|
|
|
|
}
|
|
|
|
|
|
|
|
ScPageBreakData::~ScPageBreakData()
|
|
|
|
{
|
|
|
|
delete[] pData;
|
|
|
|
}
|
|
|
|
|
2004-06-04 10:25:52 +00:00
|
|
|
ScPrintRangeData& ScPageBreakData::GetData(size_t nPos)
|
2000-09-18 16:07:07 +00:00
|
|
|
{
|
2011-05-21 15:04:26 +02:00
|
|
|
OSL_ENSURE(nPos < nAlloc, "ScPageBreakData::GetData bumm");
|
2000-09-18 16:07:07 +00:00
|
|
|
|
|
|
|
if ( nPos >= nUsed )
|
|
|
|
{
|
2011-05-21 15:04:26 +02:00
|
|
|
OSL_ENSURE(nPos == nUsed, "ScPageBreakData::GetData falsche Reihenfolge");
|
2000-09-18 16:07:07 +00:00
|
|
|
nUsed = nPos+1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return pData[nPos];
|
|
|
|
}
|
|
|
|
|
2011-01-17 13:20:22 +01:00
|
|
|
sal_Bool ScPageBreakData::IsEqual( const ScPageBreakData& rOther ) const
|
2000-09-18 16:07:07 +00:00
|
|
|
{
|
|
|
|
if ( nUsed != rOther.nUsed )
|
2011-03-10 16:55:21 -05:00
|
|
|
return false;
|
2000-09-18 16:07:07 +00:00
|
|
|
|
2011-01-17 13:20:22 +01:00
|
|
|
for (sal_uInt16 i=0; i<nUsed; i++)
|
2000-09-18 16:07:07 +00:00
|
|
|
if ( pData[i].GetPrintRange() != rOther.pData[i].GetPrintRange() )
|
2011-03-10 16:55:21 -05:00
|
|
|
return false;
|
2000-09-18 16:07:07 +00:00
|
|
|
|
|
|
|
//! ScPrintRangeData komplett vergleichen ??
|
|
|
|
|
2011-01-17 13:20:22 +01:00
|
|
|
return sal_True;
|
2000-09-18 16:07:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void ScPageBreakData::AddPages()
|
|
|
|
{
|
|
|
|
if ( nUsed > 1 )
|
|
|
|
{
|
|
|
|
long nPage = pData[0].GetFirstPage();
|
2011-01-17 13:20:22 +01:00
|
|
|
for (sal_uInt16 i=0; sal::static_int_cast<size_t>(i+1)<nUsed; i++)
|
2000-09-18 16:07:07 +00:00
|
|
|
{
|
|
|
|
nPage += ((long)pData[i].GetPagesX())*pData[i].GetPagesY();
|
|
|
|
pData[i+1].SetFirstPage( nPage );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2010-10-12 15:59:00 +02:00
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|