Version 6.4.0.3, tag libreoffice-6.4.0.3
[LibreOffice.git] / sc / source / ui / inc / prevloc.hxx
blob8cebf10910eebd8ba042938e96a31158b0154c81
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
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/.
9 * This file incorporates work covered by the following license notice:
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 .
20 #ifndef INCLUDED_SC_SOURCE_UI_INC_PREVLOC_HXX
21 #define INCLUDED_SC_SOURCE_UI_INC_PREVLOC_HXX
23 #include <sal/types.h>
25 #include <address.hxx>
27 #include <vcl/mapmod.hxx>
28 #include <vcl/vclptr.hxx>
29 #include <tools/gen.hxx>
31 #include <memory>
32 #include <list>
34 #define SC_PREVIEW_MAXRANGES 4
35 #define SC_PREVIEW_RANGE_EDGE 0
36 #define SC_PREVIEW_RANGE_REPCOL 1
37 #define SC_PREVIEW_RANGE_REPROW 2
38 #define SC_PREVIEW_RANGE_TAB 3
40 class OutputDevice;
41 class ScDocument;
42 struct ScPreviewLocationEntry;
44 struct ScPreviewColRowInfo
46 bool bIsHeader;
47 SCCOLROW nDocIndex;
48 long nPixelStart;
49 long nPixelEnd;
51 void Set( bool bHeader, SCCOLROW nIndex, long nStart, long nEnd )
53 bIsHeader = bHeader;
54 nDocIndex = nIndex;
55 nPixelStart = nStart;
56 nPixelEnd = nEnd;
60 class ScPreviewTableInfo
62 SCTAB nTab;
63 SCCOL nCols;
64 SCROW nRows;
65 std::unique_ptr<ScPreviewColRowInfo[]>
66 pColInfo;
67 std::unique_ptr<ScPreviewColRowInfo[]>
68 pRowInfo;
70 public:
71 ScPreviewTableInfo();
72 ~ScPreviewTableInfo();
74 SCTAB GetTab() const { return nTab; }
75 SCCOL GetCols() const { return nCols; }
76 SCROW GetRows() const { return nRows; }
77 const ScPreviewColRowInfo* GetColInfo() const { return pColInfo.get(); }
78 const ScPreviewColRowInfo* GetRowInfo() const { return pRowInfo.get(); }
80 void SetTab( SCTAB nNewTab );
81 void SetColInfo( SCCOL nCount, ScPreviewColRowInfo* pNewInfo );
82 void SetRowInfo( SCROW nCount, ScPreviewColRowInfo* pNewInfo );
83 void LimitToArea( const tools::Rectangle& rPixelArea );
86 class ScPreviewLocationData
88 public:
89 typedef std::list<std::unique_ptr<ScPreviewLocationEntry>> Entries_t;
90 private:
91 VclPtr<OutputDevice> pWindow;
92 ScDocument* const pDoc;
93 MapMode aCellMapMode;
94 MapMode aDrawMapMode[SC_PREVIEW_MAXRANGES];
95 tools::Rectangle aDrawRectangle[SC_PREVIEW_MAXRANGES];
96 sal_uInt8 aDrawRangeId[SC_PREVIEW_MAXRANGES];
97 sal_uInt16 nDrawRanges;
98 SCTAB nPrintTab;
99 Entries_t m_Entries;
101 tools::Rectangle GetOffsetPixel( const ScAddress& rCellPos, const ScRange& rRange ) const;
103 public:
104 ScPreviewLocationData( ScDocument* pDocument, OutputDevice* pWin );
105 ~ScPreviewLocationData();
107 void SetCellMapMode( const MapMode& rMapMode );
108 void SetPrintTab( SCTAB nNew );
109 void Clear();
110 void AddCellRange( const tools::Rectangle& rRect, const ScRange& rRange, bool bRepCol, bool bRepRow,
111 const MapMode& rDrawMap );
112 void AddColHeaders( const tools::Rectangle& rRect, SCCOL nStartCol, SCCOL nEndCol, bool bRepCol );
113 void AddRowHeaders( const tools::Rectangle& rRect, SCROW nStartRow, SCROW nEndRow, bool bRepRow );
114 void AddHeaderFooter( const tools::Rectangle& rRect, bool bHeader, bool bLeft );
115 void AddNoteMark( const tools::Rectangle& rRect, const ScAddress& rPos );
116 void AddNoteText( const tools::Rectangle& rRect, const ScAddress& rPos );
118 SCTAB GetPrintTab() const { return nPrintTab; }
120 // Get info on visible columns/rows in the visible area
121 void GetTableInfo( const tools::Rectangle& rVisiblePixel, ScPreviewTableInfo& rInfo ) const;
123 sal_uInt16 GetDrawRanges() const { return nDrawRanges; }
124 void GetDrawRange( sal_uInt16 nPos, tools::Rectangle& rPixelRect, MapMode& rMapMode, sal_uInt8& rRangeId ) const;
126 bool GetHeaderPosition( tools::Rectangle& rHeaderRect ) const;
127 bool GetFooterPosition( tools::Rectangle& rFooterRect ) const;
128 bool IsHeaderLeft() const;
129 bool IsFooterLeft() const;
131 long GetNoteCountInRange( const tools::Rectangle& rVisiblePixel, bool bNoteMarks ) const;
132 bool GetNoteInRange( const tools::Rectangle& rVisiblePixel, long nIndex, bool bNoteMarks,
133 ScAddress& rCellPos, tools::Rectangle& rNoteRect ) const;
134 tools::Rectangle GetNoteInRangeOutputRect(const tools::Rectangle& rVisiblePixel, bool bNoteMarks,
135 const ScAddress& aCellPos) const;
137 // Check if any cells (including column/row headers) are in the visible area
138 bool HasCellsInRange( const tools::Rectangle& rVisiblePixel ) const;
140 void GetCellPosition( const ScAddress& rCellPos, tools::Rectangle& rCellRect ) const;
142 // returns the rectangle where the EditEngine draws the text of a Header Cell
143 // if bColHeader is true it returns the rectangle of the header of the column in rCellPos
144 // otherwise of the header of the row in rCellPos
145 tools::Rectangle GetHeaderCellOutputRect(const tools::Rectangle& rVisRect, const ScAddress& rCellPos, bool bColHeader) const;
146 tools::Rectangle GetCellOutputRect(const ScAddress& rCellPos) const;
148 // Query the range and rectangle of the main (non-repeat) cell range.
149 // Returns sal_False if not contained.
150 bool GetMainCellRange( ScRange& rRange, tools::Rectangle& rPixRect ) const;
153 #endif
155 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */