1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
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_CHARTARR_HXX
21 #define SC_CHARTARR_HXX
23 #include "rangelst.hxx"
24 #include "chartpos.hxx"
26 #include <boost/ptr_container/ptr_vector.hpp>
30 // ScMemChart is a stripped-down SchMemChart from old chart,
31 // used only to transport a rectangular data array for the UNO API,
32 // contains only column/row header text and data values.
42 ScMemChart(const ScMemChart
& rMemChart
); // not implemented
45 ScMemChart(short nCols
, short nRows
);
48 short GetColCount() const { return nColCnt
; }
49 short GetRowCount() const { return nRowCnt
; }
50 const OUString
& GetColText(short nCol
) const { return pColText
[nCol
]; }
51 const OUString
& GetRowText(short nRow
) const { return pRowText
[nRow
]; }
52 double GetData(short nCol
, short nRow
) const { return pData
[nCol
* nRowCnt
+ nRow
]; }
53 void SetData(short nCol
, short nRow
, const double& rVal
) { pData
[nCol
* nRowCnt
+ nRow
] = rVal
; }
54 void SetColText(short nCol
, const OUString
& rText
) { pColText
[nCol
] = rText
; }
55 void SetRowText(short nRow
, const OUString
& rText
) { pRowText
[nRow
] = rText
; }
58 class SC_DLLPUBLIC ScChartArray
// only parameter-struct
61 ScDocument
* pDocument
;
62 ScChartPositioner aPositioner
;
63 bool bValid
; // for creation out of SchMemChart
66 ScMemChart
* CreateMemChartSingle();
67 ScMemChart
* CreateMemChartMulti();
69 ScChartArray( ScDocument
* pDoc
, SCTAB nTab
,
70 SCCOL nStartColP
, SCROW nStartRowP
,
71 SCCOL nEndColP
, SCROW nEndRowP
,
72 const OUString
& rChartName
);
73 ScChartArray( ScDocument
* pDoc
, const ScRangeListRef
& rRangeList
,
74 const OUString
& rChartName
);
75 ScChartArray( const ScChartArray
& rArr
);
78 const ScRangeListRef
& GetRangeList() const { return aPositioner
.GetRangeList(); }
79 void SetRangeList( const ScRangeListRef
& rNew
) { aPositioner
.SetRangeList(rNew
); }
80 void SetRangeList( const ScRange
& rNew
) { aPositioner
.SetRangeList(rNew
); }
81 const ScChartPositionMap
* GetPositionMap() { return aPositioner
.GetPositionMap(); }
83 void SetHeaders(bool bCol
, bool bRow
) { aPositioner
.SetHeaders(bCol
, bRow
); }
84 bool HasColHeaders() const { return aPositioner
.HasColHeaders(); }
85 bool HasRowHeaders() const { return aPositioner
.HasRowHeaders(); }
86 bool IsValid() const { return bValid
; }
87 void SetName(const OUString
& rNew
) { aName
= rNew
; }
88 const OUString
& GetName() const { return aName
; }
90 bool operator==(const ScChartArray
& rCmp
) const;
92 ScMemChart
* CreateMemChart();
95 class ScChartCollection
97 typedef ::boost::ptr_vector
<ScChartArray
> DataType
;
101 ScChartCollection(const ScChartCollection
& rColl
);
103 SC_DLLPUBLIC
void push_back(ScChartArray
* p
);
107 ScChartArray
* operator[](size_t nIndex
);
108 const ScChartArray
* operator[](size_t nIndex
) const;
110 bool operator==(const ScChartCollection
& rCmp
) const;
115 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */