summaryrefslogtreecommitdiff
path: root/xmloff/source/chart/transporttypes.hxx
diff options
context:
space:
mode:
authorKurt Zenker <kz@openoffice.org>2008-03-06 15:01:05 +0000
committerKurt Zenker <kz@openoffice.org>2008-03-06 15:01:05 +0000
commitd7af7e1384583d286e164c2d363e26a73e5fa419 (patch)
tree505a6386aa442712e4d0e55f0baefed4748910a6 /xmloff/source/chart/transporttypes.hxx
parentcac9f699ceeca6a3679d5ee9899538c11676ae10 (diff)
INTEGRATION: CWS chart20_DEV300 (1.10.74); FILE MERGED
2008/02/25 17:19:50 bm 1.10.74.2: #i366# fixed a bug for charts with own data 2008/02/21 15:59:49 bm 1.10.74.1: #i366# error bars from cell ranges
Diffstat (limited to 'xmloff/source/chart/transporttypes.hxx')
-rw-r--r--xmloff/source/chart/transporttypes.hxx13
1 files changed, 10 insertions, 3 deletions
diff --git a/xmloff/source/chart/transporttypes.hxx b/xmloff/source/chart/transporttypes.hxx
index ba4210ec1dcc..6c5cfdb79edb 100644
--- a/xmloff/source/chart/transporttypes.hxx
+++ b/xmloff/source/chart/transporttypes.hxx
@@ -4,9 +4,9 @@
*
* $RCSfile: transporttypes.hxx,v $
*
- * $Revision: 1.10 $
+ * $Revision: 1.11 $
*
- * last change: $Author: ihi $ $Date: 2007-11-23 11:38:35 $
+ * last change: $Author: kz $ $Date: 2008-03-06 16:01:05 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -57,6 +57,7 @@ struct SchXMLCell
rtl::OUString aString;
double fValue;
SchXMLCellType eType;
+ rtl::OUString aRangeId;
SchXMLCell() : fValue( 0.0 ), eType( SCH_CELL_TYPE_UNKNOWN ) {}
};
@@ -74,6 +75,8 @@ struct SchXMLTable
bool bHasHeaderRow;
bool bHasHeaderColumn;
+ ::rtl::OUString aTableNameOfFile; /// the table name read at the table:table element
+
SchXMLTable() : nRowIndex( -1 ),
nColumnIndex( -1 ),
nMaxColumnIndex( -1 ),
@@ -88,7 +91,8 @@ typedef sal_Int32 tSchXMLIndex;
enum SchXMLLabeledSequencePart
{
SCH_XML_PART_LABEL,
- SCH_XML_PART_VALUES
+ SCH_XML_PART_VALUES,
+ SCH_XML_PART_ERROR_BARS
};
typedef ::std::pair< tSchXMLIndex, SchXMLLabeledSequencePart > tSchXMLIndexWithPart;
typedef ::std::multimap< tSchXMLIndexWithPart,
@@ -186,4 +190,7 @@ struct DataRowPointStyle
{}
};
+typedef ::std::multimap< ::rtl::OUString, ::com::sun::star::uno::Reference<
+ ::com::sun::star::chart2::data::XDataSequence > > tSchXMLRangeSequenceMap;
+
#endif // SCH_XML_TRANSPORTTYPES_HXX_