/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /************************************************************************* * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * Copyright 2000, 2010 Oracle and/or its affiliates. * * 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 * * for a copy of the LGPLv3 License. * ************************************************************************/ // MARKER(update_precomp.py): autogen include statement, do not remove #include "precompiled_sc.hxx" // INCLUDE --------------------------------------------------------------- #include "dpoutputgeometry.hxx" #include "address.hxx" #include using ::std::vector; ScDPOutputGeometry::ScDPOutputGeometry(const ScRange& rOutRange, bool bShowFilter, ImportType eImportType) : maOutRange(rOutRange), mnRowFields(0), mnColumnFields(0), mnPageFields(0), mnDataFields(0), meImportType(eImportType), mbShowFilter(bShowFilter) { } ScDPOutputGeometry::~ScDPOutputGeometry() { } void ScDPOutputGeometry::setRowFieldCount(sal_uInt32 nCount) { mnRowFields = nCount; } void ScDPOutputGeometry::setColumnFieldCount(sal_uInt32 nCount) { mnColumnFields = nCount; } void ScDPOutputGeometry::setPageFieldCount(sal_uInt32 nCount) { mnPageFields = nCount; } void ScDPOutputGeometry::setDataFieldCount(sal_uInt32 nCount) { mnDataFields = nCount; } void ScDPOutputGeometry::getColumnFieldPositions(vector& rAddrs) const { vector aAddrs; if (!mnColumnFields) { rAddrs.swap(aAddrs); return; } bool bDataLayout = mnDataFields > 1; SCROW nCurRow = maOutRange.aStart.Row(); if (mnPageFields) { SCROW nRowStart = maOutRange.aStart.Row() + mbShowFilter; SCROW nRowEnd = nRowStart + static_cast(mnPageFields-1); nCurRow = nRowEnd + 2; } else if (mbShowFilter) nCurRow += 2; SCROW nRow = nCurRow; SCTAB nTab = maOutRange.aStart.Tab(); SCCOL nColStart = static_cast(maOutRange.aStart.Col() + mnRowFields + (bDataLayout ? 1 : 0)); SCCOL nColEnd = nColStart + static_cast(mnColumnFields-1); for (SCCOL nCol = nColStart; nCol <= nColEnd; ++nCol) aAddrs.push_back(ScAddress(nCol, nRow, nTab)); rAddrs.swap(aAddrs); } void ScDPOutputGeometry::getRowFieldPositions(vector& rAddrs) const { vector aAddrs; if (!mnRowFields) { rAddrs.swap(aAddrs); return; } SCROW nRow = getRowFieldHeaderRow(); SCTAB nTab = maOutRange.aStart.Tab(); SCCOL nColStart = maOutRange.aStart.Col(); SCCOL nColEnd = nColStart + static_cast(mnRowFields-1); for (SCCOL nCol = nColStart; nCol <= nColEnd; ++nCol) aAddrs.push_back(ScAddress(nCol, nRow, nTab)); rAddrs.swap(aAddrs); } void ScDPOutputGeometry::getPageFieldPositions(vector& rAddrs) const { vector aAddrs; if (!mnPageFields) { rAddrs.swap(aAddrs); return; } SCTAB nTab = maOutRange.aStart.Tab(); SCCOL nCol = maOutRange.aStart.Col(); SCROW nRowStart = maOutRange.aStart.Row() + mbShowFilter; SCROW nRowEnd = nRowStart + static_cast(mnPageFields-1); for (SCROW nRow = nRowStart; nRow <= nRowEnd; ++nRow) aAddrs.push_back(ScAddress(nCol, nRow, nTab)); rAddrs.swap(aAddrs); } SCROW ScDPOutputGeometry::getRowFieldHeaderRow() const { SCROW nCurRow = maOutRange.aStart.Row(); if (mnPageFields) { SCROW nRowStart = maOutRange.aStart.Row() + mbShowFilter; SCROW nRowEnd = nRowStart + static_cast(mnPageFields-1); nCurRow = nRowEnd + 2; } else if (mbShowFilter) nCurRow += 2; if (mnColumnFields) nCurRow += static_cast(mnColumnFields); else if (mnRowFields) ++nCurRow; return nCurRow; } ScDPOutputGeometry::FieldType ScDPOutputGeometry::getFieldButtonType(const ScAddress& rPos) const { // We will ignore the table position for now. bool bExtraTitleRow = (mnColumnFields == 0 && meImportType == ScDPOutputGeometry::XLS); bool bDataLayout = mnDataFields > 1; SCROW nCurRow = maOutRange.aStart.Row(); if (mnPageFields) { SCCOL nCol = maOutRange.aStart.Col(); SCROW nRowStart = maOutRange.aStart.Row() + mbShowFilter; SCROW nRowEnd = nRowStart + static_cast(mnPageFields-1); if (rPos.Col() == nCol && nRowStart <= rPos.Row() && rPos.Row() <= nRowEnd) return Page; nCurRow = nRowEnd + 2; } else if (mbShowFilter) nCurRow += 2; if (mnColumnFields) { SCROW nRow = nCurRow; SCCOL nColStart = static_cast(maOutRange.aStart.Col() + mnRowFields + (bDataLayout ? 1 : 0)); SCCOL nColEnd = nColStart + static_cast(mnColumnFields-1); if (rPos.Row() == nRow && nColStart <= rPos.Col() && rPos.Col() <= nColEnd) return Column; nCurRow += static_cast(mnColumnFields); } if (bExtraTitleRow) ++nCurRow; if (mnRowFields) { SCCOL nColStart = maOutRange.aStart.Col(); SCCOL nColEnd = nColStart + static_cast(mnRowFields-1); if (rPos.Row() == nCurRow && nColStart <= rPos.Col() && rPos.Col() <= nColEnd) return Row; } return None; } /* vim:set shiftwidth=4 softtabstop=4 expandtab: */