LibreOffice Module sc (master) 1
pfuncache.hxx
Go to the documentation of this file.
1/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2/*
3 * This file is part of the LibreOffice project.
4 *
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 *
9 * This file incorporates work covered by the following license notice:
10 *
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
18 */
19
20#pragma once
21
22#include <vector>
23#include <tools/gen.hxx>
24#include <rangelst.hxx>
25#include <printopt.hxx>
26
27class ScDocShell;
28class ScMarkData;
29class OutputDevice;
30
34{
35 Invalid,
37 Cursor,
38 Range,
40};
41
46{
50
51public:
53
54 void SetMode(ScPrintSelectionMode eNew) { eMode = eNew; }
55 void SetRanges(const ScRangeList& rNew) { aRanges = rNew; }
56 void SetOptions(const ScPrintOptions& rNew) { aOptions = rNew; }
57
58 bool operator==(const ScPrintSelectionStatus& rOther) const
59 { return eMode == rOther.eMode && aRanges == rOther.aRanges && aOptions == rOther.aOptions; }
60
62 const ScPrintOptions& GetOptions() const { return aOptions; }
63};
64
69{
73
75 nPage(-1) {} // default: invalid
76
77 ScPrintPageLocation( tools::Long nP, const ScRange& rRange, const tools::Rectangle& rRect ) :
78 nPage(nP), aCellRange(rRange), aRectangle(rRect) {}
79};
80
85{
89 std::vector<tools::Long> nPages;
90 std::vector<tools::Long> nFirstAttr;
91 std::vector<ScPrintPageLocation> aLocations;
93
94public:
95 ScPrintFuncCache( ScDocShell* pD, const ScMarkData& rMark,
96 ScPrintSelectionStatus aStatus );
98
99 bool IsSameSelection( const ScPrintSelectionStatus& rStatus ) const;
100
101 void InitLocations( const ScMarkData& rMark, OutputDevice* pDev );
102 bool FindLocation( const ScAddress& rCell, ScPrintPageLocation& rLocation ) const;
103
105 tools::Long GetFirstAttr( SCTAB nTab ) const { return nFirstAttr[nTab]; }
106 SCTAB GetTabForPage( tools::Long nPage ) const;
107 tools::Long GetTabStart( SCTAB nTab ) const;
108 tools::Long GetDisplayStart( SCTAB nTab ) const;
109};
110
111/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
todo: It should be possible to have MarkArrays for each table, in order to enable "search all" across...
Definition: markdata.hxx:43
Stores the data for printing that is needed from several sheets, so it doesn't have to be calculated ...
Definition: pfuncache.hxx:85
std::vector< ScPrintPageLocation > aLocations
Definition: pfuncache.hxx:91
tools::Long nTotalPages
Definition: pfuncache.hxx:88
tools::Long GetTabStart(SCTAB nTab) const
Definition: pfuncache.cxx:161
std::vector< tools::Long > nFirstAttr
Definition: pfuncache.hxx:90
std::vector< tools::Long > nPages
Definition: pfuncache.hxx:89
tools::Long GetDisplayStart(SCTAB nTab) const
Definition: pfuncache.cxx:170
ScPrintFuncCache(ScDocShell *pD, const ScMarkData &rMark, ScPrintSelectionStatus aStatus)
Definition: pfuncache.cxx:30
ScPrintSelectionStatus aSelection
Definition: pfuncache.hxx:86
bool FindLocation(const ScAddress &rCell, ScPrintPageLocation &rLocation) const
Definition: pfuncache.cxx:132
SCTAB GetTabForPage(tools::Long nPage) const
Definition: pfuncache.cxx:149
void InitLocations(const ScMarkData &rMark, OutputDevice *pDev)
Definition: pfuncache.cxx:81
tools::Long GetPageCount() const
Definition: pfuncache.hxx:104
bool IsSameSelection(const ScPrintSelectionStatus &rStatus) const
Definition: pfuncache.cxx:144
ScDocShell * pDocSh
Definition: pfuncache.hxx:87
tools::Long GetFirstAttr(SCTAB nTab) const
Definition: pfuncache.hxx:105
Stores the selection in the ScPrintFuncCache so it is only used for the same selection again.
Definition: pfuncache.hxx:46
ScPrintSelectionMode eMode
Definition: pfuncache.hxx:47
void SetOptions(const ScPrintOptions &rNew)
Definition: pfuncache.hxx:56
ScPrintSelectionMode GetMode() const
Definition: pfuncache.hxx:61
void SetRanges(const ScRangeList &rNew)
Definition: pfuncache.hxx:55
const ScPrintOptions & GetOptions() const
Definition: pfuncache.hxx:62
ScPrintOptions aOptions
Definition: pfuncache.hxx:49
bool operator==(const ScPrintSelectionStatus &rOther) const
Definition: pfuncache.hxx:58
void SetMode(ScPrintSelectionMode eNew)
Definition: pfuncache.hxx:54
long Long
ScPrintSelectionMode
Possible types of selection for print functions.
Definition: pfuncache.hxx:34
The range that is printed on a page (excluding repeated columns/rows), and its position on the page,...
Definition: pfuncache.hxx:69
tools::Rectangle aRectangle
Definition: pfuncache.hxx:72
tools::Long nPage
Definition: pfuncache.hxx:70
ScPrintPageLocation(tools::Long nP, const ScRange &rRange, const tools::Rectangle &rRect)
Definition: pfuncache.hxx:77
sal_Int16 SCTAB
Definition: types.hxx:22