1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111
|
/* -*- 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 .
*/
#ifndef INCLUDED_SC_SOURCE_FILTER_XML_XMLSUBTI_HXX
#define INCLUDED_SC_SOURCE_FILTER_XML_XMLSUBTI_HXX
#include "XMLTableShapeResizer.hxx"
#include <formula/grammar.hxx>
#include <tabprotection.hxx>
#include <rangelst.hxx>
namespace com::sun::star::drawing { class XDrawPage; }
namespace com::sun::star::sheet { class XSpreadsheet; }
namespace com::sun::star::table { class XCellRange; }
namespace com::sun::star::drawing { class XShapes; }
class ScXMLImport;
struct ScXMLTabProtectionData
{
OUString maPassword;
ScPasswordHash meHash1;
ScPasswordHash meHash2;
bool mbProtected;
bool mbSelectProtectedCells;
bool mbSelectUnprotectedCells;
bool mbInsertColumns;
bool mbInsertRows;
bool mbDeleteColumns;
bool mbDeleteRows;
ScXMLTabProtectionData();
};
class ScMyTables
{
private:
ScXMLImport& rImport;
ScMyOLEFixer aFixupOLEs;
css::uno::Reference< css::sheet::XSpreadsheet > xCurrentSheet;
css::uno::Reference< css::drawing::XDrawPage > xDrawPage;
css::uno::Reference < css::drawing::XShapes > xShapes;
OUString sCurrentSheetName;
ScAddress maCurrentCellPos;
ScRangeList maMatrixRangeList;
ScXMLTabProtectionData maProtectionData;
sal_Int32 nCurrentColCount;
sal_Int16 nCurrentDrawPage;
sal_Int16 nCurrentXShapes;
void SetTableStyle(const OUString& sStyleName);
public:
explicit ScMyTables(ScXMLImport& rImport);
~ScMyTables();
void NewSheet(const OUString& sTableName, const OUString& sStyleName,
const ScXMLTabProtectionData& rProtectData);
void AddRow();
void SetRowStyle(const OUString& rCellStyleName);
void AddColumn(bool bIsCovered);
void FixupOLEs() { aFixupOLEs.FixupOLEs(); }
static bool IsOLE(const css::uno::Reference< css::drawing::XShape >& rShape)
{ return ScMyOLEFixer::IsOLE(rShape); }
void DeleteTable();
const ScAddress& GetCurrentCellPos() const { return maCurrentCellPos; };
void AddColStyle(const sal_Int32 nRepeat, const OUString& rCellStyleName);
ScXMLTabProtectionData& GetCurrentProtectionData() { return maProtectionData; }
const OUString& GetCurrentSheetName() const { return sCurrentSheetName; }
SCTAB GetCurrentSheet() const { return (maCurrentCellPos.Tab() >= 0) ? maCurrentCellPos.Tab() : 0; }
SCCOL GetCurrentColCount() const;
SCROW GetCurrentRow() const { return (maCurrentCellPos.Row() >= 0) ? maCurrentCellPos.Row() : 0; }
const css::uno::Reference< css::sheet::XSpreadsheet >&
GetCurrentXSheet() const { return xCurrentSheet; }
css::uno::Reference< css::drawing::XDrawPage > const &
GetCurrentXDrawPage();
css::uno::Reference< css::drawing::XShapes > const &
GetCurrentXShapes();
bool HasDrawPage() const;
bool HasXShapes() const;
void AddOLE(const css::uno::Reference <css::drawing::XShape>& rShape,
const OUString &rRangeList);
void AddMatrixRange( const SCCOL nStartColumn,
const SCROW nStartRow,
const SCCOL nEndColumn,
const SCROW nEndRow,
const OUString& rFormula,
const OUString& rFormulaNmsp,
const formula::FormulaGrammar::Grammar );
bool IsPartOfMatrix( const ScAddress& rScAddress) const;
};
#endif
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|