Version 4.2.0.1, tag libreoffice-4.2.0.1
[LibreOffice.git] / sc / inc / chartpos.hxx
blobaf9bc66016e9bb0faf9ff1c70c6f2e0f6836808b
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 SC_CHARTPOS_HXX
21 #define SC_CHARTPOS_HXX
23 #include "rangelst.hxx"
24 #include <map>
26 class ScAddress;
28 // map of row number to ScAddress*
29 typedef std::map<sal_uLong, ScAddress*> RowMap;
30 // map of column number to RowMap*
31 typedef std::map<sal_uLong, RowMap*> ColumnMap;
33 class ScChartPositionMap
35 friend class ScChartPositioner;
37 ScAddress** ppData;
38 ScAddress** ppColHeader;
39 ScAddress** ppRowHeader;
40 sal_uLong nCount;
41 SCCOL nColCount;
42 SCROW nRowCount;
44 ScChartPositionMap( SCCOL nChartCols, SCROW nChartRows,
45 SCCOL nColAdd, // header columns
46 SCROW nRowAdd, // header rows
47 ColumnMap& rCols // table with col tables with address*
49 ~ScChartPositionMap(); //! deletes all ScAddress*
51 // not implemented
52 ScChartPositionMap( const ScChartPositionMap& );
53 ScChartPositionMap& operator=( const ScChartPositionMap& );
55 public:
57 sal_uLong GetCount() const { return nCount; }
58 SCCOL GetColCount() const { return nColCount; }
59 SCROW GetRowCount() const { return nRowCount; }
61 sal_Bool IsValid( SCCOL nCol, SCROW nRow ) const
62 { return nCol < nColCount && nRow < nRowCount; }
63 // data column by column
64 sal_uLong GetIndex( SCCOL nCol, SCROW nRow ) const
65 { return (sal_uLong) nCol * nRowCount + nRow; }
67 const ScAddress* GetPosition( sal_uLong nIndex ) const
69 if ( nIndex < nCount )
70 return ppData[ nIndex ];
71 return NULL;
74 //! might be NULL indicating "no value"
75 const ScAddress* GetPosition( SCCOL nChartCol, SCROW nChartRow ) const
77 if ( IsValid( nChartCol, nChartRow ) )
78 return ppData[ GetIndex( nChartCol, nChartRow ) ];
79 return NULL;
81 const ScAddress* GetColHeaderPosition( SCCOL nChartCol ) const
83 if ( nChartCol < nColCount )
84 return ppColHeader[ nChartCol ];
85 return NULL;
87 const ScAddress* GetRowHeaderPosition( SCROW nChartRow ) const
89 if ( nChartRow < nRowCount )
90 return ppRowHeader[ nChartRow ];
91 return NULL;
95 enum ScChartGlue {
96 SC_CHARTGLUE_NA,
97 SC_CHARTGLUE_NONE, // old mimic
98 SC_CHARTGLUE_COLS, // old mimic
99 SC_CHARTGLUE_ROWS,
100 SC_CHARTGLUE_BOTH
103 class ScDocument;
105 class ScChartPositioner // only parameter struct
107 ScRangeListRef aRangeListRef;
108 ScDocument* pDocument;
109 ScChartPositionMap* pPositionMap;
110 ScChartGlue eGlue;
111 SCCOL nStartCol;
112 SCROW nStartRow;
113 sal_Bool bColHeaders;
114 sal_Bool bRowHeaders;
115 sal_Bool bDummyUpperLeft;
117 private:
118 void CheckColRowHeaders();
120 void GlueState(); // summarised areas
121 void CreatePositionMap();
123 public:
124 ScChartPositioner( ScDocument* pDoc, SCTAB nTab,
125 SCCOL nStartColP, SCROW nStartRowP,
126 SCCOL nEndColP, SCROW nEndRowP );
127 ScChartPositioner( ScDocument* pDoc, const ScRangeListRef& rRangeList );
128 ScChartPositioner( const ScChartPositioner& rPositioner );
130 virtual ~ScChartPositioner();
132 const ScRangeListRef& GetRangeList() const { return aRangeListRef; }
133 void SetRangeList( const ScRangeListRef& rNew ) { aRangeListRef = rNew; }
134 void SetRangeList( const ScRange& rNew );
136 void SetHeaders(sal_Bool bCol, sal_Bool bRow) { bColHeaders=bCol; bRowHeaders=bRow; }
137 sal_Bool HasColHeaders() const { return bColHeaders; }
138 sal_Bool HasRowHeaders() const { return bRowHeaders; }
139 void SetDummyUpperLeft(sal_Bool bNew) { bDummyUpperLeft = bNew; }
140 void SeteGlue(ScChartGlue eNew) { eGlue = eNew; }
141 void SetStartCol(SCCOL nNew) { nStartCol = nNew; }
142 void SetStartRow(SCROW nNew) { nStartRow = nNew; }
144 sal_Bool operator==(const ScChartPositioner& rCmp) const;
146 void InvalidateGlue()
148 eGlue = SC_CHARTGLUE_NA;
149 if ( pPositionMap )
151 delete pPositionMap;
152 pPositionMap = NULL;
155 const ScChartPositionMap* GetPositionMap();
158 #endif
160 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */