/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* * 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 . */ #include #include #include #include // Data per table ScPrintSaverTab::ScPrintSaverTab() : mbEntireSheet(false) { } ScPrintSaverTab::~ScPrintSaverTab() { } void ScPrintSaverTab::SetAreas( ScRangeVec&& rRanges, bool bEntireSheet ) { maPrintRanges = std::move(rRanges); mbEntireSheet = bEntireSheet; } void ScPrintSaverTab::SetRepeat( std::optional oCol, std::optional oRow ) { moRepeatCol = std::move(oCol); moRepeatRow = std::move(oRow); } bool ScPrintSaverTab::operator==( const ScPrintSaverTab& rCmp ) const { return (moRepeatCol == rCmp.moRepeatCol) && (moRepeatRow == rCmp.moRepeatRow) && (mbEntireSheet == rCmp.mbEntireSheet) && (maPrintRanges == rCmp.maPrintRanges); } // Data for the whole document ScPrintRangeSaver::ScPrintRangeSaver( SCTAB nCount ) : nTabCount( nCount ) { if (nCount > 0) pData.reset( new ScPrintSaverTab[nCount] ); } ScPrintRangeSaver::~ScPrintRangeSaver() { } ScPrintSaverTab& ScPrintRangeSaver::GetTabData(SCTAB nTab) { OSL_ENSURE(nTab& rRangeVec = rPsTab.GetPrintRanges(); rPrintRanges.put("sheet", static_cast(nTab)); // Array for ranges within each sheet. auto sheetRanges = rPrintRanges.startArray("ranges"); OStringBuffer aRanges; sal_Int32 nLast = rRangeVec.size() - 1; for (sal_Int32 nIdx = 0; nIdx <= nLast; ++nIdx) { const ScRange& rRange = rRangeVec[nIdx]; aRanges.append("[ " + OString::number(rRange.aStart.Col()) + ", " + OString::number(rRange.aStart.Row()) + ", " + OString::number(rRange.aEnd.Col()) + ", " + OString::number(rRange.aEnd.Row()) + (nLast == nIdx ? std::string_view("]") : std::string_view("], "))); } rPrintRanges.putRaw(aRanges.getStr()); } } bool ScPrintRangeSaver::operator==( const ScPrintRangeSaver& rCmp ) const { bool bEqual = ( nTabCount == rCmp.nTabCount ); if (bEqual) for (SCTAB i=0; i